mirror of
https://github.com/rkd77/elinks.git
synced 2024-12-04 14:46:47 -05:00
12 lines
241 B
C
12 lines
241 B
C
|
#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
|