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:
426 bytes
|
Rev | Line | |
---|
[f40a309] | 1 | /*
|
---|
| 2 | =============================================================================
|
---|
| 3 | strchr.c -- find a character in a string
|
---|
| 4 |
|
---|
| 5 | Return the ptr in sp at which the character c appears;
|
---|
| 6 | NULL if not found
|
---|
| 7 | =============================================================================
|
---|
| 8 | */
|
---|
| 9 |
|
---|
[b28a12e] | 10 | #include "ram.h"
|
---|
[f40a309] | 11 |
|
---|
[7258c6a] | 12 | int8_t *strchr(int8_t *sp, int8_t c)
|
---|
[f40a309] | 13 | {
|
---|
| 14 | do {
|
---|
| 15 | if(*sp == c)
|
---|
| 16 | return(sp);
|
---|
| 17 | } while(*sp++);
|
---|
| 18 |
|
---|
[7258c6a] | 19 | return((int8_t *)NULL);
|
---|
[f40a309] | 20 | }
|
---|
[7258c6a] | 21 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.