/* * 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 */ /** \file * Cookies (interface). */ #ifndef _NETSURF_DESKTOP_COOKIES_H_ #define _NETSURF_DESKTOP_COOKIES_H_ #include struct cookie_data; bool cookies_update(const char *domain, const struct cookie_data *data); #endif