Changeset 609 for branches/GNU/src/binutils/libiberty/strrchr.c
- Timestamp:
- Aug 16, 2003, 6:59:22 PM (22 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/GNU/src/binutils/libiberty/strrchr.c
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.1.1.2
r608 r609 3 3 4 4 /* 5 NAME6 strrchr -- return pointer to last occurance of a character7 5 8 SYNOPSIS 9 char *strrchr (const char *s, int c) 6 @deftypefn Supplemental char* strrchr (const char *@var{s}, int @var{c}) 10 7 11 DESCRIPTION 12 Returns a pointer to the last occurance of character C in 13 string S, or a NULL pointer if no occurance is found. 14 15 BUGS 16 Behavior when character is the null character is implementation 17 dependent. 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 18 14 */ 19 15 -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.