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