From 7785d6edb29ffb8a04ce6bc4892e4fc246340be5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim=20R=C3=BChsen?= Date: Fri, 15 Sep 2017 17:12:31 +0200 Subject: [PATCH] Amend start of comments in lookup_string_in_fixed_set.c --- src/lookup_string_in_fixed_set.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lookup_string_in_fixed_set.c b/src/lookup_string_in_fixed_set.c index 2f68bd7..0bc3f9e 100644 --- a/src/lookup_string_in_fixed_set.c +++ b/src/lookup_string_in_fixed_set.c @@ -29,7 +29,7 @@ static const char multibyte_length_table[16] = { }; -/** +/* * Get length of multibyte character sequence starting at a given byte. * Returns zero if the byte is not a valid leading byte in UTF-8. */ @@ -37,7 +37,7 @@ static int GetMultibyteLength(char c) { return multibyte_length_table[((unsigned char)c) >> 4]; } -/** +/* * Moves pointers one byte forward. */ static void NextPos(const unsigned char** pos,