1
0
Fork 0
mirror of https://github.com/reactos/reactos.git synced 2025-07-07 08:58:30 +00:00
reactos/lib/sdk/crt/mbstring/islead.c

12 lines
128 B
C
Raw Normal View History

#include <precomp.h>
#include <mbstring.h>
/*
* @implemented
*/
int isleadbyte(int c)
{
return _isctype( c, _MLEAD );
}