KVM: MMU: shadow support for 1gb pages
[linux/fpc-iii.git] / tools / perf / util / strlist.h
blob921818e44a542e9aa1f8398d950121cb39fb5c24
1 #ifndef STRLIST_H_
2 #define STRLIST_H_
4 #include <linux/rbtree.h>
5 #include <stdbool.h>
7 struct str_node {
8 struct rb_node rb_node;
9 const char *s;
12 struct strlist {
13 struct rb_root entries;
14 unsigned int nr_entries;
15 bool dupstr;
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_ */