mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
checker: cleanup type alias pascal case check (#10217)
This commit is contained in:
@@ -5,8 +5,6 @@ module time
|
||||
|
||||
#include <time.h>
|
||||
|
||||
type time_t = i64
|
||||
|
||||
pub const (
|
||||
days_string = 'MonTueWedThuFriSatSun'
|
||||
month_days = [31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31]
|
||||
|
@@ -18,7 +18,7 @@ struct C.tm {
|
||||
tm_isdst int
|
||||
}
|
||||
|
||||
fn C.timegm(&C.tm) time_t
|
||||
fn C.timegm(&C.tm) C.time_t
|
||||
|
||||
// fn C.gmtime_r(&tm, &gbuf)
|
||||
fn C.localtime_r(t &time_t, tm &C.tm)
|
||||
|
Reference in New Issue
Block a user