ehttp_util_string.h 325 字节
Newer Older
S
TD-1311  
Shengliang Guan 已提交
1 2
#ifndef HTTP_UTIL_STRING
#define HTTP_UTIL_STRING
F
freemine 已提交
3

S
TD-1311  
Shengliang Guan 已提交
4 5 6 7
typedef struct HttpUtilString {
  char * str;
  size_t len;
} HttpUtilString;
F
freemine 已提交
8

S
TD-1311  
Shengliang Guan 已提交
9 10 11
void    httpParserCleanupString(HttpUtilString *str);
int32_t httpParserAppendString(HttpUtilString *str, const char *s, int32_t len);
void    httpParserClearString(HttpUtilString *str);
F
freemine 已提交
12

S
TD-1311  
Shengliang Guan 已提交
13
#endif