| 739 | } |
| 740 | |
| 741 | int 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 | |
| 753 | void zipmanualclose(void *a) |
| 754 | { |
no test coverage detected