| 98 | } |
| 99 | |
| 100 | int main(int argc, char* argv[]) |
| 101 | { |
| 102 | #ifdef WIN32 |
| 103 | acl::acl_cpp_init(); |
| 104 | #endif |
| 105 | |
| 106 | // ��ʼ���� |
| 107 | if (argc >= 2 && strcmp(argv[1], "alone") == 0) |
| 108 | do_alone(); |
| 109 | else |
| 110 | do_cgi(); |
| 111 | |
| 112 | return 0; |
| 113 | } |
| 114 |
nothing calls this directly
no test coverage detected
searching dependent graphs…