Skip to content

Commit

Permalink
Fix coding style
Browse files Browse the repository at this point in the history
  • Loading branch information
mdboom committed Aug 31, 2022
1 parent ad4de7a commit 18927b1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Parser/tokenizer.c
Original file line number Diff line number Diff line change
Expand Up @@ -492,7 +492,8 @@ static void fp_ungetc(int c, struct tok_state *tok) {
the sequence if yes, 0 if not. The special cases match
those in stringlib/codecs.h:utf8_decode.
*/
static int valid_utf8(const unsigned char* s)
static int
valid_utf8(const unsigned char* s)
{
int expected = 0;
int length;
Expand Down

0 comments on commit 18927b1

Please sign in to comment.