libowfat/cdb_make.h

48 lines
1.1 KiB
C
Raw Normal View History

/* this header file comes from libowfat, http://www.fefe.de/libowfat/ */
2005-11-25 15:02:31 +00:00
#ifndef CDB_MAKE_H
#define CDB_MAKE_H
#include "buffer.h"
#include "uint64.h"
2005-11-25 15:02:31 +00:00
#include "uint32.h"
#ifdef __cplusplus
extern "C" {
#endif
2005-11-25 15:02:31 +00:00
#define CDB_HPLIST 1000
struct cdb_hp { uint32 h; uint32 p; } ;
struct cdb_hplist {
struct cdb_hp hp[CDB_HPLIST];
struct cdb_hplist *next;
int num;
} ;
struct cdb_make {
char bspace[8192];
char final[2048];
uint32 count[256];
uint32 start[256];
struct cdb_hplist *head;
struct cdb_hp *split; /* includes space for hash */
struct cdb_hp *hash;
uint32 numentries;
buffer b;
uint32 pos;
int64 fd;
2005-11-25 15:02:31 +00:00
} ;
extern int cdb_make_start(struct cdb_make *,int64);
2005-11-25 15:02:31 +00:00
extern int cdb_make_addbegin(struct cdb_make *,unsigned long int,unsigned long int);
extern int cdb_make_addend(struct cdb_make *,unsigned long int,unsigned long int,uint32);
extern int cdb_make_add(struct cdb_make *,const unsigned char *,unsigned long int,const unsigned char *,unsigned long int);
extern int cdb_make_finish(struct cdb_make *);
#ifdef __cplusplus
}
#endif
2005-11-25 15:02:31 +00:00
#endif