ds: string: add verbs to function names

This commit is contained in:
2026-04-20 22:03:11 +01:00
parent c39f50a0ee
commit 321622ac16
6 changed files with 133 additions and 51 deletions
+2 -2
View File
@@ -188,7 +188,7 @@ fx_uuid *fx_uuid_create_from_uuid_bytes(const union fx_uuid_bytes *bytes)
fx_uuid *fx_uuid_create_from_string(const fx_string *string)
{
return fx_uuid_create_from_cstr(fx_string_ptr(string));
return fx_uuid_create_from_cstr(fx_string_get_cstr(string));
}
/*** VIRTUAL FUNCTIONS ********************************************************/
@@ -207,7 +207,7 @@ static void uuid_to_string(const fx_object *uuid, fx_stream *out)
{
char str[FX_UUID_STRING_MAX];
fx_uuid_to_cstr(uuid, str);
fx_stream_write_string(out, str, NULL);
fx_stream_write_cstr(out, str, NULL);
}
/*** CLASS DEFINITION *********************************************************/