| 2132 | |
| 2133 | |
| 2134 | int ZEXPORT unzSetFlags(unzFile file, unsigned flags) |
| 2135 | { |
| 2136 | unz64_s* s; |
| 2137 | if (file == NULL) |
| 2138 | return UNZ_PARAMERROR; |
| 2139 | s = (unz64_s*)file; |
| 2140 | s->flags |= flags; |
| 2141 | return UNZ_OK; |
| 2142 | } |
| 2143 | |
| 2144 | |
| 2145 | int ZEXPORT unzClearFlags(unzFile file, unsigned flags) |
no outgoing calls
no test coverage detected