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:
605 bytes
|
Line | |
---|
1 | /*
|
---|
2 | =============================================================================
|
---|
3 | strpbrk.c -- find a 'break' character in a string
|
---|
4 | Version 1 -- 1987-06-12
|
---|
5 |
|
---|
6 | Return ptr to first occurance of any character from `brkset'
|
---|
7 | in the character string `string'; NULL if none exists.
|
---|
8 | =============================================================================
|
---|
9 | */
|
---|
10 |
|
---|
11 | #include "ram.h"
|
---|
12 |
|
---|
13 | int8_t *strpbrk(int8_t *string, int8_t *brkset)
|
---|
14 | {
|
---|
15 | register int8_t *p;
|
---|
16 |
|
---|
17 | do {
|
---|
18 |
|
---|
19 | for (p = brkset; *p != '\0' && *p != *string; ++p)
|
---|
20 | ;
|
---|
21 |
|
---|
22 | if (*p != '\0')
|
---|
23 | return(string);
|
---|
24 | }
|
---|
25 |
|
---|
26 | while(*string++)
|
---|
27 | ;
|
---|
28 |
|
---|
29 | return((int8_t *)0);
|
---|
30 | }
|
---|
31 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.