diff options
Diffstat (limited to 'src/content-parser.h')
-rw-r--r-- | src/content-parser.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/content-parser.h b/src/content-parser.h index b98769d..4579719 100644 --- a/src/content-parser.h +++ b/src/content-parser.h @@ -10,8 +10,10 @@ #define _CONTENT_PARSER_H #include <stdlib.h> +#include <stdbool.h> char* blogc_content_parse_inline(const char *src); +bool blogc_is_ordered_list_item(const char *str, size_t prefix_len); char* blogc_content_parse(const char *src, size_t *end_excerpt); #endif /* _CONTENT_PARSER_H */ |