repo.or.cz
/
mplayer
/
greg.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Add explanatory comments to the #endif part of multiple inclusion guards.
[mplayer/greg.git]
/
stream
/
cookies.h
blob
4f5c4f75114438e9defea3c0bbc75d63e113e460
1
/*
2
* HTTP Cookies
3
* Reads Netscape and Mozilla cookies.txt files
4
*
5
* by Dave Lambley <mplayer@davel.me.uk>
6
*/
7
8
#ifndef COOKIES_H
9
#define COOKIES_H
10
11
#include
"http.h"
12
13
extern
void
cookies_set
(
HTTP_header_t
*
http_hdr
,
const char
*
hostname
,
14
const char
*
url
);
15
16
#endif
/* COOKIES_H */