/*
 * shout.h - interface to module to write messages to stdout loudly
 * CSE303/374/333 demo, 11/07-4/16 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 */