File: rindex.c

package info (click to toggle)
gdb 6.4.90.dfsg-1
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 110,584 kB
  • ctags: 159,784
  • sloc: ansic: 1,310,631; exp: 71,643; asm: 49,634; makefile: 46,986; sh: 19,296; yacc: 9,484; cpp: 5,251; perl: 4,729; pascal: 825; lex: 629; lisp: 450; sed: 231; awk: 142; objc: 134; ada: 108; java: 47; fortran: 35; f90: 19
file content (21 lines) | stat: -rw-r--r-- 460 bytes parent folder | download | duplicates (95)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/* Stub implementation of (obsolete) rindex(). */

/*

@deftypefn Supplemental char* rindex (const char *@var{s}, int @var{c})

Returns a pointer to the last occurrence of the character @var{c} in
the string @var{s}, or @code{NULL} if not found.  The use of @code{rindex} is
deprecated in new programs in favor of @code{strrchr}.

@end deftypefn

*/

extern char *strrchr (const char *, int);

char *
rindex (const char *s, int c)
{
  return strrchr (s, c);
}