diff options
author | Ilia Bozhinov <ammen99@gmail.com> | 2021-01-05 20:11:23 +0100 |
---|---|---|
committer | Simon Ser <contact@emersion.fr> | 2021-01-05 20:32:56 +0100 |
commit | bf4e2e0eac4b336747979dbda30d4f328ab0bf3d (patch) | |
tree | 6c373b31e2ddb97dbea3a5a5c6bff4b1a09b93c0 /include/util | |
parent | 3721dbfddb0e21c29688bccf11725d337f45a05c (diff) |
util: add support for generating UUIDs
Co-authored-by: Jason Francis <cycl0ps@tuta.io>
Diffstat (limited to 'include/util')
-rw-r--r-- | include/util/uuid.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/include/util/uuid.h b/include/util/uuid.h new file mode 100644 index 00000000..2fecb407 --- /dev/null +++ b/include/util/uuid.h @@ -0,0 +1,8 @@ +#ifndef UTIL_UUID_H +#define UTIL_UUID_H + +#include <stdbool.h> + +bool generate_uuid(char out[static 37]); + +#endif |