logging works ( but it's buggy 😭 )

This commit is contained in:
FantasyPvP
2024-12-05 01:42:50 +00:00
parent ad8496ca68
commit 3f35a00526
12 changed files with 786 additions and 44 deletions
+3 -1
View File
@@ -70,7 +70,9 @@ String_t str_new();
* This allocates new memory that must be freed
* @param self Pointer to the String_t to clone
*/
String_t str_clone();
String_t str_clone(String_t* self);
String_t* str_clone_all(String_t* strings, int len);
/**
* Creates a new string containing a slice of an existing string.