4 #include <linux/rbtree.h>
8 struct rb_node rb_node
;
13 struct rb_root entries
;
14 unsigned int nr_entries
;
18 struct strlist
*strlist__new(bool dupstr
, const char *slist
);
19 void strlist__delete(struct strlist
*self
);
21 void strlist__remove(struct strlist
*self
, struct str_node
*sn
);
22 int strlist__load(struct strlist
*self
, const char *filename
);
23 int strlist__add(struct strlist
*self
, const char *str
);
25 struct str_node
*strlist__entry(const struct strlist
*self
, unsigned int idx
);
26 bool strlist__has_entry(struct strlist
*self
, const char *entry
);
28 static inline bool strlist__empty(const struct strlist
*self
)
30 return self
->nr_entries
== 0;
33 static inline unsigned int strlist__nr_entries(const struct strlist
*self
)
35 return self
->nr_entries
;
38 int strlist__parse_list(struct strlist
*self
, const char *s
);
39 #endif /* STRLIST_H_ */