summaryrefslogtreecommitdiffstats
path: root/message.h
blob: e9b492eada832405806be93bcf1e71bc91c7a332 (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_ */