blob: a45ecbaad1fbc03f4b384e8ffea13224ab9c01e9 [file]
#define _CTYPE_DISABLE_MACROS
#include <ctype.h>
/**
* Calls to `_isctype ('\t', _BLANK)` return inconsistent results
* depending on CRT and active locale.
*
* In all CRTs it returns zero in "C" locale and non-zero otherwise.
*/
int __cdecl isblank (int _C)
{
return (_isctype(_C, _BLANK) || _C == '\t');
}
int (__cdecl *__MINGW_IMP_SYMBOL(isblank))(int) = isblank;