at least strings and vectors of ints work, not much else though... contributions welcome

This commit is contained in:
Odweta
2024-02-07 11:10:31 +01:00
parent ee6f702751
commit 97a4df95a6
8 changed files with 183 additions and 39 deletions
+2
View File
@@ -15,6 +15,8 @@ string_t *string_from(char *chars); // create a new s
bool_t string_push_chars(string_t *self, char *chars); // append a char_sequence to a string
bool_t string_push(string_t *self, string_t *other); // append a string to a string
void string_deep_copy(string_t *src, string_t *dst);
compare_e string_compare(string_t *left, string_t* right); // compare two strings
void string_print(string_t *self); // print a string