// font name and size here
static void fill_buffer(char *buf, int b)
{
	char line[BUFFERSIZE / 2];
	if (b > 0)
	{
		sprintf(buf,	"%d bottle%s of beer on the wall, %d bottle%s of beer.\n" \
			"Take one down and pass it around, ", b, PLURALS(b), b, PLURALS(b));
		if (b == 1)
		{
			strcat(buf, "no more bottles of beer on the wall.\n");
		}
		else
		{


