- t2ex
 - bsd_source/lib/libc/src_bsd/stdlib/strtod.c - 41.4KB - 1,105 lines
 109:         char *decimalpoint = localeconv()->decimal_point;
110:         int dplen = strlen(decimalpoint);
111: #else
- More results from strtod.c
 - bsd_source/lib/libc/src_bsd/stdlib/strtodg.c - 41.4KB - 1,154 lines
 358:         char *decimalpoint = localeconv()->decimal_point;
359:         int dplen = strlen(decimalpoint);
360: #else
- More results from strtodg.c
 - bsd_source/lib/libc/src_bsd/string/strdup.c - 2.0KB - 49 lines
 43: 
44:         siz = strlen(str) + 1;
45:         if ((copy = malloc(siz)) == NULL)
- bsd_source/lib/libc/src_bsd/string/strlcat.c - 1.9KB - 55 lines
 43:         if (n == 0)
44:                 return(dlen + strlen(s));
45:         while (*s != '\0') {
- bsd_source/lib/libc/src_bsd/string/strstr.c - 2.2KB - 56 lines
 45:         if ((c = *find++) != 0) {
46:                 len = strlen(find);
47:                 do {
- bsd_source/lib/libc/src_bsd/string/strxfrm.c - 2.1KB - 51 lines
 48:         if (n == 0)
49:                 return (strlen(src));
50:         return (strlcpy(dst, src, n));
- bsd_source/lib/libc/src_bsd/time/asctime.c - 5.1KB - 144 lines
 107:         len = snprintf(buf, bufsize,
108:                 ((strlen(year) <= 4) ? ASCTIME_FMT : ASCTIME_FMT_B),
109:                 wn, mn,
- bsd_source/lib/libc/src_bsd/time/strftime.c - 33.3KB - 791 lines
 698:                                 ++ap)
699:                                         *ap = p += strlen(p) + 1;
700:                 return &localebuf;
- More results from strftime.c
 - 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)
- More results from strptime.c
 - bsd_source/t2ex/network/net/src_bsd/kern/subr_evcnt.c - 6.1KB - 176 lines
 117: 
118:         len = strlen(ev->ev_group);
119: #ifdef DIAGNOSTIC
- More results from subr_evcnt.c