89e1a5db1837eebeb35ef3f27c75ca6991652df0
[smdp.git] / include / parser.h
1 #if !defined( PARSER_H )
2 #define PARSER_H
3
4 #include "markdown.h"
5
6 deck_t *markdown_load(FILE *input);
7 int markdown_analyse(cstring_t *text);
8 void markdown_debug(deck_t *deck, int debug);
9 int is_utf8(char ch);
10 int length_utf8(char ch);
11 int next_nonblank(cstring_t *text, int i);
12 int next_blank(cstring_t *text, int i);
13
14 #endif // !defined( PARSER_H )