aboutsummaryrefslogtreecommitdiff
path: root/include/util/token.h
blob: bdfdaf45ab2f3dce8780cc254f382a6b822b01b4 (plain)
1
2
3
4
5
6
7
8
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