mirror of
https://github.com/ksherlock/gopher.git
synced 2024-12-28 04:31:44 +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 |