Whamcloud - gitweb
Many files:
[tools/e2fsprogs.git] / lib / uuid / uuid.h
1 /*
2  * Public include file for the UUID library
3  * 
4  * Copyright (C) 1996, 1997 Theodore Ts'o.
5  *
6  * %Begin-Header%
7  * This file may be redistributed under the terms of the GNU Public
8  * License.
9  * %End-Header%
10  */
11
12 typedef unsigned char uuid_t[16];
13
14 /* clear.c */
15 void uuid_clear(uuid_t uu);
16
17 /* compare.c */
18 int uuid_compare(uuid_t uu1, uuid_t uu2);
19
20 /* copy.c */
21 void uuid_copy(uuid_t uu1, uuid_t uu2);
22
23 /* gen_uuid.c */
24 void uuid_generate(uuid_t out);
25
26 /* isnull.c */
27 int uuid_is_null(uuid_t uu);
28
29 /* parse.c */
30 int uuid_parse(char *in, uuid_t uu);
31
32 /* unparse.c */
33 void uuid_unparse(uuid_t uu, char *out);
34
35
36