MCPcopy Create free account
hub / github.com/BirolLab/abyss / wgetExec

Function wgetExec

Common/Uncompress.cpp:25–32  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

23using namespace std;
24
25static const char* wgetExec(const string& path)
26{
27 return
28 startsWith(path, "http://") ? "wget -O-" :
29 startsWith(path, "https://") ? "wget -O-" :
30 startsWith(path, "ftp://") ? "wget -O-" :
31 NULL;
32}
33
34static const char* zcatExec(const string& path)
35{

Callers 4

uncompressFunction · 0.85
fopenFunction · 0.85
fopen64Function · 0.85
openFunction · 0.85

Calls 1

startsWithFunction · 0.70

Tested by

no test coverage detected