Skip to content

Commit

Permalink
Fix code style.
Browse files Browse the repository at this point in the history
Have type, function name and argument declaration on a single line.
  • Loading branch information
SvenMichaelKlose committed Jul 15, 2024
1 parent 9558eba commit aed94d2
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions libsrc/common/stpcpy.c
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
#include <string.h>

char * __fastcall__
stpcpy (char * dst, const char * src)
char * __fastcall__ stpcpy (char * dst, const char * src)
{
strcpy (dst, src);
return dst + strlen (src);
Expand Down

0 comments on commit aed94d2

Please sign in to comment.