first try on new version

This commit is contained in:
2026-08-02 21:40:06 +03:00
parent f0a952c083
commit 1c9a9be086
3 changed files with 408 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
#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