prword X
1: # include "hangman.h" 2: 3: /* 4: * prword: 5: * Print out the current state of the word 6: */ 7: prword() 8: { 9: move(KNOWNY, KNOWNX + sizeof "Word: "); 10: addstr(Known); 11: clrtoeol(); 12: }