diff options
Diffstat (limited to 'lib/uuid/uuid.h')
-rw-r--r-- | lib/uuid/uuid.h | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/lib/uuid/uuid.h b/lib/uuid/uuid.h new file mode 100644 index 00000000..9568c03f --- /dev/null +++ b/lib/uuid/uuid.h @@ -0,0 +1,29 @@ +/* + * Public include file for the UUID library + */ + +typedef unsigned char uuid_t[16]; + +/* clear.c */ +void uuid_clear(uuid_t uu); + +/* compare.c */ +int uuid_compare(uuid_t uu1, uuid_t uu2); + +/* copy.c */ +void uuid_copy(uuid_t uu1, uuid_t uu2); + +/* gen_uuid.c */ +void uuid_generate(uuid_t out); + +/* isnull.c */ +int uuid_is_null(uuid_t uu); + +/* parse.c */ +int uuid_parse(char *in, uuid_t uu); + +/* unparse.c */ +void uuid_unparse(uuid_t uu, char *out); + + + |