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
parent a12bd1d2a6
commit c7a48a0bf8
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.
* 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,