00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015 #ifndef UUID_H
00016 #define UUID_H
00017
00018 #define UUID_LEN 16
00019
00020 int uuid_str2bin(const char *str, u8 *bin);
00021 int uuid_bin2str(const u8 *bin, char *str, size_t max_len);
00022 int is_nil_uuid(const u8 *uuid);
00023
00024 #endif