add all old corelib tests
This commit is contained in:
12
object-test/uuids.c
Normal file
12
object-test/uuids.c
Normal file
@@ -0,0 +1,12 @@
|
||||
#include <blue/object/uuid.h>
|
||||
#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);
|
||||
return 0;
|
||||
}
|
||||
Reference in New Issue
Block a user