Skip to content

Commit

Permalink
patt.c: fix function signature formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
ejv2 committed Jan 19, 2023
1 parent 50fea38 commit 94e99f2
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions patt.c
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,8 @@ date_pattern_run(union sample_space samples, unsigned long count)
}
}

int alphabet_pattern_match(const wchar_t rune,
int
alphabet_pattern_match(const wchar_t rune,
struct alpha_matcher_state *state, int arg)
{
/* do not accept arguments of multiple chars */
Expand All @@ -193,7 +194,8 @@ int alphabet_pattern_match(const wchar_t rune,
return iswalpha(rune);
}

void alphabet_pattern_run(union sample_space samples, long count)
void
alphabet_pattern_run(union sample_space samples, long count)
{
wchar_t cur, diff;
long i;
Expand Down

0 comments on commit 94e99f2

Please sign in to comment.