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,