mirror of
https://github.com/reactos/reactos.git
synced 2024-11-01 12:26:32 +00:00
23 lines
441 B
C
23 lines
441 B
C
/*
|
|
* COPYRIGHT: See COPYING in the top level directory
|
|
* PROJECT: ReactOS system libraries
|
|
* FILE: lib/sdk/crt/mbstring/islwr.c
|
|
* PURPOSE:
|
|
* PROGRAMER:
|
|
* UPDATE HISTORY:
|
|
* 12/04/99: Ariadne Created
|
|
* 05/30/08: Samuel Serapion adapted from PROJECT C Library
|
|
*
|
|
*/
|
|
|
|
#include <precomp.h>
|
|
|
|
/*
|
|
* @implemented
|
|
*/
|
|
int _ismbclower( unsigned int c )
|
|
{
|
|
return ((c) >= 0x8281 && (c) <= 0x829a);
|
|
|
|
}
|