/*
 * speak.h - interface to routine to write messages to stdout
 * CSE 374 demo, 07au-15au HP
 */

#ifndef SPEAK_H
#define SPEAK_H

/* Write message m to stdout followed by a newline */
void speak(char m[]);

#endif /* ifndef SPEAK_H */