repo.or.cz
/
elinks.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Handle mailcap's copiousoutput without an external pager.
[elinks.git]
/
src
/
cookies
/
parser.h
blob
d9e832cc5b28ca2ef987c92cc4c2c308c4e0b99d
1
#ifndef EL__COOKIES_PARSER_H
2
#define EL__COOKIES_PARSER_H
3
4
struct
cookie_str
{
5
unsigned char
*
str
;
6
unsigned char
*
nam_end
, *
val_start
, *
val_end
;
7
};
8
9
struct
cookie_str
*
parse_cookie_str
(
struct
cookie_str
*
cstr
,
unsigned char
*
str
);
10
11
#endif