2025-08-09 19:57:42 +01:00
|
|
|
#include <blue/ds/uuid.h>
|
2024-10-24 21:33:19 +01:00
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
|
|
int main(void)
|
|
|
|
|
{
|
|
|
|
|
b_uuid *uuid = b_uuid_create_from_cstr(
|
|
|
|
|
"5b80ad1f-367f-4a1f-88f3-b3a6f8d1f63d");
|
|
|
|
|
char str[B_UUID_STRING_MAX];
|
|
|
|
|
b_uuid_to_cstr(uuid, str);
|
|
|
|
|
printf("%s\n", str);
|
2024-10-27 19:43:05 +00:00
|
|
|
|
2025-10-19 21:02:52 +01:00
|
|
|
b_uuid_unref(uuid);
|
2024-10-24 21:33:19 +01:00
|
|
|
return 0;
|
|
|
|
|
}
|