1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-09-28 03:06:20 -04:00
elinks/src/cookies/parser.h

12 lines
241 B
C
Raw Normal View History

#ifndef EL__COOKIES_PARSER_H
#define EL__COOKIES_PARSER_H
struct cookie_str {
unsigned char *str;
unsigned char *nam_end, *val_start, *val_end;
};
struct cookie_str *parse_cookie_str(struct cookie_str *cstr, unsigned char *str);
#endif