X-Git-Url: http://git.jankratochvil.net/?a=blobdiff_plain;f=lib%2Fcrtdll%2Fctype%2Fisdigit.c;h=e84881d49a6312f751051d5cf67bb5603977cef1;hb=e3ed2d773259cc445c7ff8181ebd934931365328;hp=93afd37f38d7c8fc12c0489c5cf0690117fc3c0d;hpb=d378c68f5a9bb25c9e671dacd482d2e25d211df3;p=reactos.git diff --git a/lib/crtdll/ctype/isdigit.c b/lib/crtdll/ctype/isdigit.c index 93afd37..e84881d 100644 --- a/lib/crtdll/ctype/isdigit.c +++ b/lib/crtdll/ctype/isdigit.c @@ -1,14 +1,15 @@ /* Copyright (C) 1995 DJ Delorie, see COPYING.DJ for details */ -#include +#include + #undef isdigit int isdigit(int c) { - return _isctype(c,_DIGIT); + return _isctype(c, _DIGIT); } #undef iswdigit int iswdigit(wint_t c) { - return iswctype(c,_DIGIT); + return iswctype(c, _DIGIT); }