diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2022-03-29 08:23:47 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2022-03-29 08:23:47 -0700 |
commit | e1586f173a45902fa29cd3727e0a5f74be952094 (patch) | |
tree | 1bd99be9886c683574c541acfe4ab4bae595ea69 /README.md | |
parent | a48582ba93794b204bb4426431b354897f7b89a8 (diff) | |
download | cppawk-e1586f173a45902fa29cd3727e0a5f74be952094.tar.gz cppawk-e1586f173a45902fa29cd3727e0a5f74be952094.tar.bz2 cppawk-e1586f173a45902fa29cd3727e0a5f74be952094.zip |
README: mention <narg.h>.
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 15 |
1 files changed, 10 insertions, 5 deletions
@@ -55,11 +55,16 @@ a subdirectory called `cppawk-include` which is in the same directory as itself. For instance if `cppawk` is `/usr/bin/cppawk`, it looks in `/usr/bin/cppawk-include`. -There is currently a `<case.h>` header file which provides a portable -`case` statement which 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. +There are currently + +* `<case.h>`: provides a portable `case` statement macro which + 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. + +* `<narg.h>`: provides useful primitives for easily writing variadic macros. + Documented by the `cppawk-narg.1` man page. ## Why? |