summaryrefslogtreecommitdiff
path: root/src/runtime/c/gu/utf8.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/runtime/c/gu/utf8.h')
-rw-r--r--src/runtime/c/gu/utf8.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/runtime/c/gu/utf8.h b/src/runtime/c/gu/utf8.h
index 3ad28946d..be3ab0412 100644
--- a/src/runtime/c/gu/utf8.h
+++ b/src/runtime/c/gu/utf8.h
@@ -40,10 +40,4 @@ gu_utf8_encode(GuUCS ucs, uint8_t** buf);
void
gu_in_utf8_buf(uint8_t** buf, GuIn* in, GuExn* err);
-static inline bool
-gu_is_space(uint8_t c) {
- return (c == '\t' || c == '\n' || c == '\v' ||
- c == '\f' || c == '\r' || c == ' ');
-}
-
#endif // GU_UTF8_H_