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:
1.1 KB
|
Rev | Line | |
---|
[f40a309] | 1 | /*
|
---|
| 2 | =============================================================================
|
---|
| 3 | strtok.c -- tokenize a string
|
---|
| 4 | Version 1 -- 1987-06-12
|
---|
| 5 |
|
---|
| 6 | Uses strpbrk and strspn to break 'string' into tokens on
|
---|
| 7 | sequentially subsequent calls. Returns NULL when no
|
---|
| 8 | non-separator characters remain.
|
---|
| 9 | 'subsequent' calls are calls with first argument == NULL.
|
---|
| 10 | =============================================================================
|
---|
| 11 | */
|
---|
| 12 |
|
---|
[7258c6a] | 13 | #define NULL (int8_t *)0
|
---|
[f40a309] | 14 |
|
---|
[7258c6a] | 15 | extern int16_t strspn(int8_t *string, int8_t *charset);
|
---|
| 16 | extern int8_t *strpbrk(int8_t *string, int8_t *brkset);
|
---|
[f40a309] | 17 |
|
---|
[7258c6a] | 18 | int8_t *strtok(int8_t *string, int8_t *sepset)
|
---|
[f40a309] | 19 | {
|
---|
[7258c6a] | 20 | register int8_t *p, *q, *r;
|
---|
| 21 | static int8_t *savept;
|
---|
[f40a309] | 22 |
|
---|
| 23 | /* first or subsequent call ? */
|
---|
| 24 |
|
---|
[7848656] | 25 | p = (string == NULL) ? savept : string;
|
---|
[f40a309] | 26 |
|
---|
| 27 | if (p == 0) /* return if no tokens remain */
|
---|
| 28 | return(NULL);
|
---|
| 29 |
|
---|
| 30 | q = p + strspn(p, sepset); /* skip leading separators */
|
---|
| 31 |
|
---|
| 32 | if (*q == '\0') /* return if no tokens remain */
|
---|
| 33 | return(NULL);
|
---|
| 34 |
|
---|
| 35 | if ((r = strpbrk(q, sepset)) == NULL) /* move past token */
|
---|
| 36 | savept = 0; /* indicate this is last token */
|
---|
| 37 | else {
|
---|
| 38 | *r = '\0';
|
---|
| 39 | savept = ++r;
|
---|
| 40 | }
|
---|
| 41 |
|
---|
| 42 | return(q);
|
---|
| 43 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.