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

Function main

lib_acl/samples/dgate/main.cpp:39–59  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

37}
38
39int main(int argc, char* argv[])
40{
41 char ch;
42
43 while ((ch = getopt(argc, argv, "hf:")) > 0) {
44 switch (ch) {
45 case 'h':
46 usage(argv[0]);
47 return 0;
48 case 'f':
49 __conf_file = acl_mystrdup(optarg);
50 break;
51 default:
52 break;
53 }
54 }
55
56 init();
57 run();
58 return 0;
59}

Callers

nothing calls this directly

Calls 4

usageFunction · 0.70
initFunction · 0.70
runFunction · 0.70
getoptFunction · 0.50

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…