1 /*
2  * This file is part of the zlog Library.
3  *
4  * Copyright (C) 2011 by Hardy Simpson <HardySimpson1984@gmail.com>
5  *
6  * Licensed under the LGPL v2.1, see the file COPYING in base directory.
7  */
8 
9 #ifndef __zlog_record_table_h
10 #define __zlog_record_table_h
11 
12 #include "zc_defs.h"
13 #include "record.h"
14 
15 zc_hashtable_t *zlog_record_table_new(void);
16 void zlog_record_table_del(zc_hashtable_t * records);
17 void zlog_record_table_profile(zc_hashtable_t * records, int flag);
18 
19 #endif
20