~ubuntu-branches/ubuntu/quantal/gclcvs/quantal

« back to all changes in this revision

Viewing changes to binutils/libiberty/strrchr.c

  • Committer: Bazaar Package Importer
  • Author(s): Camm Maguire
  • Date: 2004-06-24 15:13:46 UTC
  • Revision ID: james.westby@ubuntu.com-20040624151346-xh0xaaktyyp7aorc
Tags: 2.7.0-26
C_GC_OFFSET is 2 on m68k-linux

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* Portable version of strrchr().
 
2
   This function is in the public domain. */
 
3
 
 
4
/*
 
5
 
 
6
@deftypefn Supplemental char* strrchr (const char *@var{s}, int @var{c})
 
7
 
 
8
Returns a pointer to the last occurrence of the character @var{c} in
 
9
the string @var{s}, or @code{NULL} if not found.  If @var{c} is itself the
 
10
null character, the results are undefined.
 
11
 
 
12
@end deftypefn
 
13
 
 
14
*/
 
15
 
 
16
#include <ansidecl.h>
 
17
 
 
18
char *
 
19
strrchr (s, c)
 
20
  register const char *s;
 
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
}