diff options
Diffstat (limited to 'src/datetime-parser.h')
-rw-r--r-- | src/datetime-parser.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/datetime-parser.h b/src/datetime-parser.h new file mode 100644 index 0000000..7f94545 --- /dev/null +++ b/src/datetime-parser.h @@ -0,0 +1,17 @@ +/* + * blogc: A blog compiler. + * Copyright (C) 2015 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 */ |