mirror of
https://github.com/rkd77/elinks.git
synced 2025-01-03 14:57:44 -05:00
acf2ec806b
A left over from the CVS Id removal. Also, for a few files, normalize the order in which things are declared in headers.
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
|