summaryrefslogtreecommitdiffstats
path: root/src/logging.h
diff options
context:
space:
mode:
authorP. J. McDermott <pjm@nac.net>2013-02-14 18:03:09 (EST)
committer P. J. McDermott <pjm@nac.net>2013-02-14 18:03:09 (EST)
commit80191b41352ad20493fb62e8f3683d69133d0d24 (patch)
treecb77e93dfe476d9535ca48e732a98aae9a780ba4 /src/logging.h
downloadoverworld-rpg-80191b41352ad20493fb62e8f3683d69133d0d24.zip
overworld-rpg-80191b41352ad20493fb62e8f3683d69133d0d24.tar.gz
overworld-rpg-80191b41352ad20493fb62e8f3683d69133d0d24.tar.bz2
Initial commit.
Diffstat (limited to 'src/logging.h')
-rw-r--r--src/logging.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/logging.h b/src/logging.h
new file mode 100644
index 0000000..e03dad6
--- /dev/null
+++ b/src/logging.h
@@ -0,0 +1,8 @@
+#ifndef LOGGING_H
+#define LOGGING_H
+
+void debug(const char *fmt, ...);
+void warn(const char *fmt, ...);
+void err(int status, const char *fmt, ...);
+
+#endif