blob: eaa7e7f62af55ca5dda00c70546d60422423c130 [file]
/**
* This file has no copyright assigned and is placed in the Public Domain.
* This file is part of the mingw-w64 runtime package.
* No warranty is given; refer to the file DISCLAIMER.PD within this package.
*/
#define _CTYPE_DISABLE_MACROS
#include <wctype.h>
int __cdecl __iswcsymf(wint_t c)
{
return iswalpha(c) || c == L'_';
}
int (__cdecl *__MINGW_IMP_SYMBOL(__iswcsymf))(wint_t) = __iswcsymf;