aboutsummaryrefslogtreecommitdiffstats
path: root/src/blogc/datetime-parser.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/blogc/datetime-parser.h')
-rw-r--r--src/blogc/datetime-parser.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/blogc/datetime-parser.h b/src/blogc/datetime-parser.h
new file mode 100644
index 0000000..a5087b3
--- /dev/null
+++ b/src/blogc/datetime-parser.h
@@ -0,0 +1,17 @@
+/*
+ * blogc: A blog compiler.
+ * Copyright (C) 2015-2016 Rafael G. Martins <rafael@rafaelmartins.eng.br>
+ *
+ * This program can be distributed under the terms of the BSD License.
+ * See the file LICENSE.
+ */
+
+#ifndef _DATETIME_H
+#define _DATETIME_H
+
+#include "error.h"
+
+char* blogc_convert_datetime(const char *orig, const char *format,
+ blogc_error_t **err);
+
+#endif /* _DATETIME_H */