Home | History | Annotate | Download | only in tc

Lines Matching defs:bstr

13 struct bstr
18 struct bstr *next;
21 extern struct bstr * bstr_alloc(const char *text);
23 static inline struct bstr * bstr_new(char *data, unsigned int len)
25 struct bstr *b = calloc(1, sizeof(*b));
36 static inline int bstrcmp(struct bstr *b, const char *text)
47 static inline struct bstr *bstr_next(struct bstr *b)
52 extern unsigned long bstrtoul(const struct bstr *b);
53 extern void bstr_print(FILE *fd, const struct bstr *b, int ascii);
58 struct bstr *args;
67 static inline struct ematch * new_ematch(struct bstr *args, int inverted)
88 struct bstr *);
94 static inline int parse_layer(struct bstr *b)
106 extern int em_parse_error(int err, struct bstr *args, struct bstr *carg,