1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
#include <time.h>
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
int main() {
int result = 0;
struct tm tm;
memset(&tm, 0xaa, sizeof(tm));
/* Test we don't crash on uninitialized struct tm.
Some fields might contain bogus values until everything
needed is initialized, but we shouldn't crash. */
if (strptime("2007", "%Y", &tm) == NULL ||
strptime("12", "%d", &tm) == NULL || strptime("Feb", "%b", &tm) == NULL ||
strptime("13", "%M", &tm) == NULL || strptime("21", "%S", &tm) == NULL ||
strptime("16", "%H", &tm) == NULL) {
printf("ERR: returned NULL");
exit(EXIT_FAILURE);
}
if (tm.tm_sec != 21 || tm.tm_min != 13 || tm.tm_hour != 16 ||
tm.tm_mday != 12 || tm.tm_mon != 1 || tm.tm_year != 107 ||
tm.tm_wday != 1 || tm.tm_yday != 42) {
printf("ERR: unexpected tm content (1) - %d/%d/%d %d:%d:%d", tm.tm_mon + 1,
tm.tm_mday, tm.tm_year + 1900, tm.tm_hour, tm.tm_min, tm.tm_sec);
exit(EXIT_FAILURE);
}
if (strptime("8", "%d", &tm) == NULL) {
printf("ERR: strptime failed");
exit(EXIT_FAILURE);
}
if (tm.tm_sec != 21 || tm.tm_min != 13 || tm.tm_hour != 16 ||
tm.tm_mday != 8 || tm.tm_mon != 1 || tm.tm_year != 107 ||
tm.tm_wday != 4 || tm.tm_yday != 38) {
printf("ERR: unexpected tm content (2) - %d/%d/%d %d:%d:%d", tm.tm_mon + 1,
tm.tm_mday, tm.tm_year + 1900, tm.tm_hour, tm.tm_min, tm.tm_sec);
exit(EXIT_FAILURE);
}
printf("OK");
}
|