13 lines
198 B
C
13 lines
198 B
C
#ifndef KMP_UTIL_H
|
|
#define KMP_UTIL_H
|
|
|
|
void print_array(int *, int);
|
|
|
|
char *read_file(char *filepath, int *len);
|
|
|
|
void apply_shift(int, int *, int);
|
|
|
|
int sum_array(int *, int);
|
|
|
|
#endif //KMP_UTIL_H
|