- t2ex
- bsd_source/lib/libc/src_bsd/arpa_inet/inet_ntop.c - 6.6KB - 195 lines
167: return (NULL);
168: tp += strlen(tp);
169: break;
- bsd_source/lib/libc/src_bsd/search/hcreate.c - 5.7KB - 186 lines
161:
162: len = strlen(item.key);
163: hashval = (*__default_hash)(item.key, len);
- bsd_source/lib/libc/src_bsd/stdio/citrus_none.c - 4.0KB - 144 lines
86: if (pwcs == NULL)
87: return strlen(*s);
88:
- bsd_source/lib/libc/src_bsd/stdio/fputs.c - 2.2KB - 58 lines
49: iov.iov_base = (void *)s;
50: iov.iov_len = uio.uio_resid = strlen(s);
51: uio.uio_iov = &iov;
- bsd_source/lib/libc/src_bsd/stdio/puts.c - 2.4KB - 62 lines
44: {
45: size_t c = strlen(s);
46: struct __suio uio;
- bsd_source/lib/libc/src_bsd/stdio/sscanf.c - 2.3KB - 66 lines
58: f._bf._base = f._p = (unsigned char *)str;
59: f._bf._size = f._r = strlen(str);
60: f._read = eofread;
- bsd_source/lib/libc/src_bsd/stdio/vfprintf.c - 58.5KB - 1,551 lines
884:
885: if ((len = strlen(cp)) > INT_MAX)
886: goto overflow;
- More results from vfprintf.c
- bsd_source/lib/libc/src_bsd/stdio/vsscanf.c - 2.2KB - 59 lines
54: f._bf._base = f._p = (unsigned char *)str;
55: f._bf._size = f._r = strlen(str);
56: f._read = eofread;
- bsd_source/lib/libc/src_bsd/stdlib/gethex.c - 11.9KB - 360 lines
59: s0 = (unsigned char*)localeconv()->decimal_point;
60: if ((decimalpoint_cache = (char*)MALLOC(strlen(s0) + 1))) {
61: strlcpy(decimalpoint_cache, s0, strlen(s0) + 1);
- More results from gethex.c
- bsd_source/lib/libc/src_bsd/stdlib/realpath.c - 8.9KB - 212 lines
85: }
86: resolved_len = strlen(resolved);
87: left_len = strlcpy(left, path, sizeof(left));