xref: /aosp_15_r20/external/lzma/CPP/7zip/Archive/Common/FindSignature.h (revision f6dc9357d832569d4d1f5d24eacdb3935a1ae8e6)
1 // FindSignature.h
2 
3 #ifndef ZIP7_INC_FIND_SIGNATURE_H
4 #define ZIP7_INC_FIND_SIGNATURE_H
5 
6 #include "../../IStream.h"
7 
8 HRESULT FindSignatureInStream(ISequentialInStream *stream,
9     const Byte *signature, unsigned signatureSize,
10     const UInt64 *limit, UInt64 &resPos);
11 
12 #endif
13