aboutsummaryrefslogtreecommitdiff
path: root/include/util/token.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/util/token.h')
-rw-r--r--include/util/token.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/include/util/token.h b/include/util/token.h
new file mode 100644
index 00000000..bdfdaf45
--- /dev/null
+++ b/include/util/token.h
@@ -0,0 +1,9 @@
+#ifndef UTIL_TOKEN_H
+#define UTIL_TOKEN_H
+
+#include <stdbool.h>
+
+#define TOKEN_STRLEN 33
+bool generate_token(char out[static TOKEN_STRLEN]);
+
+#endif