scummvm/tools/skycpt/KmpSearch.h
Robert Göffringmann cbe5f667c2 Changed the tool so it compiles with g++
svn-id: r19414
2005-11-04 00:42:30 +00:00

20 lines
302 B
C++

#ifndef __KmpSearch__
#define __KmpSearch__
#ifndef _MSC_VER
#define __fastcall
#endif
class KmpSearch {
public:
void __fastcall init(const char *subStr);
char * __fastcall search(const char *str);
//private:
char _retarget[256], _subStr[256];
unsigned long _strLen;
};
#endif //__KmpSearch__