summaryrefslogtreecommitdiffstats
path: root/call/call.h
diff options
context:
space:
mode:
Diffstat (limited to 'call/call.h')
-rw-r--r--call/call.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/call/call.h b/call/call.h
new file mode 100644
index 0000000..5a7115d
--- /dev/null
+++ b/call/call.h
@@ -0,0 +1,20 @@
+#ifndef FALSE
+#define FALSE 0
+#endif
+#ifndef TRUE
+#define TRUE 1
+#endif
+extern int fd;
+extern int interrupted;
+extern int paclen;
+
+/* In call.c */
+extern void convert_crlf(char *, int);
+extern void convert_lfcr(char *, int);
+
+/* In yapp.c */
+extern void cmd_yapp(char *, int);
+
+/* In dostime.c */
+extern int yapp2unix(char *);
+extern void unix2yapp( int, char *);