]> git.ipfire.org Git - thirdparty/gcc.git/blame - libiberty/strrchr.c
configure.in (MAKEINFO, PERL): Detect these.
[thirdparty/gcc.git] / libiberty / strrchr.c
CommitLineData
6599da04
JM
1/* Portable version of strrchr().
2 This function is in the public domain. */
3
4/*
aaa5f039
DD
5
6@deftypefn Supplemental char* strrchr (const char *@var{s}, int @var{c})
7
8Returns a pointer to the last occurance of the character @var{c} in
9the string @var{s}, or NULL if not found. If @var{c} is itself the
10null character, the results are undefined.
11
12@end deftypefn
13
6599da04
JM
14*/
15
16#include <ansidecl.h>
17
18char *
19strrchr (s, c)
11a0bb74 20 register const char *s;
6599da04
JM
21 int c;
22{
23 char *rtnval = 0;
24
25 do {
26 if (*s == c)
27 rtnval = (char*) s;
28 } while (*s++);
29 return (rtnval);
30}