| 96 | } |
| 97 | |
| 98 | void C_AddTabCommand (const char *name) |
| 99 | { |
| 100 | int pos; |
| 101 | |
| 102 | if (FindTabCommand (name, &pos, INT_MAX)) |
| 103 | { |
| 104 | TabCommands[pos].UseCount++; |
| 105 | } |
| 106 | else |
| 107 | { |
| 108 | TabData tab(name); |
| 109 | TabCommands.Insert (pos, tab); |
| 110 | } |
| 111 | } |
| 112 | |
| 113 | void C_RemoveTabCommand (const char *name) |
| 114 | { |
no test coverage detected