Skip to content

Commit

Permalink
Move stpcpy() to non-standard section.
Browse files Browse the repository at this point in the history
  • Loading branch information
SvenMichaelKlose committed Jul 7, 2024
1 parent 581b79e commit af3ac42
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/string.h
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,6 @@ char* __fastcall__ strchr (const char* s, int c);
int __fastcall__ strcmp (const char* s1, const char* s2);
int __fastcall__ strcoll (const char* s1, const char* s2);
char* __fastcall__ strcpy (char* dest, const char* src);
char* __fastcall__ stpcpy (char* dest, const char* src);
size_t __fastcall__ strcspn (const char* s1, const char* s2);
char* __fastcall__ strerror (int errcode);
size_t __fastcall__ strlen (const char* s);
Expand Down Expand Up @@ -91,6 +90,7 @@ char* __fastcall__ strlower (char* s);
char* __fastcall__ strupr (char* s);
char* __fastcall__ strupper (char* s);
char* __fastcall__ strqtok (char* s1, const char* s2);
char* __fastcall__ stpcpy (char* dest, const char* src);
#endif

const char* __fastcall__ __stroserror (unsigned char errcode);
Expand Down

0 comments on commit af3ac42

Please sign in to comment.