| 145 | } |
| 146 | |
| 147 | static int FindDiffPoint (FName name1, const char *str2) |
| 148 | { |
| 149 | const char *str1 = name1.GetChars(); |
| 150 | int i; |
| 151 | |
| 152 | for (i = 0; tolower(str1[i]) == tolower(str2[i]); i++) |
| 153 | if (str1[i] == 0 || str2[i] == 0) |
| 154 | break; |
| 155 | |
| 156 | return i; |
| 157 | } |
| 158 | |
| 159 | void C_TabComplete (bool goForward) |
| 160 | { |
no test coverage detected