summaryrefslogtreecommitdiff
path: root/time.c
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-09-12 14:37:51 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-09-12 14:37:51 +0000
commit351b8a322ebdc4de90706766f4312dfeef810ecb (patch)
tree815b2b60b54ec954f5ffe64dbecd0ea214285f1f /time.c
parentf7b0a791caaa7c16da4c0afccfde4eaf107e0104 (diff)
time.c split time_utc_or_local
* time.c (time_utc_or_local): split into time_s_mkutc and time_s_mktime without utc flag. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@64700 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'time.c')
-rw-r--r--time.c28
1 files changed, 10 insertions, 18 deletions
diff --git a/time.c b/time.c
index 3b454720dc..3543454850 100644
--- a/time.c
+++ b/time.c
@@ -2437,7 +2437,8 @@ time_s_now(VALUE klass)
}
static int
-get_scale(VALUE unit) {
+get_scale(VALUE unit)
+{
if (unit == ID2SYM(id_nanosecond) || unit == ID2SYM(id_nsec)) {
return 1000000000;
}
@@ -3075,21 +3076,6 @@ tmcmp(struct tm *a, struct tm *b)
return 0;
}
-static VALUE
-time_utc_or_local(int argc, VALUE *argv, int utc_p, VALUE klass)
-{
- struct vtm vtm;
- VALUE time;
-
- time_arg(argc, argv, &vtm);
- if (utc_p)
- time = time_new_timew(klass, timegmw(&vtm));
- else
- time = time_new_timew(klass, timelocalw(&vtm));
- if (utc_p) return time_gmtime(time);
- return time_localtime(time);
-}
-
/*
* call-seq:
* Time.utc(year) -> time
@@ -3125,7 +3111,10 @@ time_utc_or_local(int argc, VALUE *argv, int utc_p, VALUE klass)
static VALUE
time_s_mkutc(int argc, VALUE *argv, VALUE klass)
{
- return time_utc_or_local(argc, argv, TRUE, klass);
+ struct vtm vtm;
+
+ time_arg(argc, argv, &vtm);
+ return time_gmtime(time_new_timew(klass, timegmw(&vtm)));
}
/*
@@ -3156,7 +3145,10 @@ time_s_mkutc(int argc, VALUE *argv, VALUE klass)
static VALUE
time_s_mktime(int argc, VALUE *argv, VALUE klass)
{
- return time_utc_or_local(argc, argv, FALSE, klass);
+ struct vtm vtm;
+
+ time_arg(argc, argv, &vtm);
+ return time_localtime(time_new_timew(klass, timelocalw(&vtm)));
}
/*