strptime
extern char *strptime(const char *buf, const char *format, struct tm *tm);
const char* result = strptime(fDateString.String(), kDateFormats[i],
const char* result = strptime(dateString.String(), formatString, &expireTime);
s = strptime(s, nl_langinfo(T_FMT_AMPM), tm);
s = strptime(s, "%H:%M", tm);
s = strptime(s, "%H:%M:%S", tm);
s = strptime(s, nl_langinfo(D_FMT), tm);
s = strptime(s, nl_langinfo(T_FMT), tm);
s = strptime(s, nl_langinfo(D_T_FMT), tm);
s = strptime(s, "%m/%d/%y", tm);
char *p = strptime(tmp, "%12Y-%m-%d", tm);
if (strptime(data[i].dateString, data[i].format, &resultTime) == NULL) {