record_table.h 475 B

1234567891011121314151617181920
  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. #ifndef __zlog_record_table_h
  9. #define __zlog_record_table_h
  10. #include "zc_defs.h"
  11. #include "record.h"
  12. zc_hashtable_t *zlog_record_table_new(void);
  13. void zlog_record_table_del(zc_hashtable_t * records);
  14. void zlog_record_table_profile(zc_hashtable_t * records, int flag);
  15. #endif