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