renamed some functions

This commit is contained in:
2025-07-19 03:38:33 +03:00
parent f7b0b53d05
commit c0c845bee8
4 changed files with 6 additions and 6 deletions

View File

@@ -1,6 +1,6 @@
#include "string/StringBuilder.h"
void StringBuilder_free(StringBuilder* b){
void StringBuilder_destroy(StringBuilder* b){
free(b->buffer.data);
b->buffer = List_construct_size(NULL, 0, 0);
}