mirror of
https://github.com/rfivet/uemacs.git
synced 2024-11-10 22:46:15 -05:00
13 lines
218 B
C
13 lines
218 B
C
/* mlout.h -- message line output interface */
|
|
|
|
#ifndef __MLOUT_H__
|
|
#define __MLOUT_H__
|
|
|
|
extern void (*mloutfmt)( const char *, ...) ;
|
|
|
|
void mloutstr( const char *str) ;
|
|
|
|
#endif /* __MLOUT_H__ */
|
|
|
|
/* end of mlout.h */
|