diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2022-04-05 07:53:13 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2022-04-05 07:53:13 -0700 |
commit | 5000f2de6dc79bdc916b0b6aa985cd793abce938 (patch) | |
tree | 772aa8b1fa33e0419deab82a95b063964d634801 | |
parent | 79c67ac4d3356128c65ec813b1f13c57a20f67ee (diff) | |
download | cppawk-5000f2de6dc79bdc916b0b6aa985cd793abce938.tar.gz cppawk-5000f2de6dc79bdc916b0b6aa985cd793abce938.tar.bz2 cppawk-5000f2de6dc79bdc916b0b6aa985cd793abce938.zip |
README: give links to man pages.
-rw-r--r-- | README.md | 9 |
1 files changed, 5 insertions, 4 deletions
@@ -5,7 +5,8 @@ the C preprocessor (GNU `cpp`) on the Awk code and calls `gawk`. `cppawk` understands the basic Awk options like `-F` and `-v`, and also understand common `cpp` options like `-I` and `-Dmacro=value`. -The `cppawk` `man` page has the invocation and usage details. +The [`cppawk` man page](../tree/cppawk.1) describes all the invocation and +usage details. For instance, if we define a file called `awkloop.h` which has these contents @@ -122,10 +123,10 @@ There are currently efficiently translates to a GNU Awk `switch` statement or else to less efficient but portable code. Additionally, the `case` statement requires clauses to be explicit about whether they fall through or break, which - makes it safer to use. Documented by the `cppawk-case.1` man page. - + makes it safer to use. + Documented by the [`cppawk-case` man page](../tree/cppawk-case.1). * `<narg.h>`: provides useful primitives for easily writing variadic macros. - Documented by the `cppawk-narg.1` man page. + Documented by the [`cppawk-narg` man page](../tree/cppawk-narg.1). * `<iter.h>`: provides powerful iteration constructs, including a `loop` macro that features the ability for the application to define |