Files
ARSV/new_version/roaring_bitmap/set.h
T
2026-08-02 21:40:06 +03:00

13 lines
273 B
C

#ifndef ARSV_SET_H
#define ARSV_SET_H
struct set;
int rpmsetcmp(const char *set1, const char *set2);
struct set *set_new(void);
void set_add(struct set *set, const char *sym);
const char *set_fini(struct set *set, int bpp);
struct set *set_free(struct set *set);
#endif