| 354 | } |
| 355 | |
| 356 | int main(int argc, char *argv[]) |
| 357 | { |
| 358 | if (argc != 2) |
| 359 | { |
| 360 | printf("Invalid number of Arguments passed!!!\n"); |
| 361 | exit(1); |
| 362 | } |
| 363 | start_game(argv[argc - 1]); |
| 364 | return 0; |
| 365 | } |
nothing calls this directly
no test coverage detected