ReactOS 0.4.16-dev-937-g7afcd2a
wcsspn.cpp File Reference
#include <string.h>
Include dependency graph for wcsspn.cpp:

Go to the source code of this file.

Functions

size_t __cdecl wcsspn (wchar_t const *const string, wchar_t const *const control)
 

Function Documentation

◆ wcsspn()

size_t __cdecl wcsspn ( wchar_t const *const  string,
wchar_t const *const  control 
)

Definition at line 16 of file wcsspn.cpp.

20{
21 wchar_t const* string_it = string;
22 for (; *string_it; ++string_it)
23 {
24 for (wchar_t const* control_it = control; *string_it != *control_it; ++control_it)
25 {
26 // Reached the end of the control string without finding a match:
27 if (*control_it == 0)
28 {
29 return static_cast<size_t>(string_it - string);
30 }
31 }
32 }
33
34 // The whole string consisted of characters from the control:
35 return static_cast<size_t>(string_it - string);
36}
char string[160]
Definition: util.h:11
Definition: dialog.c:52