mirror of
https://github.com/privacore/open-source-search-engine.git
synced 2025-07-15 02:36:08 -04:00
13 lines
202 B
C++
13 lines
202 B
C++
#ifndef SPIDERDB_UTIL_H_
|
|
#define SPIDERDB_UTIL_H_
|
|
#include <inttypes.h>
|
|
#include "collnum_t.h"
|
|
|
|
namespace SpiderdbUtil {
|
|
|
|
bool deleteRecord(collnum_t collnum, int32_t firstIp, int64_t uh48);
|
|
|
|
}
|
|
|
|
#endif
|