]> git.donarmstrong.com Git - biopieces.git/blob - code_c/Maasha/src/inc/strings.h
fixing up c code
[biopieces.git] / code_c / Maasha / src / inc / strings.h
1 /* Locate a substr in a str allowing for a given number of mismatches. */
2 /* Returns position of match begin or -1 if not found. */
3 int match_substr( char *str, int str_len, char *substr, int substr_len, int mismatch );