1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

time: use _mkgmtime and timegm to calculate unix time

This commit is contained in:
Alexey
2020-02-05 08:13:11 +03:00
committed by GitHub
parent 9d4c943d64
commit a61c9c617d
4 changed files with 19 additions and 26 deletions

View File

@@ -490,3 +490,15 @@ pub fn (t Time) get_fmt_str(fmt_dlmtr FormatDelimiter, fmt_time FormatTime, fmt_
pub fn (t Time) str() string {
return t.format_ss()
}
fn convert_ctime(t C.tm) Time {
return Time{
year: t.tm_year + 1900
month: t.tm_mon + 1
day: t.tm_mday
hour: t.tm_hour
minute: t.tm_min
second: t.tm_sec
unix: make_unix_time(t)
}
}