mirror of
https://github.com/CovidBraceletPrj/CovidBracelet.git
synced 2025-07-01 02:48:07 +02:00
17 lines
288 B
C
17 lines
288 B
C
#include "bloom.h"
|
|
#include "ens/storage.h"
|
|
|
|
int bloom_init() {
|
|
// TODO lome: implement
|
|
return 0;
|
|
}
|
|
|
|
int bloom_add_record(record_t* record) {
|
|
// TODO lome: implement
|
|
return 0;
|
|
}
|
|
|
|
int bloom_probably_has_record(record_t* record) {
|
|
// TODO lome: implement
|
|
return 0;
|
|
} |