ds: string: add verbs to function names
This commit is contained in:
@@ -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 *********************************************************/
|
||||
|
||||
Reference in New Issue
Block a user