zoneinfo.h - 9base - revived minimalist port of Plan 9 userland to Unix | |
git clone git://git.suckless.org/9base | |
Log | |
Files | |
Refs | |
README | |
LICENSE | |
--- | |
zoneinfo.h (314B) | |
--- | |
1 #define zonetinfo _p9zonetinfo | |
2 #define zonedump _p9zonedump | |
3 #define zonelookuptinfo _p9zonelookuptinfo | |
4 | |
5 typedef long tlong; | |
6 | |
7 typedef | |
8 struct Tinfo | |
9 { | |
10 long t; | |
11 int tzoff; | |
12 int dlflag; | |
13 char *zone; | |
14 } Tinfo; | |
15 | |
16 extern int zonelookuptinfo(Tinfo*, tlong); | |
17 extern int zonetinfo(Tinfo*, int); | |
18 extern void zonedump(int fd); | |
19 |