blob: 0db5a5d0efdd8138ef8fec9b2c7e0f0022529c26 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
/* ISC license. */
#ifndef SKALIBS_CDB_INTERNAL_H
#define SKALIBS_CDB_INTERNAL_H
#include <stdint.h>
#include <skalibs/gccattributes.h>
#include <skalibs/cdb.h>
extern uint32_t cdb_hash (char const *, uint32_t) gccattr_pure ;
extern char const *cdb_p (cdb const *, uint32_t, uint32_t) gccattr_pure ;
#endif
|