We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The following:
#include <stdio.h> #include <tre/tre.h> int main(void) { regex_t preg; tre_regcomp(&preg, "^|$", REG_EXTENDED); regmatch_t pmatch[1]; printf("%d\n", tre_regexec(&preg, "", 1, pmatch, REG_NOTBOL)); return 0; }
prints 1. It should print 0 (this is the case in FreeBSD libc and Linux libc).
The text was updated successfully, but these errors were encountered:
Standalone test for upstream laurikari#101.
3f1d3a2
3af8cb0
92b2c40
f4422bc
6fd31ec
No branches or pull requests
The following:
prints 1. It should print 0 (this is the case in FreeBSD libc and Linux libc).
The text was updated successfully, but these errors were encountered: