Minor fixes
[unix-history] / usr / src / games / hangman / prword.c
CommitLineData
dc7f5a19
KB
1/*-
2 * Copyright (c) 1983 The Regents of the University of California.
47a086de
KB
3 * All rights reserved.
4 *
dc7f5a19 5 * %sccs.include.redist.c%
47a086de
KB
6 */
7
8#ifndef lint
dc7f5a19 9static char sccsid[] = "@(#)prword.c 5.3 (Berkeley) %G%";
47a086de
KB
10#endif /* not lint */
11
12# include "hangman.h"
13
14/*
15 * prword:
16 * Print out the current state of the word
17 */
18prword()
19{
20 move(KNOWNY, KNOWNX + sizeof "Word: ");
21 addstr(Known);
22 clrtoeol();
23}