From 77035fbdbd3df689f7514e2f2d620d3f0484ccdb Mon Sep 17 00:00:00 2001 From: Al Date: Mon, 2 Jan 2017 02:23:21 -0500 Subject: [PATCH] [strings] adding utf8_is_whitespace to the header so it can be referenced from multiple files --- src/string_utils.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/string_utils.h b/src/string_utils.h index 32b57c3d..537d6a20 100644 --- a/src/string_utils.h +++ b/src/string_utils.h @@ -88,6 +88,7 @@ bool utf8_is_letter_or_number(int cat); bool utf8_is_punctuation(int cat); bool utf8_is_symbol(int cat); bool utf8_is_separator(int cat); +bool utf8_is_whitespace(int32_t ch); bool string_is_ignorable(char *str, size_t len);