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