musl/src/regex
Rich Felker 45b38550ee new fnmatch implementation
unlike the old one, this one's algorithm does not suffer from
potential stack overflow issues or pathologically bad performance on
certain patterns. instead of backtracking, it uses a matching
algorithm which I have not seen before (unsure whether I invented or
re-invented it) that runs in O(1) space and O(nm) time. it may be
possible to improve the time to O(n), but not without significantly
greater complexity.
2012-04-28 18:05:29 -04:00
..
fnmatch.c new fnmatch implementation 2012-04-28 18:05:29 -04:00
glob.c make glob mark symlinks-to-directories with the GLOB_MARK flag 2012-01-23 19:51:34 -05:00
regcomp.c remove invalid code from TRE 2012-04-13 19:50:58 -04:00
regerror.c fix broken regerror (typo) and missing message 2012-04-13 18:40:38 -04:00
regexec.c fix signedness error handling invalid multibyte sequences in regexec 2012-04-14 22:32:42 -04:00
tre-mem.c upgrade to latest upstream TRE regex code (0.8.0) 2012-03-20 19:44:05 -04:00
tre.h upgrade to latest upstream TRE regex code (0.8.0) 2012-03-20 19:44:05 -04:00