mirror of
https://github.com/bol-van/zapret.git
synced 2024-11-12 01:39:17 +05:00
20 lines
491 B
C
20 lines
491 B
C
|
#pragma once
|
||
|
|
||
|
#include <stdbool.h>
|
||
|
#include <ctype.h>
|
||
|
|
||
|
//#define HASH_BLOOM 20
|
||
|
#define HASH_NONFATAL_OOM 1
|
||
|
#define HASH_FUNCTION HASH_BER
|
||
|
#include "uthash.h"
|
||
|
|
||
|
typedef struct strpool {
|
||
|
char *str; /* key */
|
||
|
UT_hash_handle hh; /* makes this structure hashable */
|
||
|
} strpool;
|
||
|
|
||
|
void StrPoolDestroy(strpool **p);
|
||
|
bool StrPoolAddStr(strpool **pp,const char *s);
|
||
|
bool StrPoolAddStrLen(strpool **pp,const char *s,size_t slen);
|
||
|
bool StrPoolCheckStr(strpool *p,const char *s);
|