/* * 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 // SHOUT_H_