| 174 | } |
| 175 | |
| 176 | static char *trim(char *title) |
| 177 | { |
| 178 | u32 len = strlen(title); |
| 179 | while(len > 0 && title[--len] == ' ') title[len] = '\0'; |
| 180 | return title; |
| 181 | } |
| 182 | |
| 183 | static void replace_invalid_chars(char *text) |
| 184 | { |
no test coverage detected