gonzui


Format: Advanced Search

SearchGoogle itResults 1 - 1 of 1 for funcall:strlen from t2ex/bsd_source/lib/libc/src_bsd/time/strptime.c (0.00 seconds)
t2ex
bsd_source/lib/libc/src_bsd/time/strptime.c - 28.1KB - 732 lines
232:                                 /* Full name. */
233:                                 len = strlen(_ctloc(day[i]));
234:                                 if (strncasecmp(_ctloc(day[i]), (char*)bp, len) == 0)
237: /* Abbreviated name. */ 238: len = strlen(_ctloc(abday[i])); 239: if (strncasecmp(_ctloc(abday[i]), (char*)bp, len) == 0)
257: /* Full name. */ 258: len = strlen(_ctloc(mon[i])); 259: if (strncasecmp(_ctloc(mon[i]), (char*)bp, len) == 0)
262: /* Abbreviated name. */ 263: len = strlen(_ctloc(abmon[i])); 264: if (strncasecmp(_ctloc(abmon[i]), (char*)bp, len) == 0)
335: /* AM? */ 336: len = strlen(_ctloc(am_pm[0])); 337: if (strncasecmp(_ctloc(am_pm[0]), (char*)bp, len) == 0) {
346: /* PM? */ 347: len = strlen(_ctloc(am_pm[1])); 348: if (strncasecmp(_ctloc(am_pm[1]), (char*)bp, len) == 0) {
714: for (i = 0; i < c; i++, n1++) { 715: len = strlen(*n1); 716: if (strncasecmp(*n1, (const char *)bp, len) == 0) {