diff options
author | Rafael G. Martins <rafael@rafaelmartins.eng.br> | 2015-10-24 18:47:41 -0200 |
---|---|---|
committer | Rafael G. Martins <rafael@rafaelmartins.eng.br> | 2015-10-24 18:47:41 -0200 |
commit | 7127defbaa3701fc3444feb3233401e2829fc1b6 (patch) | |
tree | 452d47a9ee63dcdbc2ba4c0bee9b562af483233f /src/datetime-parser.h | |
parent | 3a5ea19f35e4228cd782d69f21f52656c1e9a1b8 (diff) | |
download | blogc-7127defbaa3701fc3444feb3233401e2829fc1b6.tar.gz blogc-7127defbaa3701fc3444feb3233401e2829fc1b6.tar.bz2 blogc-7127defbaa3701fc3444feb3233401e2829fc1b6.zip |
datetime-parser: initial implementation. not used yet
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 */ |