C_Algorithms 2.0.0
Documentation
Loading...
Searching...
No Matches
patternSearch.h
Go to the documentation of this file.
1#ifndef KMP_H
2#define KMP_H
3
4uint32_t PatternSearch(char *text, char *pattern);
5
6#endif //KMP_H
uint32_t PatternSearch(char *text, char *pattern)
PatSearch is a Function to search for specific patterns in a text. (Be aware that its case sensitive!...