BSD 4_2 development
[unix-history] / usr / src / games / hangman / prword.c
CommitLineData
198139e7
C
1# include "hangman.h"
2
3/*
4 * prword:
5 * Print out the current state of the word
6 */
7prword()
8{
9 move(KNOWNY, KNOWNX + sizeof "Word: ");
10 addstr(Known);
11 clrtoeol();
12}