| 68 | int ms_num_limited_pattern; |
| 69 | |
| 70 | void 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 | |
| 86 | static int compareIntVals(int a, int b) { |
| 87 | if(a<b) return -1; |
no outgoing calls
no test coverage detected