equal
deleted
inserted
replaced
27 |
27 |
28 /** Scans the string for valid characters and if it finds invalid ones, |
28 /** Scans the string for valid characters and if it finds invalid ones, |
29 * replaces them with a question mark '?' */ |
29 * replaces them with a question mark '?' */ |
30 void str_validate(char *str); |
30 void str_validate(char *str); |
31 |
31 |
|
32 /** Scans the string for colour codes and strips them */ |
|
33 void str_strip_colours(char *str); |
|
34 |
32 /** |
35 /** |
33 * Valid filter types for IsValidAsciiChar. |
36 * Valid filter types for IsValidAsciiChar. |
34 */ |
37 */ |
35 typedef enum CharSetFilter { |
38 typedef enum CharSetFilter { |
36 CS_ALPHANUMERAL, //! Both numeric and alphabetic and spaces and stuff |
39 CS_ALPHANUMERAL, //! Both numeric and alphabetic and spaces and stuff |