1 /* public things from beam.c */
2 
3 #ifndef _BEAM_H_
4 #define _BEAM_H_
5 
6 int process_message	__P ((char *buf, int len));
7 void cancel_edit	__P ((editsess *sp));
8 void abort_edit_fd	__P ((int fd));
9 void message_edit	__P ((char *text, int msglen, char view, char builtin));
10 void sig_chld_bottomhalf __P ((void));
11 
12 extern char edit_start[];
13 extern char edit_end[];
14 extern editsess *edit_sess;
15 
16 #endif /* _BEAM_H_ */
17 
18