diff options
Diffstat (limited to 'src/string_func.h')
-rw-r--r-- | src/string_func.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/string_func.h b/src/string_func.h index b2e88f52b..802b62e50 100644 --- a/src/string_func.h +++ b/src/string_func.h @@ -118,6 +118,15 @@ void str_strip_colours(char *str); void strtolower(char *str); /** + * Checks whether the given string is valid, i.e. contains only + * valid (printable) characters and is properly terminated. + * @param str The string to validate. + * @param last The last character of the string, i.e. the string + * must be terminated here or earlier. + */ +bool StrValid(const char *str, const char *last); + +/** * Check if a string buffer is empty. * * @param s The pointer to the firste element of the buffer |