aboutsummaryrefslogtreecommitdiff
path: root/src/httpSString.h
blob: 6ab1a28d19bbc8d6156171d50992d3c39d128f36 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
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