1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-04-20 10:51:48 +02:00

maint: simplify c32issep

* src/system.h (c32issep): Avoid unnecessary ‘!!’.
This commit is contained in:
Paul Eggert
2026-04-05 15:51:36 -07:00
parent 793f45e916
commit cff1fa2239

View File

@@ -180,7 +180,7 @@ c32issep (char32_t wc)
#if defined __GLIBC__
return !! c32isblank (wc);
#else
return !! (c32isspace (wc) && ! c32isvertspace (wc) && ! c32isnbspace (wc));
return c32isspace (wc) && ! c32isvertspace (wc) && ! c32isnbspace (wc);
#endif
}