Files
912-notes/thu_dsa/chp11/kmp.h
2019-08-21 20:57:29 +08:00

8 lines
104 B
C

#ifndef KMP_H_
#define KMP_H_
int* makeNext(char* str);
int match(char* text, char* pattern);
#endif