aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2022-04-09 14:15:07 -0400
committerBruce Hill <bruce@bruce-hill.com>2022-04-09 14:15:07 -0400
commit326a0b960c6eeac4278c15a57e421326464372a6 (patch)
tree70c37f0de7f349f4bbd7f33fcc635908501720b7 /README.md
parentc51a91c4706022f9dc3972c41ef5cf25ea034b0f (diff)
Moving print logic out of match.c and renaming explain -> printmatch
Diffstat (limited to 'README.md')
-rw-r--r--README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index fb8d39b..20ee2ad 100644
--- a/README.md
+++ b/README.md
@@ -140,11 +140,11 @@ so use at your own risk! These grammar files are only approximations of syntax.
File | Description
-------------------------------|-----------------------------------------------------
[bp.c](bp.c) | The main program.
-[explain.c](explain.c) | Printing a visual explanation of a match.
[files.c](files.c) | Loading files into memory.
[json.c](json.c) | JSON output of matches.
[match.c](match.c) | Pattern matching code (find occurrences of a bp pattern within an input string).
[pattern.c](pattern.c) | Pattern compiling code (compile a bp pattern from an input string).
+[printmatch.c](printmatch.c) | Printing a visual explanation of a match.
[utf8.c](utf8.c) | UTF-8 helper code.
[utils.c](utils.c) | Miscellaneous helper functions.