| typedef unsigned char uuid_t[16]; | |
| extern "C" { | |
| void uuid_clear(uuid_t uu); | |
| int uuid_compare(const uuid_t uu1, const uuid_t uu2); | |
| void uuid_copy(uuid_t dst, const uuid_t src); | |
| void uuid_generate(uuid_t out); | |
| int uuid_is_null(const uuid_t uu); | |
| int uuid_parse(const char *in, uuid_t uu); | |
| void uuid_unparse(const uuid_t uu, char *out); | |
| void uuid_unparse_lower(const uuid_t uu, char *out); | |
| void uuid_unparse_upper(const uuid_t uu, char *out); | |
| int uuid_type(const uuid_t uu); | |
| int uuid_variant(const uuid_t uu); | |
| } | |