Amend start of comments in lookup_string_in_fixed_set.c

This commit is contained in:
Tim Rühsen 2017-09-15 17:12:31 +02:00 committed by Dagobert Michelsen
parent 4bcbb57936
commit 7785d6edb2
1 changed files with 2 additions and 2 deletions

View File

@ -29,7 +29,7 @@ static const char multibyte_length_table[16] = {
}; };
/** /*
* Get length of multibyte character sequence starting at a given byte. * 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. * 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]; return multibyte_length_table[((unsigned char)c) >> 4];
} }
/** /*
* Moves pointers one byte forward. * Moves pointers one byte forward.
*/ */
static void NextPos(const unsigned char** pos, static void NextPos(const unsigned char** pos,