Last change
on this file since 3577fe1 was b28a12e, checked in by Thomas Lopatic <thomas@…>, 7 years ago |
Zero redundant declarations.
|
-
Property mode
set to
100644
|
File size:
495 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 | #include "ram.h"
|
---|
12 |
|
---|
13 | int8_t *strrchr(int8_t *sp, int8_t c)
|
---|
14 | {
|
---|
15 | register int8_t *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.