forked from KolibriOS/kolibrios
cd74d1af33
git-svn-id: svn://kolibrios.org@5098 a494cfbc-eb01-0410-851d-a64ba20cac60
14 lines
586 B
C
14 lines
586 B
C
#include "common.h"
|
|
|
|
extern const byte* GetPointerToCurrentPos(void);
|
|
extern byte GetIndexByte(int index);
|
|
extern unsigned GetMatchLen(int index,unsigned distance,unsigned limit);
|
|
extern unsigned GetNumAvailableBytes(void);
|
|
extern void ReduceOffsets(int subValue);
|
|
|
|
extern void MatchFinder_Init(void);
|
|
extern void MatchFinder_Create(unsigned historySize,unsigned keepAddBufferBefore,unsigned matchMaxLen,unsigned keepAddBufferAfter,byte**mem);
|
|
extern unsigned GetLongestMatch(unsigned*distances);
|
|
extern void DummyLongestMatch(void);
|
|
extern void MatchFinder_MovePos(void);
|