summaryrefslogtreecommitdiff
path: root/anthy/logger.h
diff options
context:
space:
mode:
Diffstat (limited to 'anthy/logger.h')
-rw-r--r--anthy/logger.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/anthy/logger.h b/anthy/logger.h
new file mode 100644
index 0000000..da5a65f
--- /dev/null
+++ b/anthy/logger.h
@@ -0,0 +1,8 @@
+/* デバッグやエラーのメッセージの出力 */
+#ifndef _logger_h_included_
+#define _logger_h_included_
+
+void anthy_do_set_logger(void (*)(int , const char*), int lv);
+void anthy_log(int lv, const char *, ...);
+
+#endif