MCPcopy Create free account
hub / github.com/assaultcube/AC / zipmanualread

Function zipmanualread

source/src/zip.cpp:741–751  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

739}
740
741int zipmanualread(void *a, int n, stream *f, int maxlen)
742{
743 int got = -1;
744 stream *s = zipmanualstream(a, n);
745 if(s)
746 {
747 got = streamcopy(f, s, maxlen);
748 delete s;
749 }
750 return got;
751}
752
753void zipmanualclose(void *a)
754{

Callers 3

loopvFunction · 0.85
loopvFunction · 0.85
loopvFunction · 0.85

Calls 2

zipmanualstreamFunction · 0.85
streamcopyFunction · 0.85

Tested by

no test coverage detected