summaryrefslogtreecommitdiff
path: root/log.h
diff options
context:
space:
mode:
Diffstat (limited to 'log.h')
-rw-r--r--log.h24
1 files changed, 0 insertions, 24 deletions
diff --git a/log.h b/log.h
deleted file mode 100644
index 7fdfa92..0000000
--- a/log.h
+++ /dev/null
@@ -1,24 +0,0 @@
-/* See LICENSE file for copyright and license details. */
-
-#ifndef __LOG_H__
-#define __LOG_H__
-
-typedef struct Log {
- const char *filename;
- int level;
-} Log;
-
-Log *log_create(const char *);
-
-void log_debug(Log *, char *);
-void log_error(Log *, char *);
-void log_info(Log *, char *);
-void log_warn(Log *, char *);
-
-int log_is_debug(Log *);
-int log_is_error(Log *);
-int log_is_info(Log *);
-int log_is_warn(Log *);
-
-
-#endif /* __LOG_H__ */