/* * blogc: A blog compiler. * Copyright (C) 2014-2019 Rafael G. Martins * * This program can be distributed under the terms of the BSD License. * See the file LICENSE. */ #ifndef _SOURCE_PARSER_H #define _SOURCE_PARSER_H #include #include sb_trie_t* blogc_source_parse(const char *src, size_t src_len, sb_error_t **err); #endif /* _SOURCE_PARSER_H */