Skip to content

Commit 11db2c3

Browse files
committed
doc: improve getUserInputStr function documentation
1 parent ff3f2ef commit 11db2c3

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

libs/utilities.h

+4-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,10 @@ void destroy2DArray(char** arr, int rows, int cols);
3737
* string as input and returns an integer. The validator function should return
3838
* 1 if the input is valid, and 0 otherwise.
3939
*
40-
* @return A pointer to the string entered by the user.
40+
* @return A pointer to the string entered by the user dynamically allocated in memory.
41+
*
42+
* @warning Ensure to free the returned pointer after use with the appropriate deallocation
43+
* functions to avoid memory leaks.
4144
*/
4245
char* getUserInputStr(char* message, char* onInvalidMessage, int strLength,
4346
int (*validator)(char* userInput));

0 commit comments

Comments
 (0)