repo.or.cz
/
dragonfly.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Remove old timezone via 'make upgrade'.
[dragonfly.git]
/
lib
/
libevtr
/
tok.h
blob
dc5c3ad6d8b64126cfc19eeddfd816a9aa3ee744
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_ */