We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The signature here https://en.wikipedia.org/wiki/List_of_file_signatures is a bit different
code:
fn is_zip(buf: &[u8]) -> bool { buf.len() >= 3 && buf[..=1] == [0x50, 0x4B] && (buf[2..=3] == [0x3, 0x4] || buf[2..=3] == [0x5, 0x6] || buf[2..=3] == [0x7, 0x8]) }
The text was updated successfully, but these errors were encountered:
add support for winzip in is_zip. fixes #52 and possibly #49
ef12bb4
Merge pull request #69 from bojand/winzip
d00c574
No branches or pull requests
The signature here https://en.wikipedia.org/wiki/List_of_file_signatures is a bit different
code:
The text was updated successfully, but these errors were encountered: