MCPcopy Create free account
hub / github.com/coreutils/coreutils / c32isnbspace

Function c32isnbspace

src/system.h:156–161  ·  view source on GitHub ↗

Return non zero if a non breaking space. */

Source from the content-addressed store, hash-verified

154
155/* Return non zero if a non breaking space. */
156ATTRIBUTE_PURE
157static inline int
158c32isnbspace (char32_t wc)
159{
160 return wc == 0x00A0 || wc == 0x2007 || wc == 0x202F || wc == 0x2060;
161}
162
163ATTRIBUTE_PURE
164static inline int

Callers 3

c32issepFunction · 0.85
simple_strtod_humanFunction · 0.85
maybe_c32isnbspaceFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected