2009-07-01 00:01:20 +02:00
|
|
|
#ifndef STRLIST_H_
|
|
|
|
#define STRLIST_H_
|
|
|
|
|
2009-07-01 17:28:37 +02:00
|
|
|
#include <linux/rbtree.h>
|
2009-07-01 00:01:20 +02:00
|
|
|
#include <stdbool.h>
|
|
|
|
|
|
|
|
struct str_node {
|
|
|
|
struct rb_node rb_node;
|
|
|
|
const char *s;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct strlist {
|
|
|
|
struct rb_root entries;
|
2009-07-11 17:18:34 +02:00
|
|
|
unsigned int nr_entries;
|
|
|
|
bool dupstr;
|
2009-07-01 00:01:20 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
struct strlist *strlist__new(bool dupstr, const char *slist);
|
|
|
|
void strlist__delete(struct strlist *self);
|
|
|
|
|
|
|
|
void strlist__remove(struct strlist *self, struct str_node *sn);
|
|
|
|
int strlist__load(struct strlist *self, const char *filename);
|
|
|
|
int strlist__add(struct strlist *self, const char *str);
|
|
|
|
|
2009-07-11 17:18:34 +02:00
|
|
|
struct str_node *strlist__entry(const struct strlist *self, unsigned int idx);
|
2009-07-01 00:01:20 +02:00
|
|
|
bool strlist__has_entry(struct strlist *self, const char *entry);
|
|
|
|
|
|
|
|
static inline bool strlist__empty(const struct strlist *self)
|
|
|
|
{
|
2009-07-11 17:18:34 +02:00
|
|
|
return self->nr_entries == 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline unsigned int strlist__nr_entries(const struct strlist *self)
|
|
|
|
{
|
|
|
|
return self->nr_entries;
|
2009-07-01 00:01:20 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
int strlist__parse_list(struct strlist *self, const char *s);
|
|
|
|
#endif /* STRLIST_H_ */
|