summaryrefslogtreecommitdiffstats
path: root/message.h
blob: 7d552aa514cd6517a3faea3a26ba00796e3c93ae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/* interface declaration for display messages */
/* This is a small subset of the interface from display.c that
   just contains the calls for displaying messages.  Do not include
   this and display.h at the same time. */

#ifndef _MESSAGE_H_
#define _MESSAGE_H_

void		new_message(int type, char *msgfmt,...);
void		clear_message();

#endif   /* _MESSAGE_H_ */