1
1
mirror of https://github.com/theoludwig/programming-challenges.git synced 2025-05-18 12:02:53 +02:00

fix(solutions): fix: more memory issues thanks to -fsanitize=address flag with gcc

This commit is contained in:
2023-08-21 21:37:54 +02:00
parent 395cd142b8
commit d73ae4dd07
14 changed files with 1020 additions and 851 deletions

View File

@ -13,13 +13,4 @@
*/
void character_append(char* string, char character);
/**
* @brief Append many characters to a string, assuming string points to an array
* with enough space.
*
* @param string
* @param characters
*/
void character_append_many(char* string, char* characters);
#endif