util: add support for generating UUIDs

Co-authored-by: Jason Francis <cycl0ps@tuta.io>
This commit is contained in:
Ilia Bozhinov 2021-01-05 20:11:23 +01:00 committed by Simon Ser
parent 3721dbfddb
commit bf4e2e0eac
7 changed files with 55 additions and 0 deletions

8
include/util/uuid.h Normal file
View file

@ -0,0 +1,8 @@
#ifndef UTIL_UUID_H
#define UTIL_UUID_H
#include <stdbool.h>
bool generate_uuid(char out[static 37]);
#endif