diff options
| -rw-r--r-- | README.md | 24 |
1 files changed, 12 insertions, 12 deletions
@@ -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 |
