Final file naming tweaks

This commit is contained in:
Willy-JL
2023-09-02 18:27:40 +02:00
parent c30f8a5e89
commit 6caf8a6432
3 changed files with 18 additions and 6 deletions

View File

@@ -19,8 +19,10 @@ void name_generator_make_auto(char* name, size_t max_name_size, const char* pref
*
* @param name buffer to write random name
* @param max_name_size length of given buffer
* @param[in] prefix The prefix of the name
*/
void name_generator_make_random(char* name, size_t max_name_size);
void name_generator_make_random_prefixed(char* name, size_t max_name_size, const char* prefix);
/** Generates detailed name
*
@@ -32,4 +34,4 @@ void name_generator_make_detailed(char* name, size_t max_name_size, const char*
#ifdef __cplusplus
}
#endif
#endif