2.11BSD/src/games/hangman/prword.c

Compare this file to the similar file:
Show the results in this format:

# include	"hangman.h"

/*
 * prword:
 *	Print out the current state of the word
 */
prword()
{
	move(KNOWNY, KNOWNX + sizeof "Word: ");
	addstr(Known);
	clrtoeol();
}