--- a/src/string.c Sun Dec 22 22:53:53 2024 +0100 +++ b/src/string.c Sun Dec 22 23:10:07 2024 +0100 @@ -63,10 +63,6 @@ return (cxstring) {cstring, length}; } -cxstring cx_strcast(cxmutstr str) { - return (cxstring) {str.ptr, str.length}; -} - void cx_strfree(cxmutstr *str) { if (str == NULL) return; free(str->ptr);