aboutsummaryrefslogtreecommitdiffstats
path: root/libcharconv_latin.c
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--libcharconv_latin.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/libcharconv_latin.c b/libcharconv_latin.c
index 2668ab1..5e90e1e 100644
--- a/libcharconv_latin.c
+++ b/libcharconv_latin.c
@@ -882,6 +882,12 @@ libcharconv_latin(const char *s, size_t slen, size_t *n, uint_least32_t *cp, siz
/* control characters (conditional characters) */
case UINT32_C(0x00AD): c1 = 'S'; c2 = 'H'; c3 = 'Y'; goto conv3;
+ /* invisible */
+ case UINT32_C(0x2061): c = (uint_least32_t)'('; goto conv;
+ case UINT32_C(0x2062): c = (uint_least32_t)'*'; goto conv;
+ case UINT32_C(0x2063): c = (uint_least32_t)'|'; goto conv;
+ case UINT32_C(0x2064): c = (uint_least32_t)'+'; goto conv;
+
default:
no_match:
*n += clen;