xref: /dragonfly/lib/libevtr/tok.h (revision 3851e4b8)
1 #ifndef _TOK_H_
2 #define _TOK_H_
3 
4 struct token {
5 	int type;
6 	union {
7 		char *str;
8 	};
9 };
10 
11 void tok_free(struct token *);
12 #endif /* _TOK_H_ */
13