* Adds a string to the string table and returns its index. */
| 119 | * Adds a string to the string table and returns its index. |
| 120 | */ |
| 121 | int AddString(const char *string) |
| 122 | { |
| 123 | return AddString(string, strlen(string)); |
| 124 | } |
| 125 | |
| 126 | /** |
| 127 | * Adds a string to the string table and returns its index. |
no test coverage detected