aboutsummaryrefslogtreecommitdiffstats
path: root/log.h
diff options
context:
space:
mode:
Diffstat (limited to 'log.h')
-rw-r--r--log.h22
1 files changed, 0 insertions, 22 deletions
diff --git a/log.h b/log.h
deleted file mode 100644
index a5822b4..0000000
--- a/log.h
+++ /dev/null
@@ -1,22 +0,0 @@
-/* public things from log.c */
-
-#ifndef _LOG_H_
-#define _LOG_H_
-
-enum linetype { EMPTY = 0, LINE = 1, PROMPT = 2, SLEEP = 3 };
-
-extern FILE *capturefile, *recordfile, *moviefile;
-extern vtime movie_last;
-
-void log_clearsleep(void);
-void log_flush(void);
-int log_getsize(void);
-void log_resize(int newsize);
-void log_write(char *str, int len, int newline);
-
-void reprint_writeline(char *line);
-char *reprint_getline(void);
-void reprint_clear(void);
-
-#endif /* _LOG_H_ */
-