This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
tango-kni/common/test/test_uuid.cpp

12 lines
240 B
C++

#include <stdio.h>
#include "uuid/uuid.h"
int main(){
for(int i = 0; i < 10; i++){
uuid_t uu;
char buf[37];
uuid_generate_random(uu);
uuid_unparse(uu, buf);
printf("uuid is: %s\n", buf);
}
}