| Age | Commit message (Collapse) | Author | Files | Lines |
|
Allows you to set up a callback that's invoked repeatedly during
matching. If it returns non-0 matching will abort and REG_EINTR is
returned.
Allows you to interrupt long-running regexp executions that would
otherwise block the UI or hang the entire application.
|
|
tere_error() for consistency
The headers still define regfree() and regerror() functions,
but they shouldn't collide with libc unless you include the POSIX regex.h.
Also tere_free() can now be called on nullified regex_t objects, which
eases error handling a bit.
|
|
* So you can anchor executions of already compiled patterns.
In principle REG_BOSONLY could also be handled by the same code.
* Required by SciTECO.
* Test suite has been fixed and extended.
The test program now takes getopt() style short arguments to specify flags.
|
|
Fixes inclusion into programs that also include unistd.h on BSD,
which also provides re_comp() and re_exec() implementations.
|
|
I missed the possibility to query the compilation flags from the
execution variables.
|
|
The original hsrex README has been re-added as README.old.
|