xref: /dflybsd-src/lib/libevtr/tok.h (revision d9ea1be3e2886810aaa5c005106dfc90c64882e7)
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