Searched refs:strspn (Results 26 - 50 of 139) sorted by relevance

123456

/illumos-gate/usr/src/lib/libnsl/dial/
H A Ddial.c188 (strlen(call.telno) != strspn(call.telno, "0123456789=-*#"))) {
/illumos-gate/usr/src/cmd/bnu/
H A Ddial.c198 (strlen(call.telno) != strspn(call.telno,"0123456789=-*#")) ) {
/illumos-gate/usr/src/cmd/head/
H A Dhead.c87 strspn(&argv[i][1], "0123456789")) {
/illumos-gate/usr/src/lib/libwrap/
H A Dtcpd.h142 #define NOT_INADDR(s) (strchr(s, ':') == 0 && s[strspn(s, "0123456789./")] != 0)
144 #define NOT_INADDR(s) (s[strspn(s, "0123456789./")] != 0)
H A Dworkarounds.c302 if (*(state += strspn(state, sep)) == 0)
H A Doptions.c161 value += strspn(value, whitespace);
165 value += strspn(value, whitespace);
/illumos-gate/usr/src/lib/libbsm/common/
H A Daudit_class.c123 s = input + strspn(input, " \t\r\n");
228 s = line + strspn(line, " \t\r\n");
H A Daudit_event.c132 s = input + strspn(input, " \t\r\n");
295 s = line + strspn(line, " \t\r\n");
/illumos-gate/usr/src/boot/lib/libstand/
H A DMakefile.inc57 SRCS += $(LIB_BASE)/libc/string/strsep.c $(LIB_BASE)/libc/string/strspn.c
67 strpbrk.o strrchr.o strsep.o strspn.o strstr.o strtok.o swab.o
/illumos-gate/usr/src/lib/smbsrv/libsmb/common/
H A Dsmb_util.c223 p += strspn(p, class);
232 if (strspn(q, class) == 0)
260 p += strspn(p, class);
662 cp += strspn(cp, "/");
920 if (strspn(name, "0123456789") == len)
/illumos-gate/usr/src/cmd/truss/
H A Dlistopts.c576 pat += strspn(pat, "!");
619 fpat += strspn(fpat, white);
631 pat += strspn(pat, "!");
/illumos-gate/usr/src/cmd/lp/filter/postscript/postio/
H A Difdef.c810 /* @(#)strspn.c 1.2 */
817 strspn(string, charset) function
859 * uses strpbrk and strspn to break string into tokens on
866 extern int strspn();
882 q = p + strspn(p, sepset); /* skip leading separators */
/illumos-gate/usr/src/lib/libgrubmgmt/common/
H A Dlibgrub_cmd.c183 len = strspn(s, " \t");
223 s += strspn(s, ",");
H A Dlibgrub_entry.c61 if (c == '/' && (k = strspn(path + i, "/") - 1) != 0) {
H A Dlibgrub_menu.c216 line += strspn(line, " \t");
237 n = strspn(line, " \t=");
/illumos-gate/usr/src/lib/libbc/libc/stdio/common/
H A Ddoprnt.c49 #include <string.h> /* strchr, strlen, strspn */
1043 if (fmt[n = strspn(fmt, digits)] == '$')
1050 fmt += strspn(fmt, skips);
1166 if (fmt[n = strspn(fmt, digits)] == '$')
1181 fmt += strspn(fmt, skips);
/illumos-gate/usr/src/cmd/fs.d/pcfs/mount/
H A Dmount.c206 strspn(tzname[1], " ") == strlen(tzname[1])) {
/illumos-gate/usr/src/cmd/lp/lib/filters/
H A Dloadfilters.c204 p = buf + strspn(buf, " \t");
/illumos-gate/usr/src/head/
H A Dstring.h59 using std::strspn;
/illumos-gate/usr/src/cmd/auditreduce/
H A Dtime.c323 if (strlen(str) != strspn(str, "0123456789")) {
389 if (len != strspn(str, digits)) {
/illumos-gate/usr/src/cmd/sort/common/
H A Doptions.c101 int p_nonmodifiers = strspn(C, ",.1234567890");
123 int p_modifiers = MIN(length, strspn(C, ".1234567890"));
/illumos-gate/usr/src/cmd/iconv/
H A Dcharmap.c406 (strspn(ssym + si, digits) != (ls - si)) ||
407 (strspn(esym + si, digits) != (le - si)) ||
/illumos-gate/usr/src/cmd/pr/
H A Dpr.c77 #define ALL_NUMS(s) (strspn(s, "0123456789") == strlen(s))
261 strspn(&argv[optnum][1], "0123456789")) {
476 if (strlen(optarg) != strspn(optarg, "0123456789"))
487 if (strlen(optarg) != strspn(optarg, "0123456789"))
505 if (strlen(optarg) != strspn(optarg, "0123456789"))
/illumos-gate/usr/src/uts/common/fs/smbsrv/
H A Dsmb_pathname.c800 p += strspn(p, "\\");
894 path += strspn(path, "\\");
938 name += strspn(name, "\\");
/illumos-gate/usr/src/cmd/ndmpd/ndmp/
H A Dndmpd_dtime.c251 *bpp += strspn(*bpp, "\t ");
294 *bpp += strspn(*bpp, "\t ");
336 *bpp += strspn(*bpp, "\t ");

Completed in 183 milliseconds

123456