| 9 | static bool __debug = false; |
| 10 | |
| 11 | static void sleep_while(int n) |
| 12 | { |
| 13 | for (int i = 0; i < n; i++) { |
| 14 | putchar('.'); |
| 15 | fflush(stdout); |
| 16 | sleep(1); |
| 17 | } |
| 18 | printf("\r\n"); |
| 19 | } |
| 20 | |
| 21 | // ��ʼ������ |
| 22 | static void init(const char* addrs, int count) |