collection structs name replaced with macro

This commit is contained in:
2025-07-24 12:56:53 +03:00
parent 2dd6316b7b
commit eb6432470c
11 changed files with 47 additions and 43 deletions

View File

@@ -125,7 +125,7 @@ str str_toLower(str src){
return r;
}
str hex_to_str(Array buf, bool uppercase){
str hex_to_str(Array(u8) buf, bool uppercase){
StringBuilder sb = StringBuilder_alloc(buf.size * 2 + 1);
StringBuilder_append_memory(&sb, buf, uppercase);
return StringBuilder_getStr(&sb);