Last change
on this file since c3aee8a was 7848656, checked in by Thomas Lopatic <thomas@…>, 8 years ago |
Spaces to tabs.
|
-
Property mode
set to
100644
|
File size:
637 bytes
|
Line | |
---|
1 | /*
|
---|
2 | ============================================================================
|
---|
3 | strcspn.c -- character scan function ala' Unix(tm)
|
---|
4 | Version 1 -- 1987-02-11 -- D.N. Lynx Crowe
|
---|
5 |
|
---|
6 | Return the number of characters in the maximum leading segment
|
---|
7 | of string which consists solely of characters NOT from charset.
|
---|
8 | ============================================================================
|
---|
9 | */
|
---|
10 |
|
---|
11 | int16_t strcspn(int8_t *string, int8_t *charset)
|
---|
12 | {
|
---|
13 | register int8_t *p, *q;
|
---|
14 | register int16_t n = 0;
|
---|
15 |
|
---|
16 | for(q = string; *q != '\0'; ++q , ++n) {
|
---|
17 |
|
---|
18 | for(p = charset; *p != '\0' && *p != *q; ++p)
|
---|
19 | ;
|
---|
20 |
|
---|
21 | if(*p != '\0')
|
---|
22 | break;
|
---|
23 | }
|
---|
24 |
|
---|
25 | return(n);
|
---|
26 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.