MCPcopy Create free account
hub / github.com/acl-dev/acl / main

Function main

lib_acl_cpp/samples/zlib/zlib.cpp:256–285  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

254}
255
256int main(int argc, char* argv[])
257{
258 acl::log::stdout_open(true);
259
260 test_pipe();
261
262 (void) argc;
263 (void) argv;
264
265 atexit(check);
266
267 // win32 �£��� DLL �в���ʹ���ڴ�ع���
268#ifdef USE_SLICE
269# ifndef ACL_DLL
270 acl::acl_slice_init();
271# endif
272#endif
273
274 test_unzip_file();
275
276 int ret1 = 0, ret2 = 0;
277
278 ret1 = test_zip_stream();
279 ret2 = test_compress();
280 test_zlib_pipe();
281
282 printf("enter any key to call functions registered by atexit\r\n");
283 getchar();
284 return (ret1 == 0 && ret2 == 0 ? 0 : 1);
285}

Callers

nothing calls this directly

Calls 6

test_pipeFunction · 0.85
acl_slice_initFunction · 0.85
test_unzip_fileFunction · 0.85
test_zip_streamFunction · 0.85
test_compressFunction · 0.85
test_zlib_pipeFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…