/* * shout.h - interface to routine to write messages to stdout loudly * CSE 374 demo, 17wi 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 */