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

20 lines
371 B
V
Raw Normal View History

2020-01-23 23:04:46 +03:00
// Copyright (c) 2019-2020 Alexander Medvednikov. All rights reserved.
2020-01-01 14:01:03 +03: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
}
2020-03-28 12:19:38 +03:00
fn C._mkgmtime(&C.tm) time_t
2020-01-01 14:01:03 +03:00
2020-03-28 12:19:38 +03:00
fn make_unix_time(t C.tm) int {
2020-02-08 01:11:15 +03:00
return int(C._mkgmtime(&t))
2020-02-04 14:17:04 +03:00
}