ReactOS 0.4.15-dev-7958-gcd0bb1a
skip_ws.cpp File Reference
#include <string.h>
#include "skip_ws.h"
Include dependency graph for skip_ws.cpp:

Go to the source code of this file.

Functions

charskip_ws (char *p)
 
const charskip_ws (const char *p)
 

Variables

const charws = " \t\r\n\v"
 

Function Documentation

◆ skip_ws() [1/2]

char * skip_ws ( char p)

Definition at line 9 of file skip_ws.cpp.

10{
11 return p + strspn ( p, ws );
12}
GLfloat GLfloat p
Definition: glext.h:8902
_Check_return_ _CRTIMP size_t __cdecl strspn(_In_z_ const char *_Str, _In_z_ const char *_Control)
const char * ws
Definition: skip_ws.cpp:7

◆ skip_ws() [2/2]

const char * skip_ws ( const char p)

Definition at line 14 of file skip_ws.cpp.

15{
16 return p + strspn ( p, ws );
17}

Variable Documentation

◆ ws