diff options
author | Rafael G. Martins <rafael@rafaelmartins.eng.br> | 2015-04-19 02:30:26 -0300 |
---|---|---|
committer | Rafael G. Martins <rafael@rafaelmartins.eng.br> | 2015-04-19 02:30:26 -0300 |
commit | 1826b5ad70ebd5db751ed0d4eee6f857a7001100 (patch) | |
tree | 90cdf5cac51ed30ca12d4ea390f65bbca5242de4 /src/source-parser.h | |
parent | 86b551fdf2a8bf5c6e3cebcc463ee830d65ced94 (diff) | |
download | blogc-1826b5ad70ebd5db751ed0d4eee6f857a7001100.tar.gz blogc-1826b5ad70ebd5db751ed0d4eee6f857a7001100.tar.bz2 blogc-1826b5ad70ebd5db751ed0d4eee6f857a7001100.zip |
remove specific type used to store sources
Diffstat (limited to 'src/source-parser.h')
-rw-r--r-- | src/source-parser.h | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/src/source-parser.h b/src/source-parser.h index c816e5b..f89a390 100644 --- a/src/source-parser.h +++ b/src/source-parser.h @@ -13,13 +13,7 @@ #include "utils/utils.h" #include "error.h" -typedef struct { - b_trie_t *config; - char *content; -} blogc_source_t; - -blogc_source_t* blogc_source_parse(const char *src, size_t src_len, +b_trie_t* blogc_source_parse(const char *src, size_t src_len, blogc_error_t **err); -void blogc_source_free(void *source); #endif /* _SOURCE_PARSER_H */ |