15 lines
265 B
C
15 lines
265 B
C
#include <fx/ds/uuid.h>
|
|
#include <stdio.h>
|
|
|
|
int main(void)
|
|
{
|
|
fx_uuid *uuid = fx_uuid_create_from_cstr(
|
|
"5b80ad1f-367f-4a1f-88f3-b3a6f8d1f63d");
|
|
char str[FX_UUID_STRING_MAX];
|
|
fx_uuid_to_cstr(uuid, str);
|
|
printf("%s\n", str);
|
|
|
|
fx_uuid_unref(uuid);
|
|
return 0;
|
|
}
|