|
Last change
on this file since 0580615 was 0580615, checked in by Thomas Lopatic <thomas@…>, 8 years ago |
|
Point of no return.
|
-
Property mode
set to
100644
|
|
File size:
493 bytes
|
| Line | |
|---|
| 1 | /*
|
|---|
| 2 | =============================================================================
|
|---|
| 3 | strrchr.c -- find last occurrence of a character in a string
|
|---|
| 4 | Version 1 -- 1987-06-12
|
|---|
| 5 |
|
|---|
| 6 | Return the ptr in sp at which the character c last
|
|---|
| 7 | appears; NULL if not found.
|
|---|
| 8 | =============================================================================
|
|---|
| 9 | */
|
|---|
| 10 |
|
|---|
| 11 | #define NULL (char *)0
|
|---|
| 12 |
|
|---|
| 13 | char *strrchr(char *sp, char c)
|
|---|
| 14 | {
|
|---|
| 15 | register char *r;
|
|---|
| 16 |
|
|---|
| 17 | r = NULL;
|
|---|
| 18 |
|
|---|
| 19 | do {
|
|---|
| 20 |
|
|---|
| 21 | if (*sp == c)
|
|---|
| 22 | r = sp;
|
|---|
| 23 |
|
|---|
| 24 | } while(*sp++);
|
|---|
| 25 |
|
|---|
| 26 | return(r);
|
|---|
| 27 | }
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.