MCPcopy Create free account
hub / github.com/ChiyukiGana/Quickinput / TimeToMs

Function TimeToMs

source/src/scriptinterpreter.cpp:37–40  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

35}
36
37time_t TimeToMs(time_t hour, time_t min, time_t sec, time_t msec)
38{
39 return (hour * 3600000) + (min * 60000) + (sec * 1000) + msec;
40}
41
42time_t DateTimeToUnixMs(time_t hour, time_t min, time_t sec, time_t msec, time_t year, time_t mon, time_t day)
43{

Callers 1

execMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected