diff options
author | Rafael G. Martins <rafael@rafaelmartins.eng.br> | 2020-05-29 01:23:04 +0200 |
---|---|---|
committer | Rafael G. Martins <rafael@rafaelmartins.eng.br> | 2020-05-29 01:23:04 +0200 |
commit | 050d32ae204b64f7098b12c77cdb92a33ebc7562 (patch) | |
tree | 94868415de1ed42705769b6354c012220572b806 /src/blogc/filelist-parser.h | |
parent | 82a6868991472fc0b95981c3f116f5583254fa06 (diff) | |
download | blogc-050d32ae204b64f7098b12c77cdb92a33ebc7562.tar.gz blogc-050d32ae204b64f7098b12c77cdb92a33ebc7562.tar.bz2 blogc-050d32ae204b64f7098b12c77cdb92a33ebc7562.zip |
blogc: added filelist parser
Diffstat (limited to 'src/blogc/filelist-parser.h')
-rw-r--r-- | src/blogc/filelist-parser.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/blogc/filelist-parser.h b/src/blogc/filelist-parser.h new file mode 100644 index 0000000..5c65ee0 --- /dev/null +++ b/src/blogc/filelist-parser.h @@ -0,0 +1,16 @@ +/* + * blogc: A blog compiler. + * Copyright (C) 2014-2019 Rafael G. Martins <rafael@rafaelmartins.eng.br> + * + * This program can be distributed under the terms of the BSD License. + * See the file LICENSE. + */ + +#ifndef _FILELIST_PARSER_H +#define _FILELIST_PARSER_H + +#include "../common/utils.h" + +bc_slist_t* blogc_filelist_parse(const char *src, size_t src_len); + +#endif /* _FILELIST_PARSER_H */ |