#include <string.h>
Go to the source code of this file.
◆ _STRCSPN
◆ _STRPBRK
◆ _STRSPN
◆ ROUTINE
◆ strspn()
Definition at line 103 of file strspn.c.
112{
113 const unsigned char *
str = (
unsigned char const*)
string;
114 const unsigned char *
ctrl = (
unsigned char const*)
control;
115
116 unsigned char map[32];
118
119
122
123
125 {
128 }
129
130#if ROUTINE == _STRSPN
131
132
134 {
136 while (
map[*
str >> 3] & (1 << (*
str & 7)))
137 {
140 }
142 }
143 return(0);
144
145#elif ROUTINE == _STRCSPN
146
147
150 while (!(
map[*
str >> 3] & (1 << (*
str & 7))))
151 {
154 }
156
157#else
158
159
161 {
165 }
167
168#endif
169
170}
GLuint GLuint GLsizei count