You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -19,7 +19,7 @@ The main design goal of this library is to be small, correct, self contained and
19
19
- To avoid call-stack exhaustion, iterative searching is preferred over recursive by default (can be changed with a pre-processor flag).
20
20
- No support for capturing groups or named capture: `(^P<name>group)` etc.
21
21
- Thorough testing : [exrex](https://github.com/asciimoo/exrex) is used to randomly generate test-cases from regex patterns, which are fed into the regex code for verification. Try `make test` to generate a few thousand tests cases yourself.
22
-
- Verification-harness for [KLEE Symbolic Execution Engine](https://klee.github.io). Check[formal verification.md](https://github.com/kokke/tiny-regex-c/blob/master/formal_verification.md) for my crude attempts at that.
22
+
- Verification-harness for [KLEE Symbolic Execution Engine](https://klee.github.io), see[formal verification.md](https://github.com/kokke/tiny-regex-c/blob/master/formal_verification.md).
23
23
- Provides character length of matches.
24
24
- Compiled for x86 using GCC 7.2.0 and optimizing for size, the binary takes up ~2-3kb code space and allocates ~0.5kb RAM :
0 commit comments