1UUID_UNPARSE(3) Library Functions Manual UUID_UNPARSE(3)
2
3
4
6 uuid_unparse - convert an UUID from binary representation to a string
7
9 #include <uuid/uuid.h>
10
11 void uuid_unparse(uuid_t uu, char *out);
12 void uuid_unparse_upper(uuid_t uu, char *out);
13 void uuid_unparse_lower(uuid_t uu, char *out);
14
16 The uuid_unparse function converts the supplied UUID uu from the binary
17 representation into a 36-byte string (plus tailing '\0') of the form
18 1b4e28ba-2fa1-11d2-883f-b9a76 and stores this value in the character
19 string pointed to by out. The case of the hex digits returned by
20 uuid_unparse may be upper or lower case, and is dependent on the sys‐
21 tem-dependent local default.
22
23 If the case of the hex digits is important then the functions
24 uuid_unparse_upper and uuid_unparse_lower may be used.
25
27 OSF DCE 1.1
28
30 Theodore Y. Ts'o
31
33 http://e2fsprogs.sourceforge.net/ ⟨http://e2fsprogs.sourceforge.net/⟩
34
36 uuid(3), uuid_clear(3), uuid_compare(3), uuid_copy(3), uuid_gener‐
37 ate(3), uuid_time(3), uuid_is_null(3), uuid_parse(3)
38
39
40
41E2fsprogs version 1.40.2 July 2007 UUID_UNPARSE(3)