#include <string.h>
#include "Strn.h"
Go to the source code of this file.
◆ strntokc()
Definition at line 92 of file strtokc.c.
93{
95 const char *cp2;
100
102 lim =
dst + tokenSize - 1;
103
104 if (parsestr ==
NULL)
106 else
108
111 goto done;
112 }
113
114
116next1:
119
121 goto done;
122 }
123 for (cp2 = delims; ; ) {
125 if (c2 == '\0') {
126
127
128
132 goto starttok;
133 }
135
136
137 goto next1;
138 }
139 }
140
141 }
142
143starttok:
147
149 break;
150 }
151 for (cp2 = delims; ; ) {
153 if (c2 == '\0') {
154
155
156
157 break;
158 }
160
161
164 goto done;
165 }
166 }
169 }
170
171done:
174
175#if (STRN_ZERO_PAD == 1)
176
179#endif
180
182}
unsigned int(__cdecl typeof(jpeg_read_scanlines))(struct jpeg_decompress_struct *
◆ strtokc()
Definition at line 7 of file strtokc.c.
8{
10 const char *cp2;
13
16 else
18
22 }
23
24
26next1:
29
32 }
33 for (cp2 = delims; ; ) {
35 if (c2 == '\0') {
36
37
38
40 goto starttok;
41 }
43
44
45 goto next1;
46 }
47 }
48
49 }
50
51starttok:
55
57 break;
58 }
59 for (cp2 = delims; ; ) {
61 if (c2 == '\0') {
62
63
64
65 break;
66 }
68
69
73 }
74 }
75 }
77}