Searched refs:strrchr (Results 1 - 25 of 599) sorted by relevance

1234567891011>>

/freebsd-11-stable/contrib/gcclibs/libiberty/
H A Drindex.c9 deprecated in new programs in favor of @code{strrchr}.
15 extern char *strrchr (const char *, int);
20 return strrchr (s, c);
H A Dstrrchr.c1 /* Portable version of strrchr().
6 @deftypefn Supplemental char* strrchr (const char *@var{s}, int @var{c})
19 strrchr (register const char *s, int c) function
/freebsd-11-stable/contrib/binutils/libiberty/
H A Drindex.c9 deprecated in new programs in favor of @code{strrchr}.
15 extern char *strrchr (const char *, int);
20 return strrchr (s, c);
H A Dstrrchr.c1 /* Portable version of strrchr().
6 @deftypefn Supplemental char* strrchr (const char *@var{s}, int @var{c})
19 strrchr (register const char *s, int c) function
/freebsd-11-stable/contrib/gdb/gdb/
H A Dgdb_string.h37 #ifndef strrchr
38 extern char *strrchr (const char *, int); /* X3.159-1989 4.11.5.5 */
/freebsd-11-stable/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/funcs/
H A Dtst.strchr.d38 printf("strrchr(\"%s\", '%c') = \"%s\"\n", str, c, strrchr(str, c));
42 printf("strrchr(\"%s\", '%c') = \"%s\"\n", str, c, strrchr(str, c));
44 printf("strrchr(\"%s\", '%c') = \"%s\"\n", strchr(str, c), c,
45 strrchr(strchr(str, c), c));
63 /strrchr(str, 'a') != NULL/
/freebsd-11-stable/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/version/
H A Dtst.1.0.d38 int strrchr;
/freebsd-11-stable/lib/libc/string/
H A Dstrrchr.c40 strrchr(const char *p, int ch) function
55 __weak_reference(strrchr, rindex);
/freebsd-11-stable/contrib/ntp/sntp/libopts/compat/
H A Dstrchr.c7 char *strrchr(char const *s, int c);
13 The strrchr() function returns a pointer to the last occurrence of the
20 The strchr() and strrchr() functions return a pointer to the matched
31 strrchr(char const *s, int c);
46 strrchr(char const *s, int c) function
/freebsd-11-stable/crypto/heimdal/lib/roken/
H A Dsetprogname.c53 p = strrchr(argv0, '/');
59 pb = strrchr((p != NULL)? p : argv0, '\\');
76 ext = strrchr(fn, '.');
/freebsd-11-stable/lib/libc/i386/string/
H A Dstrrchr.S35 * strrchr(s, c)
48 ENTRY(strrchr)
65 END(strrchr)
67 WEAK_REFERENCE(strrchr, rindex)
/freebsd-11-stable/contrib/blacklist/port/
H A Dgetprogname.c20 if ((q = strrchr(p, '/')) != NULL)
/freebsd-11-stable/lib/libc/gen/
H A Dsetprogname.c14 p = strrchr(progname, '/');
/freebsd-11-stable/lib/libc/mips/string/
H A Dstrrchr.S47 LEAF(strrchr)
57 END(strrchr)
59 WEAK_ALIAS(rindex, strrchr)
H A DMakefile.inc13 strrchr.S
/freebsd-11-stable/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/safety/
H A Dtst.strchr.d47 trace(strrchr((char *)(rand() ^ timestamp), rand()));
59 trace(strrchr((char *)arg0, '!'));
/freebsd-11-stable/contrib/sendmail/include/sm/
H A Dpath.h25 # define SM_LAST_DIR_DELIM(s) strrchr(s, '/')
/freebsd-11-stable/contrib/xz/src/common/
H A Dtuklib_progname.c38 p = strrchr(p, '.');
/freebsd-11-stable/sys/libkern/
H A Dstrrchr.c37 strrchr(const char *p, int ch) function
/freebsd-11-stable/contrib/libarchive/libarchive_fe/
H A Derr.c61 lafe_progname = strrchr(name, '\\');
62 if (strrchr(name, '/') > lafe_progname)
64 lafe_progname = strrchr(name, '/');
/freebsd-11-stable/contrib/libstdc++/include/c_std/
H A Dstd_cstring.h70 #undef strrchr macro
116 using ::strrchr;
119 strrchr(char* __s1, int __n) function
/freebsd-11-stable/cddl/compat/opensolaris/misc/
H A Dmkdirp.c76 endptr = strrchr(str, '\0');
77 slash = strrchr(str, '/');
94 slash = strrchr(str, '/');
/freebsd-11-stable/usr.bin/pr/
H A Degetopt.c146 if (!(p = strrchr(*nargv, '/')))
162 if (!(p = strrchr(*nargv, '/')))
199 if (!(p = strrchr(*nargv, '/')))
/freebsd-11-stable/usr.sbin/crunch/crunchgen/
H A Dcrunched_main.c59 slash = strrchr(argv[0], '/');
80 slash = strrchr(path, '/');
100 slash = strrchr(argv[1], '/');
/freebsd-11-stable/contrib/llvm-project/libcxx/include/
H A Dstring.h42 const char* strrchr(const char* s, int c);
43 char* strrchr( char* s, int c);
87 char* __libcpp_strrchr(const char* __s, int __c) {return (char*)strrchr(__s, __c);}
89 const char* strrchr(const char* __s, int __c) {return __libcpp_strrchr(__s, __c);} function
91 char* strrchr( char* __s, int __c) {return __libcpp_strrchr(__s, __c);} function

Completed in 295 milliseconds

1234567891011>>