Moved backspace() & append()

This commit is contained in:
Alex
2022-11-16 16:03:09 +02:00
parent 786a8432c0
commit 4d874a3e81
3 changed files with 17 additions and 13 deletions

View File

@ -13,6 +13,9 @@ extern "C"
void swap(char *x, char *y);
char *reverse(char *Buffer, int i, int j);
void backspace(char s[]);
void append(char s[], char n);
int atoi(const char *String);
double atof(const char *String);
char *itoa(int Value, char *Buffer, int Base);