ReactOS 0.4.16-dev-937-g7afcd2a
strspn.c File Reference
#include <string.h>
Include dependency graph for strspn.c:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Macros

#define _STRSPN   1
 
#define _STRCSPN   2
 
#define _STRPBRK   3
 
#define ROUTINE   _STRSPN
 

Functions

size_t __cdecl strspn (const char *string, const char *control)
 

Macro Definition Documentation

◆ _STRCSPN

#define _STRCSPN   2

Definition at line 25 of file strspn.c.

◆ _STRPBRK

#define _STRPBRK   3

Definition at line 26 of file strspn.c.

◆ _STRSPN

#define _STRSPN   1

Definition at line 24 of file strspn.c.

◆ ROUTINE

#define ROUTINE   _STRSPN

Definition at line 33 of file strspn.c.

Function Documentation

◆ strspn()

size_t __cdecl strspn ( const char string,
const char control 
)

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];
117 int count;
118
119 /* Clear out bit map */
120 for (count=0; count<32; count++)
121 map[count] = 0;
122
123 /* Set bits in control map */
124 while (*ctrl)
125 {
126 map[*ctrl >> 3] |= (1 << (*ctrl & 7));
127 ctrl++;
128 }
129
130#if ROUTINE == _STRSPN
131
132 /* 1st char NOT in control map stops search */
133 if (*str)
134 {
135 count=0;
136 while (map[*str >> 3] & (1 << (*str & 7)))
137 {
138 count++;
139 str++;
140 }
141 return(count);
142 }
143 return(0);
144
145#elif ROUTINE == _STRCSPN
146
147 /* 1st char in control map stops search */
148 count=0;
149 map[0] |= 1; /* null chars not considered */
150 while (!(map[*str >> 3] & (1 << (*str & 7))))
151 {
152 count++;
153 str++;
154 }
155 return(count);
156
157#else /* ROUTINE == _STRCSPN */
158
159 /* 1st char in control map stops search */
160 while (*str)
161 {
162 if (map[*str >> 3] & (1 << (*str & 7)))
163 return((char *)str);
164 str++;
165 }
166 return(NULL);
167
168#endif /* ROUTINE == _STRCSPN */
169
170}
Definition: _map.h:48
#define NULL
Definition: types.h:112
GLuint GLuint GLsizei count
Definition: gl.h:1545
#define ctrl
Definition: input.c:1756
const WCHAR * str
Definition: dialog.c:52