| 303 | } |
| 304 | |
| 305 | int DedicatedServerLex(const char *command) { |
| 306 | for (int i = 0; i < MAX_CVARS; i++) |
| 307 | if (stricmp(CVars[i].varname, command) == 0) |
| 308 | return i; |
| 309 | |
| 310 | return INFFILE_ERROR; |
| 311 | } |
| 312 | |
| 313 | // Reads in the server config file for a dedicated server |
| 314 | // Returns true if everything is ok |
no outgoing calls
no test coverage detected