8 lines
104 B
C
8 lines
104 B
C
#ifndef KMP_H_
|
|
#define KMP_H_
|
|
|
|
int* makeNext(char* str);
|
|
int match(char* text, char* pattern);
|
|
|
|
#endif
|