X-Git-Url: https://git.wpitchoune.net/gitweb/?a=blobdiff_plain;f=src%2Ffcache.h;fp=src%2Ffcache.h;h=0e73b8dbbc7d84ad5ce23402419218805a33f1a8;hb=be68914bbcbfde6dbc51e20075691afbab3c2489;hp=0000000000000000000000000000000000000000;hpb=95e531f5b9181ddba07c578c0150f00ff3accb25;p=ppastats.git diff --git a/src/fcache.h b/src/fcache.h new file mode 100644 index 0000000..0e73b8d --- /dev/null +++ b/src/fcache.h @@ -0,0 +1,30 @@ +/* + * Copyright (C) 2011-2012 jeanfi@gmail.com + * + * 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 _PPASTATS_FCACHE_H_ +#define _PPASTATS_FCACHE_H_ + +#include + +char *fcache_get(const char *k); +void fcache_put(const char *k, char *v); + +void fcache_cleanup(); + +#endif