ReactOS 0.4.15-dev-7934-g1dc8d80
wcscspn.c File Reference
#include <precomp.h>
Include dependency graph for wcscspn.c:

Go to the source code of this file.

Functions

size_t CDECL wcscspn (const wchar_t *str, const wchar_t *reject)
 

Function Documentation

◆ wcscspn()

size_t CDECL wcscspn ( const wchar_t str,
const wchar_t reject 
)

Definition at line 16 of file wcscspn.c.

17{
18 wchar_t *s;
19 wchar_t *t;
20 s=(wchar_t *)str;
21 while (*s) {
22 t=(wchar_t *)reject;
23 while (*t) {
24 if (*t==*s)
25 break;
26 t++;
27 }
28 if (*t)
29 break;
30 s++;
31 }
32 return s-str; /* nr of wchars */
33}
GLdouble s
Definition: gl.h:2039
GLdouble GLdouble t
Definition: gl.h:2047
const WCHAR * str