]> git.saurik.com Git - apple/libc.git/blob - tests/strptime.c
Libc-1158.50.2.tar.gz
[apple/libc.git] / tests / strptime.c
1 #include <time.h>
2
3 #include <darwintest.h>
4 #include <darwintest_utils.h>
5
6 T_DECL(PR_27004626, "strptime() should fail when a %t doesn't match anything")
7 {
8 struct tm tm;
9 T_ASSERT_NULL(strptime("there'snotemplateforthis", "%t", &tm), NULL);
10 }