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

1234567891011>>

/freebsd-10.0-release/contrib/binutils/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++)
/freebsd-10.0-release/contrib/gcclibs/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++)
/freebsd-10.0-release/cddl/contrib/opensolaris/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/
/freebsd-10.0-release/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/version/
H A Dtst.1.0.d37 int strchr;
/freebsd-10.0-release/contrib/gdb/gdb/
H A Dgdb_string.h33 #ifndef strchr
34 extern char *strchr (const char *, int); /* X3.159-1989 4.11.5.2 */
/freebsd-10.0-release/crypto/heimdal/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))
/freebsd-10.0-release/lib/libc/string/
H A Dstrchr.c40 strchr(const char *p, int ch) function
54 __weak_reference(strchr, index);
/freebsd-10.0-release/lib/libc/i386/string/
H A Dstrchr.S35 * strchr(s, c)
48 ENTRY(strchr) function
64 END(strchr)
66 WEAK_ALIAS(index, strchr)
H A DMakefile.inc5 memset.S strcat.S strchr.S strcmp.S strcpy.S strncmp.S strrchr.S \
/freebsd-10.0-release/lib/libc/mips/string/
H A Dstrchr.S47 LEAF(strchr)
59 END(strchr)
61 WEAK_ALIAS(index, strchr)
/freebsd-10.0-release/contrib/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))
/freebsd-10.0-release/contrib/llvm/tools/clang/include/clang/Basic/
H A DBuiltins.h94 return strchr(GetRecord(ID).Attributes, 'c') != 0;
99 return strchr(GetRecord(ID).Attributes, 'n') != 0;
104 return strchr(GetRecord(ID).Attributes, 'r') != 0;
109 return strchr(GetRecord(ID).Attributes, 'j') != 0;
115 return strchr(GetRecord(ID).Attributes, 'u') != 0;
121 return strchr(GetRecord(ID).Attributes, 'F') != 0;
128 return strchr(GetRecord(ID).Attributes, 'f') != 0;
135 return strchr(GetRecord(ID).Attributes, 'i') != 0;
140 return strchr(GetRecord(ID).Attributes, 't') != 0;
168 return strchr(GetRecor
[all...]
/freebsd-10.0-release/contrib/ipfilter/
H A Dgenmask.c21 if (strchr(msk, '.') || strchr(msk, 'x') || strchr(msk, ':')) {
/freebsd-10.0-release/contrib/libreadline/
H A Dhistlib.h54 # ifndef strchr
55 extern char *strchr ();
57 #define member(c, s) ((c) ? ((char *)strchr ((s), (c)) != (char *)NULL) : 0)
/freebsd-10.0-release/lib/libc/arm/string/
H A DMakefile.inc5 memmove.S memset.S strcat.c strchr.c strcmp.S strcpy.c strlen.S \
/freebsd-10.0-release/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/safety/
H A Dtst.strchr.d41 trace(strchr((char *)(rand() ^ timestamp), rand()));
53 trace(strchr((char *)arg0, '!'));
/freebsd-10.0-release/contrib/ipfilter/lib/
H A Dassigndefined.c20 t = strchr(s, '=');
/freebsd-10.0-release/contrib/ntp/libopts/compat/
H A Dstrchr.c5 char *strchr(char const *s, int c);
10 The strchr() function returns a pointer to the first occurrence of the
20 The strchr() and strrchr() functions return a pointer to the matched
28 strchr( char const *s, int c) function
/freebsd-10.0-release/contrib/ntp/sntp/libopts/compat/
H A Dstrchr.c5 char *strchr(char const *s, int c);
10 The strchr() function returns a pointer to the first occurrence of the
20 The strchr() and strrchr() functions return a pointer to the matched
28 strchr( char const *s, int c) function
/freebsd-10.0-release/contrib/sendmail/include/sm/
H A Dpath.h24 # define SM_FIRST_DIR_DELIM(s) strchr(s, '/')

Completed in 113 milliseconds

1234567891011>>