random_name.h 281 B

1234567891011121314151617
  1. #pragma once
  2. #include <stdint.h>
  3. #ifdef __cplusplus
  4. extern "C" {
  5. #endif
  6. /** Generates random name
  7. * @param name buffer to write random name
  8. * @param max_name_size length of given buffer
  9. */
  10. void set_random_name(char* name, uint8_t max_name_size);
  11. #ifdef __cplusplus
  12. }
  13. #endif