| 514 | } |
| 515 | |
| 516 | static bool iscancel (int counter) |
| 517 | { |
| 518 | static int cnt; |
| 519 | |
| 520 | cnt++; |
| 521 | if (cnt < counter) |
| 522 | return false; |
| 523 | cnt = 0; |
| 524 | if (!console_isch ()) |
| 525 | return false; |
| 526 | console_getch (); |
| 527 | return true; |
| 528 | } |
| 529 | |
| 530 | static bool isoperator(TCHAR **cp) |
| 531 | { |
no test coverage detected