* Returns a pointer to the string at given index in current string file. * * @param stringID The index of the string. * @return The pointer to the string. */
| 94 | * @return The pointer to the string. |
| 95 | */ |
| 96 | char *String_Get_ByIndex(uint16 stringID) |
| 97 | { |
| 98 | return s_strings[stringID]; |
| 99 | } |
| 100 | |
| 101 | /** |
| 102 | * Translates 0x1B 0xXX occurences into extended ASCII values (0x7F + 0xXX). |
no outgoing calls
no test coverage detected