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