MCPcopy Index your code
hub / github.com/MapServer/MapServer / msTimeInit

Function msTimeInit

maptime.c:70–84  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

68int ms_num_limited_pattern;
69
70void msTimeInit(struct tm *time)
71{
72 /* set all members to zero */
73 time->tm_sec = 0;
74 time->tm_min = 0;
75 time->tm_hour = 0;
76 time->tm_mday = 0;
77 time->tm_mon = 0;
78 time->tm_year = 0;
79 time->tm_wday = 0;
80 time->tm_yday = 0;
81 time->tm_isdst = 0;
82
83 return;
84}
85
86static int compareIntVals(int a, int b) {
87 if(a<b) return -1;

Callers 5

yylexFunction · 0.85
msWCSParseTimeOrScalar20Function · 0.85
_msValidateTimeFunction · 0.85
msTokenizeExpressionFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected