MCPcopy Create free account
hub / github.com/F-Stack/f-stack / main

Function main

freebsd/contrib/zstd/examples/simple_decompression.c:49–65  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

47}
48
49int main(int argc, const char** argv)
50{
51 const char* const exeName = argv[0];
52
53 if (argc!=2) {
54 printf("wrong arguments\n");
55 printf("usage:\n");
56 printf("%s FILE\n", exeName);
57 return 1;
58 }
59
60 decompress(argv[1]);
61
62 printf("%s correctly decoded (in memory). \n", argv[1]);
63
64 return 0;
65}

Callers

nothing calls this directly

Calls 2

decompressFunction · 0.70
printfFunction · 0.50

Tested by

no test coverage detected