An experimental attempt to write a regular expression matcher.
Go to file
Danila Fedorin fbb0635b26 Implement matching strings + finding groups.
They're done in the same step.

result = _regex_find_all(root, &clear_ll, -1);
ll_clear(&clear_ll);

Is all that's necessary to reset all nodes, since the only value
that changes during the match is list_id, and that gets set when the
nodes are found.
2017-01-08 00:04:31 -08:00
external Add libds as dependency in external/ 2017-01-02 17:48:57 -08:00
include Implement matching strings + finding groups. 2017-01-08 00:04:31 -08:00
src Implement matching strings + finding groups. 2017-01-08 00:04:31 -08:00
.gitignore Initial commit. Create .gitignore. 2017-01-02 17:48:01 -08:00
.gitmodules Add libds as dependency in external/ 2017-01-02 17:48:57 -08:00
CMakeLists.txt Add default empty files and a CMakeLists.txt to build. 2017-01-02 17:54:25 -08:00