Skip to content

Commit

Permalink
is_escape_char now inline function
Browse files Browse the repository at this point in the history
  • Loading branch information
ppomes committed Sep 9, 2024
1 parent 4943088 commit 28f2627
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main/myanon.c
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ char *mystrcpy(char *dest, const char *src, size_t size)
return dest;
}

static int is_escape_char(char c)
static inline int is_escape_char(char c)
{
return c == '\\';
}
Expand Down

0 comments on commit 28f2627

Please sign in to comment.