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