util/token: add docs

master
Simon Ser 1 year ago committed by Kirill Primak
parent 55be74ad86
commit 2410710a0f

@ -3,8 +3,14 @@
#include <stdbool.h> #include <stdbool.h>
/**
* Number of bytes used by a token, including the terminating zero byte.
*/
#define TOKEN_SIZE 33 #define TOKEN_SIZE 33
/**
* Generate a random token string.
*/
bool generate_token(char out[static TOKEN_SIZE]); bool generate_token(char out[static TOKEN_SIZE]);
#endif #endif

Loading…
Cancel
Save