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

12 lines
131 B
C
Raw Normal View History

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