v/vlib/time/time_nix.v

21 lines
387 B
V
Raw Normal View History

2020-01-23 21:04:46 +01:00
// Copyright (c) 2019-2020 Alexander Medvednikov. All rights reserved.
2020-01-01 12:01:03 +01:00
// Use of this source code is governed by an MIT license
// that can be found in the LICENSE file.
module time
struct C.tm {
tm_year int
tm_mon int
tm_mday int
tm_hour int
tm_min int
tm_sec int
tm_gmtoff int // seconds
}
fn C.timegm(&tm) time_t
2020-01-01 12:01:03 +01:00
2020-02-04 12:17:04 +01:00
fn make_unix_time(t tm) int {
2020-02-07 22:10:48 +01:00
return int(C.timegm(&t))
2020-02-04 12:17:04 +01:00
}