summary refs log tree commit diff
path: root/warteraum/http_string.h
diff options
context:
space:
mode:
Diffstat (limited to 'warteraum/http_string.h')
-rw-r--r--warteraum/http_string.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/warteraum/http_string.h b/warteraum/http_string.h
index ee47aa6..ba54364 100644
--- a/warteraum/http_string.h
+++ b/warteraum/http_string.h
@@ -3,6 +3,8 @@
 
 #include <string.h>
 
+#include "../third_party/httpserver.h/httpserver.h"
+
 #define STATIC_HTTP_STRING(s) \
   { s, sizeof(s) - 1 }
 
@@ -12,4 +14,6 @@
 #define HTTP_STRING_IS(a, s) \
   (a.len == sizeof(s) - 1 && strncmp(a.buf, s, a.len) == 0)
 
+unsigned long long http_string_to_uint(struct http_string_s);
+
 #endif