CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
rapid7

Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place.

GitHub Repository: rapid7/metasploit-framework
Path: blob/master/external/source/exploits/CVE-2017-13861/liboffsetfinder64/lzssdec.h
Views: 11784
1
//
2
// lzssdec.h
3
// img4tool
4
//
5
// Code borrowed from: http://newosxbook.com/src.jl?tree=listings&file=joker.c
6
// Coded by Jonathan Levin (a.k.a @Morpheus______), http://newosxbook.com
7
8
#ifndef lzssdec_h
9
#define lzssdec_h
10
11
#include <stdint.h>
12
#include <stdlib.h>
13
14
char *tryLZSS(char *compressed, size_t *filesize);
15
16
#endif /* lzssdec_h */
17
18