diff options
author | tadf <tadf@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2011-04-16 20:14:58 +0000 |
---|---|---|
committer | tadf <tadf@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2011-04-16 20:14:58 +0000 |
commit | 1891d8dd3b1651896ee7182cd34c0f66ee1b4f2c (patch) | |
tree | d784ad0c657a92898d8a3515506e2fc7d8d26ae3 /ext/date | |
parent | 8459dc63bff1c043af857e6aaeb65e5e0726a6db (diff) |
added date_tmx.h
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@31301 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext/date')
-rw-r--r-- | ext/date/date_tmx.h | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/ext/date/date_tmx.h b/ext/date/date_tmx.h new file mode 100644 index 0000000000..cdb5b0ddad --- /dev/null +++ b/ext/date/date_tmx.h @@ -0,0 +1,19 @@ +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: +*/ |