summaryrefslogtreecommitdiff
path: root/fhp.c
diff options
context:
space:
mode:
authorPaul Duncan <pabs@pablotron.org>2016-08-28 03:38:59 -0400
committerPaul Duncan <pabs@pablotron.org>2016-08-28 03:38:59 -0400
commite69874791daf88461c6813e5133bf775055ea2bf (patch)
tree147e4c0e721f778ed2ec3313c909c2dcd0f6e907 /fhp.c
parentc10bcfa7def7a1093d78dcb15fd95388a633fc99 (diff)
downloadlibfhp-e69874791daf88461c6813e5133bf775055ea2bf.tar.bz2
libfhp-e69874791daf88461c6813e5133bf775055ea2bf.zip
add cl_parser test
Diffstat (limited to 'fhp.c')
-rw-r--r--fhp.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/fhp.c b/fhp.c
index baff585..f8263c2 100644
--- a/fhp.c
+++ b/fhp.c
@@ -676,3 +676,13 @@ void *
fhp_get_user_data(fhp_t * const fhp) {
return fhp->user_data;
}
+
+size_t
+fhp_get_num_tes(fhp_t * const fhp) {
+ return fhp->num_tes;
+}
+
+uint64_t
+fhp_get_content_length(fhp_t * const fhp) {
+ return fhp->content_length;
+}