1UUID_UNPARSE(3) Programmer's Manual UUID_UNPARSE(3)
2
3
4
6 uuid_unparse - convert a UUID from binary representation to a string
7
9 #include <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
17 binary representation into a 36-byte string (plus trailing '\0') of the
18 form 1b4e28ba-2fa1-11d2-883f-0016d3cca427 and stores this value in the
19 character string pointed to by out. The case of the hex digits returned
20 by uuid_unparse() may be upper or lower case, and is dependent on the
21 system-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 This library unparses UUIDs compatible with OSF DCE 1.1.
28
30 Theodore Y. Ts’o
31
33 uuid(3), uuid_clear(3), uuid_compare(3), uuid_copy(3),
34 uuid_generate(3), uuid_time(3), uuid_is_null(3), uuid_parse(3)
35
37 For bug reports, use the issue tracker at
38 https://github.com/util-linux/util-linux/issues.
39
41 The libuuid library is part of the util-linux package since version
42 2.15.1. It can be downloaded from Linux Kernel Archive
43 <https://www.kernel.org/pub/linux/utils/util-linux/>.
44
45
46
47util-linux 2.38 2022-01-06 UUID_UNPARSE(3)