mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-11-24 05:23:06 +00:00
17 lines
No EOL
280 B
C
17 lines
No EOL
280 B
C
#pragma once
|
|
|
|
#include <stdint.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/** Generates random name
|
|
* @param name buffer to write random name
|
|
* @param max_name_size length of given buffer
|
|
*/
|
|
void set_random_name(char* name, uint8_t max_name_size);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif |