4.4BSD snapshot (revision 8.1)
[unix-history] / usr / src / games / hangman / prword.c
CommitLineData
dc7f5a19 1/*-
891bebb2
KB
2 * Copyright (c) 1983, 1993
3 * The Regents of the University of California. All rights reserved.
47a086de 4 *
dc7f5a19 5 * %sccs.include.redist.c%
47a086de
KB
6 */
7
8#ifndef lint
891bebb2 9static char sccsid[] = "@(#)prword.c 8.1 (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}