* Unloads the language files in the memory. */
| 185 | * Unloads the language files in the memory. |
| 186 | */ |
| 187 | void String_Uninit(void) |
| 188 | { |
| 189 | uint16 i; |
| 190 | |
| 191 | for (i = 0; i < s_stringsCount; i++) free(s_strings[i]); |
| 192 | free(s_strings); |
| 193 | s_strings = NULL; |
| 194 | } |
| 195 | |
| 196 | /** |
| 197 | * Go to the next string. |