/*- * Copyright (c) 1983, 1993 * The Regents of the University of California. All rights reserved. * * %sccs.include.redist.c% */ #ifndef lint static char sccsid[] = "@(#)prword.c 8.1 (Berkeley) 05/31/93"; #endif /* not lint */ # include "hangman.h" /* * prword: * Print out the current state of the word */ prword() { move(KNOWNY, KNOWNX + sizeof "Word: "); addstr(Known); clrtoeol(); }