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