From 365c7bb1d867b6080f8f75ae6bd4e5f68522a1be Mon Sep 17 00:00:00 2001 From: krasimir Date: Fri, 8 May 2015 09:23:29 +0000 Subject: the parser is now fully Unicode compatible --- src/runtime/c/gu/utf8.h | 6 ------ 1 file changed, 6 deletions(-) (limited to 'src/runtime/c/gu') 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_ -- cgit v1.2.3