summaryrefslogtreecommitdiff
path: root/desktop/cookies.h
blob: 3bda58a4905807d305820e4eced29da57dd8cdf9 (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-browser.org/
 * 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