/* * speak.h - interface to module to write messages to stdout * CSE303/374/333 demo, 11/07-4/16 HP */ #ifndef SPEAK_H #define SPEAK_H /* Write message m to stdout followed by a newline */ void speak(char m[]); #endif /* ifndef SPEAK_H */