mirror of
https://github.com/hyprwm/wlroots-hyprland.git
synced 2024-11-22 12:55:58 +01:00
util/token: add docs
This commit is contained in:
parent
55be74ad86
commit
2410710a0f
1 changed files with 6 additions and 0 deletions
|
@ -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…
Reference in a new issue