Last change
on this file since 9519422 was 7258c6a, checked in by Thomas Lopatic <thomas@…>, 7 years ago |
Use standard integer types.
|
-
Property mode
set to
100644
|
File size:
486 bytes
|
Line | |
---|
1 | /*
|
---|
2 | =============================================================================
|
---|
3 | memchr.c -- search a string for a character
|
---|
4 | Version 1 -- 1987-06-12
|
---|
5 |
|
---|
6 | Return the ptr in vp at which the character c appears;
|
---|
7 | NULL if not found in n chars; don't stop at \0.
|
---|
8 | =============================================================================
|
---|
9 | */
|
---|
10 |
|
---|
11 | void *memchr(void *vp, int8_t c, int16_t n)
|
---|
12 | {
|
---|
13 | int8_t *cp = vp;
|
---|
14 |
|
---|
15 | while (--n >= 0)
|
---|
16 | if (*cp++ == c)
|
---|
17 | return(--cp);
|
---|
18 |
|
---|
19 | return((void *)0);
|
---|
20 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.