Fixed layout links

This commit is contained in:
Bruce Hill 2021-08-01 21:42:04 -07:00
parent 0f7a774712
commit 1a84ddbaa9

View File

@ -131,18 +131,18 @@ so use at your own risk! These grammar files are only approximations of syntax.
## Code Layout
File | Description
----------------|-----------------------------------------------------
[bp.c]() | The main program.
[](definitions.c) | Defining pattern rules.
[explain.c] | Printing a visual explanation of a match.
[files.c] | Loading files and match memoization.
[json.c] | JSON output of matches.
[match.c] | Pattern matching code (match a pattern against an input string).
[pattern.c] | Pattern loading code (build a pattern out of an input string).
[print.c] | Print pattern match results.
[utf8.c] | UTF-8 helper code.
[utils.c] | Miscellaneous helper functions.
File | Description
-------------------------------|-----------------------------------------------------
[bp.c](bp.c) | The main program.
[definitions.c](definitions.c) | Defining pattern rules.
[explain.c]( explain.c) | Printing a visual explanation of a match.
[files.c](files.c) | Loading files and match memoization.
[json.c](json.c) | JSON output of matches.
[match.c](match.c) | Pattern matching code (match a pattern against an input string).
[pattern.c](pattern.c) | Pattern loading code (build a pattern out of an input string).
[print.c](print.c) | Print pattern match results.
[utf8.c](utf8.c) | UTF-8 helper code.
[utils.c](utils.c) | Miscellaneous helper functions.
## Performance