HomeSort by: relevance | last modified time | path
    Searched refs:strchr (Results 1 - 25 of 2697) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /src/sys/external/bsd/acpica/dist/include/platform/
acgccex.h 48 * Some versions of gcc implement strchr() with a buggy macro. So,
54 #ifdef strchr
55 #undef strchr macro
  /src/external/gpl3/binutils/dist/libiberty/
index.c 9 deprecated in new programs in favor of @code{strchr}.
15 extern char * strchr(const char *, int);
20 return strchr (s, c);
strchr.c 1 /* 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
strstr.c 21 extern char *strchr (const char *, int);
34 for (; (p = strchr (p, *s2)) != 0; p++)
  /src/external/gpl3/binutils.old/dist/libiberty/
index.c 9 deprecated in new programs in favor of @code{strchr}.
15 extern char * strchr(const char *, int);
20 return strchr (s, c);
strchr.c 1 /* 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
strstr.c 21 extern char *strchr (const char *, int);
34 for (; (p = strchr (p, *s2)) != 0; p++)
  /src/external/gpl3/gcc.old/dist/libiberty/
index.c 9 deprecated in new programs in favor of @code{strchr}.
15 extern char * strchr(const char *, int);
20 return strchr (s, c);
strchr.c 1 /* 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
strstr.c 21 extern char *strchr (const char *, int);
34 for (; (p = strchr (p, *s2)) != 0; p++)
  /src/external/gpl3/gcc/dist/libiberty/
index.c 9 deprecated in new programs in favor of @code{strchr}.
15 extern char * strchr(const char *, int);
20 return strchr (s, c);
strchr.c 1 /* 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
strstr.c 21 extern char *strchr (const char *, int);
34 for (; (p = strchr (p, *s2)) != 0; p++)
  /src/external/gpl3/gdb/dist/libiberty/
index.c 9 deprecated in new programs in favor of @code{strchr}.
15 extern char * strchr(const char *, int);
20 return strchr (s, c);
strchr.c 1 /* 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
strstr.c 21 extern char *strchr (const char *, int);
34 for (; (p = strchr (p, *s2)) != 0; p++)
  /src/external/gpl3/gdb.old/dist/libiberty/
index.c 9 deprecated in new programs in favor of @code{strchr}.
15 extern char * strchr(const char *, int);
20 return strchr (s, c);
strchr.c 1 /* 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
strstr.c 21 extern char *strchr (const char *, int);
34 for (; (p = strchr (p, *s2)) != 0; p++)
  /src/lib/libc/string/
Lint_strchr.c 12 strchr(const char *src, int c) function
  /src/tests/usr.bin/xlint/lint1/
msg_346.c 11 char *strchr(const char *, int); /* C99 7.21.5.2 */
25 ccp = strchr(ccp, 'c');
26 ccp = strchr(cp, 'c');
27 /* expect+1: warning: call to 'strchr' effectively discards 'const' from argument [346] */
28 cp = strchr(ccp, 'c');
29 cp = strchr(cp, 'c');
31 take_const_char_ptr(strchr(ccp, 'c'));
32 take_const_char_ptr(strchr(cp, 'c'));
33 /* expect+1: warning: call to 'strchr' effectively discards 'const' from argument [346] */
34 take_char_ptr(strchr(ccp, 'c'))
    [all...]
  /src/common/lib/libc/arch/arm/string/
strchr.S 1 /* $NetBSD: strchr.S,v 1.4 2013/08/20 08:07:30 matt Exp $ */
5 STRONG_ALIAS(index, strchr)
  /src/common/lib/libc/string/
strchr.c 1 /* $NetBSD: strchr.c,v 1.7 2020/04/07 08:07:58 skrll Exp $ */
37 __RCSID("$NetBSD: strchr.c,v 1.7 2020/04/07 08:07:58 skrll Exp $");
50 #undef strchr macro
53 __strong_alias(index, strchr)
55 strchr(const char *p, int ch)
  /src/lib/libc/arch/mips/string/
Makefile.inc 6 strchr.S strrchr.S \
  /src/external/bsd/ntp/dist/sntp/libopts/compat/
strchr.c 1 /* $NetBSD: strchr.c,v 1.5 2020/05/25 20:47:35 christos Exp $ */
7 char *strchr(char const *s, int c);
12 The strchr() function returns a pointer to the first occurrence of the
22 The strchr() and strrchr() functions return a pointer to the matched
30 strchr(char const *s, int c);
36 strchr(char const *s, int c) function

Completed in 43 milliseconds

1 2 3 4 5 6 7 8 91011>>