This is the 'C' version of my previous old+java question Can java.util.regex.Pattern do partial matches?
Is it possible to know if a string contains an input that could match a regular expression using the regcomp/regexec/regfree library.
e.g:
input : "AA";
regex : "AAAAAB";
//<-- regexec returns true ?
and
input : "BB";
regex : "AAAAAB";
//<-- regexec returns false ?