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

1234567891011>>

/macosx-10.10.1/cxxfilt-11/cxxfilt/libiberty/
H A Dindex.c9 deprecated in new programs in favor of @code{strchr}.
15 extern char * strchr(const char *, int);
20 return strchr (s, c);
H A Dstrchr.c1 /* Portable version of strchr()
6 @deftypefn Supplemental char* strchr (const char *@var{s}, int @var{c})
19 strchr (register const char *s, int c) function
H A Dstrstr.c25 extern char *strchr (const char *, int);
35 for (; (p = strchr (p, *s2)) != 0; p++)
/macosx-10.10.1/ksh-23/ksh/src/lib/libast/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)
/macosx-10.10.1/dtrace-147/test/tst/common/funcs/
H A Dtst.strchr.d27 #pragma ident "@(#)tst.strchr.d 1.1 06/08/28 SMI"
37 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));
48 printf("strchr(\"%s\", '%c') = \"%s\"\n", str, c, strchr(str, c));
61 /strchr(st
[all...]
/macosx-10.10.1/BerkeleyDB-21/db/clib/
H A Dstrchr.c39 * strchr --
42 * PUBLIC: char *strchr __P((const char *, int));
45 char *strchr(const char *p, int ch) function
/macosx-10.10.1/uucp-11/uucp/lib/
H A Dstrchr.c0 /* strchr.c
7 strchr (z, b) function
H A Dstrstr.c30 register const char *const needle_end = strchr(needle, '\0');
31 register const char *const haystack_end = strchr(haystack, '\0');
/macosx-10.10.1/Heimdal-398.1.2/lib/roken/
H A Dhostent_find_fqdn.c48 if (strchr (ret, '.') == NULL)
50 if (strchr (*h, '.') != NULL) {
H A Dstrtok_r.c49 while(*s1 && strchr(s2, *s1))
54 while(*s1 && !strchr(s2, *s1))
/macosx-10.10.1/curl-83.1.2/curl/lib/
H A Dstrtok.c38 while(*ptr && strchr(sep, *ptr))
50 while(**end && !strchr(sep, **end))
/macosx-10.10.1/dtrace-147/test/tst/common/version/
H A Dtst.1.0.d37 int strchr;
/macosx-10.10.1/postfix-255/postfix/src/util/
H A Dget_domainname.c59 if ((dot = strchr(host, '.')) == 0 || strchr(dot + 1, '.') == 0) {
/macosx-10.10.1/xnu-2782.1.97/tools/tests/libMicro/
H A Dstrchr.c57 " [-n causes unaligned strchr]\n"
58 "notes: measures strchr()\n",
116 ts->ts_fakegcc = strchr(src, 'X');
117 ts->ts_fakegcc = strchr(src, 'X');
118 ts->ts_fakegcc = strchr(src, 'X');
119 ts->ts_fakegcc = strchr(src, 'X');
120 ts->ts_fakegcc = strchr(src, 'X');
121 ts->ts_fakegcc = strchr(src, 'X');
122 ts->ts_fakegcc = strchr(src, 'X');
123 ts->ts_fakegcc = strchr(sr
[all...]
/macosx-10.10.1/tcl-105/tcl_ext/mk4tcl/metakit/examples/
H A Dmkhash.cpp79 if (strchr(s, '2')) {
84 if (strchr(s, 'd'))
86 if (strchr(s, 'D')) {
91 if (strchr(s, 'd'))
93 if (strchr(s, 'D')) {
99 if (strchr(s, 'm'))
101 if (strchr(s, 'M')) {
105 if (strchr(s, 'h'))
107 if (strchr(s, 'o'))
109 int cfreq = strchr(
[all...]
/macosx-10.10.1/apr-32/apr/apr/strings/
H A Dapr_strtok.c24 #define APR_WANT_STRFUNC /* for strchr() */
35 while (*str && strchr(sep, *str))
47 while (**last && !strchr(sep, **last))
/macosx-10.10.1/apache-793/httpd/server/
H A Dgen_test_char.c97 if (c && strchr("&;`'\"|*?~<>^()[]{}$\\\n\r%", c)) {
101 if (c && strchr("&;`'\"|*?~<>^()[]{}$\\\n", c)) {
106 if (!apr_isalnum(c) && !strchr("$-_.+!*'(),:@&=~", c)) {
110 if (!apr_isalnum(c) && !strchr("$-_.+!*'(),:@&=/~", c)) {
114 if (!apr_isalnum(c) && !strchr(".-*_ ", c)) {
119 if (c && (apr_iscntrl(c) || strchr(" \t()<>@,;:\\\"/[]?={}", c))) {
/macosx-10.10.1/bash-94.1.2/bash-3.2/lib/readline/
H A Dhistlib.h54 # ifndef strchr
55 extern char *strchr ();
57 #define member(c, s) ((c) ? ((char *)strchr ((s), (c)) != (char *)NULL) : 0)
/macosx-10.10.1/BerkeleyDB-21/db/os/
H A Dos_rpath.c29 if (strchr(PATH_SEPARATOR, s[0]) != NULL)
/macosx-10.10.1/Libc-1044.1.2/string/FreeBSD/
H A Dindex.c42 strchr function
/macosx-10.10.1/Security-57031.1.35/SecurityTests/regressions/test/
H A Dtestenv.c45 if (strlen(path) + 10 > sizeof(command_buf) || strchr(path, '\''))
/macosx-10.10.1/dtrace-147/test/tst/common/safety/
H A Dtst.strchr.d27 #pragma ident "@(#)tst.strchr.d 1.1 06/08/28 SMI"
41 trace(strchr((char *)(rand() ^ timestamp), rand()));
53 trace(strchr((char *)arg0, '!'));
/macosx-10.10.1/emacs-93/emacs/src/s/
H A Dusg5-0.h140 #define index strchr
H A Dusg5-2-2.h139 #define index strchr
H A Dusg5-2.h139 #define index strchr

Completed in 445 milliseconds

1234567891011>>