flush() is redundant, it makes more sense to just write the file on close(). There is no reason why you want to commit the current state of the cache to disk at any other time then when closing the application.
33 lines
1.1 KiB
C
33 lines
1.1 KiB
C
/* proc-cache.h
|
|
*
|
|
* Copyright (C) 2011 Henrik Hautakoski <henrik@fiktivkod.org>
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
|
|
* MA 02110-1301, USA.
|
|
*/
|
|
#ifndef PROC_CACHE_H
|
|
#define PROC_CACHE_H
|
|
|
|
int proc_cache_open();
|
|
|
|
int proc_cache_lookup(const char *url);
|
|
|
|
void proc_cache_update(const char *url);
|
|
|
|
void proc_cache_purge(unsigned int timestamp);
|
|
|
|
void proc_cache_close();
|
|
|
|
#endif /* PROC_CACHE_H */
|