aboutsummaryrefslogtreecommitdiffstats
path: root/timev.h
diff options
context:
space:
mode:
authorakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-04-21 14:56:59 +0000
committerakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-04-21 14:56:59 +0000
commit3bc16f62c1fb6225b3f6cb96b62f78e44636aae4 (patch)
tree7861dbce5046671694894b080ca6d0e0d15c6175 /timev.h
parent143846ad369eba2324e13743ff03bcf50d56c942 (diff)
downloadruby-3bc16f62c1fb6225b3f6cb96b62f78e44636aae4.tar.gz
* time.c: remove time_t restriction from Time class.
* timev.h: new file to define struct vtm. * strftime.c: format struct vtm instead of struct tm. * ext/syck/rubyext.c (mktime_do): don't use time_t; [ruby-dev:38191] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@23242 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'timev.h')
-rw-r--r--timev.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/timev.h b/timev.h
new file mode 100644
index 0000000000..6fa4f86415
--- /dev/null
+++ b/timev.h
@@ -0,0 +1,19 @@
+#ifndef RUBY_TIMEV_H
+#define RUBY_TIMEV_H
+
+struct vtm {
+ VALUE year; /* 2000 for example. Integer. */
+ int mon; /* 1..12 */
+ int mday; /* 1..31 */
+ int hour; /* 0..23 */
+ int min; /* 0..59 */
+ int sec; /* 0..60 */
+ VALUE subsec; /* 0 <= subsec < 1. possibly Rational. */
+ VALUE utc_offset; /* -3600 as -01:00 for example. possibly Rational. */
+ int wday; /* 0:Sunday, 1:Monday, ..., 6:Saturday */
+ int yday; /* 1..366 */
+ int isdst; /* 0:StandardTime 1:DayLightSavingTime */
+ const char *zone; /* "JST", "EST", "EDT", etc. */
+};
+
+#endif