aboutsummaryrefslogtreecommitdiff
path: root/src/httpSString.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/httpSString.h')
-rw-r--r--src/httpSString.h30
1 files changed, 30 insertions, 0 deletions
diff --git a/src/httpSString.h b/src/httpSString.h
new file mode 100644
index 0000000..170261d
--- /dev/null
+++ b/src/httpSString.h
@@ -0,0 +1,30 @@
+ /*@@
+ @header http_SString.h
+ @date April 7 14:19:23 2004
+ @author Steve White
+ @desc
+ Routines exported by the Content stuff.
+ @enddesc
+ @version $Header$
+ @@*/
+
+#ifndef __HTTP_SSTRING_H__
+#define __HTTP_SSTRING_H__ 1
+
+#include "SString.h"
+
+#define EMPTYSTRING {'\0'}
+
+#ifdef __cplusplus
+extern "C"
+{
+#endif
+
+int HTTP_SendString(httpRequest *request, const String* message);
+SSBOOL HTTP_GetHeaderValueString(const httpRequest *request,
+ const String *header, String *value);
+#ifdef __cplusplus
+}
+#endif
+
+#endif