PandA-2024.02
|
#include "kmp.h"
Go to the source code of this file.
Functions | |
void | CPF (char pattern[PATTERN_SIZE], int32_t kmpNext[PATTERN_SIZE]) |
int | kmp (char pattern[PATTERN_SIZE], char input[STRING_SIZE], int32_t kmpNext[PATTERN_SIZE], int32_t n_matches[1]) |
void CPF | ( | char | pattern[PATTERN_SIZE], |
int32_t | kmpNext[PATTERN_SIZE] | ||
) |
int kmp | ( | char | pattern[PATTERN_SIZE], |
char | input[STRING_SIZE], | ||
int32_t | kmpNext[PATTERN_SIZE], | ||
int32_t | n_matches[1] | ||
) |
Definition at line 24 of file kmp.c.
References CPF(), input, and STRING_SIZE.
Referenced by main(), and run_benchmark().