mirror of
https://github.com/ksherlock/gopher.git
synced 2024-12-28 19:32:21 +00:00
11 lines
247 B
C
11 lines
247 B
C
|
#ifndef __HTTP_UTILS_H__
|
||
|
#define __HTTP_UTILS_H__
|
||
|
|
||
|
#include "url.h"
|
||
|
|
||
|
|
||
|
int parseHeaderLine(const char *line, unsigned length, URLRange *key, URLRange *value);
|
||
|
|
||
|
int parseStatusLine(const char *cp, unsigned length, int *version, int *status);
|
||
|
|
||
|
#endif
|