mirror of
https://git.musl-libc.org/git/musl
synced 2025-02-24 06:04:36 +03:00
iswspace: fix handling of 0
This commit is contained in:
parent
35cf8b3e73
commit
d8e8f1464c
@ -14,6 +14,5 @@ int iswspace(wint_t wc)
|
|||||||
0x2006, 0x2008, 0x2009, 0x200a,
|
0x2006, 0x2008, 0x2009, 0x200a,
|
||||||
0x2028, 0x2029, 0x205f, 0x3000, 0
|
0x2028, 0x2029, 0x205f, 0x3000, 0
|
||||||
};
|
};
|
||||||
if (wcschr(spaces, wc)) return 1;
|
return wc && wcschr(spaces, wc);
|
||||||
return 0;
|
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user