summaryrefslogtreecommitdiff
path: root/internal.h
diff options
context:
space:
mode:
authorPaul Duncan <pabs@pablotron.org>2016-08-28 02:49:28 -0400
committerPaul Duncan <pabs@pablotron.org>2016-08-28 02:49:28 -0400
commite0b6b017ce80f468499ed60b1b6a95b5218fa814 (patch)
treebb5bf0b8c7c88857a0c6ceb8f9117adcb87f1519 /internal.h
parentef52728f7e7461cab37ee3cbc3ef9b0d7e328c65 (diff)
downloadlibfhp-e0b6b017ce80f468499ed60b1b6a95b5218fa814.tar.bz2
libfhp-e0b6b017ce80f468499ed60b1b6a95b5218fa814.zip
add header-value-parser.c
Diffstat (limited to 'internal.h')
-rw-r--r--internal.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/internal.h b/internal.h
index 94caebd..e393f4b 100644
--- a/internal.h
+++ b/internal.h
@@ -198,3 +198,12 @@ typedef enum {
FHP_STR_CHUNKED,
FHP_STR_LAST
} fhp_str_t;
+
+fhp_err_t
+fhp_header_value_parser_init(fhp_t * const);
+
+fhp_err_t
+fhp_header_value_parser_push(fhp_t * const, uint8_t * const, size_t);
+
+fhp_err_t
+fhp_header_value_parser_done(fhp_t * const);