summaryrefslogtreecommitdiff
path: root/match.h
blob: b6d19b173fe42c52d1ae5dff600124669afdd5af (plain)
1
2
3
4
5
6
7
8
#ifndef MATCH_H
#define MATCH_H MATCH_H

int has_match(const char *needle, const char *haystack);
double match_positions(const char *needle, const char *haystack, size_t *positions);
double match(const char *needle, const char *haystack);

#endif