Generate device name

This commit is contained in:
2024-07-27 15:31:17 +02:00
parent 0e32622720
commit 900b436856
10 changed files with 249 additions and 3 deletions

@ -0,0 +1,21 @@
/**
* Random utilities
*/
#pragma once
#include <stddef.h>
#ifdef __cplusplus
extern "C"
{
#endif
/**
* Generate random string of given size
*/
void rand_str(size_t len, char *dest);
#ifdef __cplusplus
}
#endif