aboutsummaryrefslogtreecommitdiffstats
path: root/src/beam.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/beam.h')
-rw-r--r--src/beam.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/beam.h b/src/beam.h
new file mode 100644
index 0000000..84189d9
--- /dev/null
+++ b/src/beam.h
@@ -0,0 +1,17 @@
+/* public things from beam.c */
+
+#ifndef _BEAM_H_
+#define _BEAM_H_
+
+int process_message(char *buf, int len);
+void cancel_edit(editsess *sp);
+void abort_edit_fd(int fd);
+void message_edit(char *text, int msglen, char view, char builtin);
+void sig_chld_bottomhalf(void);
+
+extern char edit_start[];
+extern char edit_end[];
+extern editsess *edit_sess;
+
+#endif /* _BEAM_H_ */
+