aboutsummaryrefslogtreecommitdiffstats
path: root/log.h
diff options
context:
space:
mode:
authorNatanael Copa <natanael.copa@gmail.com>2008-12-18 21:12:55 +0100
committerNatanael Copa <natanael.copa@gmail.com>2008-12-18 21:12:55 +0100
commit5fa677e245b39735bce7243b3461723a26b16c3e (patch)
treec2f552303b5ef486fdc988d4a7bfa2bf125c811a /log.h
parentd43306abc4cd63e2e2d471c17890394226a38c53 (diff)
downloadpingu-5fa677e245b39735bce7243b3461723a26b16c3e.tar.bz2
pingu-5fa677e245b39735bce7243b3461723a26b16c3e.tar.xz
log.c, log.h: new files
Diffstat (limited to 'log.h')
-rw-r--r--log.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/log.h b/log.h
new file mode 100644
index 0000000..8668dff
--- /dev/null
+++ b/log.h
@@ -0,0 +1,8 @@
+#ifndef LOG_H
+#define LOG_H
+void log_init(void);
+void log_debug(const char *format, ...);
+void log_perror(const char *message);
+void log_error(const char *format, ...);
+void log_info(const char *format, ...);
+#endif