summaryrefslogtreecommitdiff
path: root/desktop/cookies.h
blob: 4e27530370617803fa4492913a4c04b036ec7c18 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/*
 * This file is part of NetSurf, http://netsurf.sourceforge.net/
 * Licensed under the GNU General Public License,
 *                http://www.opensource.org/licenses/gpl-license
 * Copyright 2006 Richard Wilson <info@tinct.net>
 */

/** \file
 * Cookies (interface).
 */

#ifndef _NETSURF_DESKTOP_COOKIES_H_
#define _NETSURF_DESKTOP_COOKIES_H_

#include <stdbool.h>

struct cookie_data;

bool cookies_update(const char *domain, const struct cookie_data *data);

#endif