diff options
Diffstat (limited to 'src/string_func.h')
-rw-r--r-- | src/string_func.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/string_func.h b/src/string_func.h index 04f752921..a8bf897a8 100644 --- a/src/string_func.h +++ b/src/string_func.h @@ -95,7 +95,7 @@ char *CDECL str_fmt(const char *str, ...); /** Scans the string for valid characters and if it finds invalid ones, * replaces them with a question mark '?' */ -void str_validate(char *str); +void str_validate(char *str, bool allow_newlines = false); /** Scans the string for colour codes and strips them */ void str_strip_colours(char *str); |