X-Git-Url: http://git.jankratochvil.net/?p=reactos.git;a=blobdiff_plain;f=lib%2Fcrtdll%2Fctype%2Fispunct.c;h=5a06ae4a16ad265e18a81a051d58ed3c759211e9;hp=57f0ab1244a8f4faef64e1fae3cacaf5339e9d82;hb=03af8776dc14167b078911b0c7c5327d1bcdd128;hpb=f4077c1bf64ef89d74a8d4822d2d7aada3ba9927 diff --git a/lib/crtdll/ctype/ispunct.c b/lib/crtdll/ctype/ispunct.c index 57f0ab1..5a06ae4 100644 --- a/lib/crtdll/ctype/ispunct.c +++ b/lib/crtdll/ctype/ispunct.c @@ -1,14 +1,15 @@ /* Copyright (C) 1995 DJ Delorie, see COPYING.DJ for details */ -#include +#include + #undef ispunct int ispunct(int c) { - return _isctype(c,_PUNCT); + return _isctype(c, _PUNCT); } #undef iswpunct int iswpunct(wint_t c) { - return iswctype(c,_PUNCT); + return iswctype(c, _PUNCT); }