Searched refs:strchr (Results 1 - 25 of 1404) sorted by relevance

1234567891011>>

/illumos-gate/usr/src/lib/libast/common/comp/
H A Dstrchr.c28 NoN(strchr)
32 #undef strchr
41 strchr(const char* s, int c)
49 strchr(register const char* s, register int c)
H A Dunsetenv.c46 if (!strchr(name, '='))
/illumos-gate/usr/src/uts/intel/sys/acpi/platform/
H A Dacgcc.h68 * Some versions of gcc implement strchr() with a buggy macro. So,
74 #ifdef strchr
75 #undef strchr macro
/illumos-gate/usr/src/cmd/dtrace/test/tst/common/funcs/
H A Dtst.strchr.d37 printf("strchr(\"%s\", '%c') = \"%s\"\n", str, c, strchr(str, c));
41 printf("strchr(\"%s\", '%c') = \"%s\"\n", str, c, strchr(str, c));
44 printf("strrchr(\"%s\", '%c') = \"%s\"\n", strchr(str, c), c,
45 strrchr(strchr(str, c), c));
57 /strchr(str, 'a') != NULL/
/illumos-gate/usr/src/lib/libbc/libc/gen/common/
H A Dstrchr.c36 strchr(sp, c) function
H A Dgetcwd.c48 extern char *malloc(), *fgets(), *strchr();
73 trm = strchr(arg1, '\0');
/illumos-gate/usr/src/lib/libc/port/gen/
H A Dindex.c55 return (strchr(sp, c));
H A Dstrchr.c43 strchr(const char *sp, int c) function
H A Dstrchrnul.c31 char *ptr = strchr(s, c);
/illumos-gate/usr/src/cmd/dtrace/test/tst/common/version/
H A Dtst.1.0.d37 int strchr;
/illumos-gate/usr/src/boot/lib/libc/string/
H A Dstrchr.c40 strchr(const char *p, int ch) function
54 __weak_reference(strchr, index);
/illumos-gate/usr/src/cmd/ipf/lib/common/
H A Dgenmask.c19 if (strchr(msk, '.') || strchr(msk, 'x') || strchr(msk, ':')) {
/illumos-gate/usr/src/lib/libgen/common/
H A Dstrrspn.c48 if (!strchr(tc, *--p))
H A Dstrecpy.c67 if (!isprint(c) && (!except || !strchr(except, c))) {
99 if (c == '\\' && (!except || !strchr(except, c)))
/illumos-gate/usr/src/lib/libnsl/dial/
H A Dstrecpy.c54 if (!isprint(c) && (!except || !strchr(except, c))) {
83 if (c == '\\' && (!except || !strchr(except, c)))
/illumos-gate/usr/src/cmd/lp/lib/lp/
H A Dgetlist.c122 p = strchr(copy, '\0');
123 while (--p != copy && strchr(ws, *p))
134 if (strchr(sep, c)) {
138 !strchr(hardsep, c)
139 && strchr(hardsep, *p)
167 if (strchr(sep, c)) {
175 !strchr(hardsep, c)
176 && strchr(hardsep, *p)
219 if (*p != '\\' || !p[1] || !strchr(sep, p[1]))
224 if (*p != '\\' || !p[1] || !strchr(se
[all...]
H A Ddashos.c38 #define issep(X) strchr(LP_WS, X)
69 if (strchr(LP_QUOTES, (quote = *o)))
H A Dcharset.c63 alias = strchr(*list, '=');
/illumos-gate/usr/src/lib/libbc/libc/gen/4.2/
H A Dsystem.c59 if ((c = strchr(path, ' ')) != NULL)
73 strcat(path, strchr(s+1, '/'));
75 c = strchr(s+1, '/');
76 strcat(path, strchr(c+1, '/'));
78 if ((c = strchr(path, ' ')) != NULL)
/illumos-gate/usr/src/cmd/ldap/ns_ldap/
H A Dstandalone.c66 chr = strchr(peer, '[');
71 chr = strchr(peer, ']');
81 chr = strchr(chr, ':');
87 chr = strchr(peer, ']');
95 chr = strchr(peer, ':');
/illumos-gate/usr/src/lib/libbc/inc/include/
H A Dstring.h42 extern char * strchr(/* const char *s, int c */);
/illumos-gate/usr/src/lib/libbc/libc/gen/sys5/
H A Dsystem.c59 if ((c = strchr(path, ' ')) != NULL)
74 strcat(path, strchr(s+1, '/'));
76 c = strchr(s+1, '/');
77 strcat(path, strchr(c+1, '/'));
/illumos-gate/usr/src/cmd/mail/
H A Dgetcomment.c48 if ((p = strchr(s, '(')) == (char *)NULL) {
/illumos-gate/usr/src/cmd/dtrace/test/tst/common/safety/
H A Dtst.strchr.d41 trace(strchr((char *)(rand() ^ timestamp), rand()));
53 trace(strchr((char *)arg0, '!'));
/illumos-gate/usr/src/cmd/sendmail/include/sm/
H A Dpath.h26 # define SM_FIRST_DIR_DELIM(s) strchr(s, '/')

Completed in 160 milliseconds

1234567891011>>