mirror of
https://github.com/reactos/reactos.git
synced 2025-03-01 03:45:16 +00:00
7 lines
127 B
C
7 lines
127 B
C
#define __NO_CTYPE_LINES
|
|
#include <ctype.h>
|
|
|
|
int __cdecl isblank (int _C)
|
|
{
|
|
return (_isctype(_C, _BLANK) || _C == '\t');
|
|
}
|