mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
20 lines
234 B
C
20 lines
234 B
C
![]() |
struct tmx {
|
||
|
VALUE year;
|
||
|
int yday;
|
||
|
int mon;
|
||
|
int mday;
|
||
|
int hour;
|
||
|
int min;
|
||
|
int sec;
|
||
|
int wday;
|
||
|
VALUE offset;
|
||
|
const char *zone;
|
||
|
VALUE timev;
|
||
|
};
|
||
|
|
||
|
/*
|
||
|
Local variables:
|
||
|
c-file-style: "ruby"
|
||
|
End:
|
||
|
*/
|