aboutsummaryrefslogtreecommitdiff
path: root/src/http_SString.h
blob: 3244666dd4aaa049b4b043b0129c8ca86bd47fbc (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
31
32
 /*@@
   @header    http_Content.h
   @date      Sun Sep 17 14:19:23 2000
   @author    Tom Goodale
   @desc 
   Routines exported by the Content stuff.
   @enddesc
   @version $Header$
 @@*/

#ifndef __HTTP_SSTRING_H__
#define __HTTP_SSTRING_H__ 1

#define STRING_NAMESPACE 1
#include "SString.h"

#define EMPTYSTRING {'\0'}

#ifdef __cplusplus
extern "C" 
{
#endif

void SetHTML_Doctype( String *header);
void SetHTML_HeadHeader( String *header);

int Send_HTTP_String(httpRequest *request, const String* message);
#ifdef __cplusplus
}
#endif

#endif