X-Git-Url: http://git.jankratochvil.net/?p=reactos.git;a=blobdiff_plain;f=lib%2Fmsvcrt%2Fctype%2Fislower.c;fp=lib%2Fmsvcrt%2Fctype%2Fislower.c;h=34cc31af140cfc099d57ac39fb45a4e4dbde80e5;hp=c3a917850a276ac3d1d611e349be93350d28c160;hb=e3ed2d773259cc445c7ff8181ebd934931365328;hpb=d378c68f5a9bb25c9e671dacd482d2e25d211df3 diff --git a/lib/msvcrt/ctype/islower.c b/lib/msvcrt/ctype/islower.c index c3a9178..34cc31a 100644 --- a/lib/msvcrt/ctype/islower.c +++ b/lib/msvcrt/ctype/islower.c @@ -1,13 +1,14 @@ /* Copyright (C) 1995 DJ Delorie, see COPYING.DJ for details */ #include + #undef islower int islower(int c) { - return _isctype(c,_LOWER); + return _isctype(c, _LOWER); } int iswlower(wint_t c) { - return iswctype(c,_LOWER); + return iswctype(c, _LOWER); }