MCPcopy Create free account
hub / github.com/Freaky/Compactor / uncompress_file

Function uncompress_file

src/compact.rs:322–325  ·  view source on GitHub ↗
(path: P)

Source from the content-addressed store, hash-verified

320}
321
322pub fn uncompress_file<P: AsRef<Path>>(path: P) -> std::io::Result<()> {
323 let file = std::fs::File::open(path)?;
324 uncompress_file_handle(&file)
325}
326
327pub fn uncompress_file_handle(file: &std::fs::File) -> std::io::Result<()> {
328 let mut bytes_returned: DWORD = 0;

Callers 1

compact_works_i_guessFunction · 0.85

Calls 1

uncompress_file_handleFunction · 0.85

Tested by 1

compact_works_i_guessFunction · 0.68