date and time created 87/12/22 13:08:10 by bostic
[unix-history] / usr / src / games / hangman / prword.c
CommitLineData
47a086de
KB
1/*
2 * Copyright (c) 1987 Regents of the University of California.
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms are permitted
6 * provided that this notice is preserved and that due credit is given
7 * to the University of California at Berkeley. The name of the University
8 * may not be used to endorse or promote products derived from this
9 * software without specific prior written permission. This software
10 * is provided ``as is'' without express or implied warranty.
11 */
12
13#ifndef lint
14static char sccsid[] = "@(#)prword.c 5.1 (Berkeley) %G%";
15#endif /* not lint */
16
17# include "hangman.h"
18
19/*
20 * prword:
21 * Print out the current state of the word
22 */
23prword()
24{
25 move(KNOWNY, KNOWNX + sizeof "Word: ");
26 addstr(Known);
27 clrtoeol();
28}