Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Add missing Copyright 2022 into license headers. | Kaz Kylheku | 2022-04-16 | 1 | -1/+1 |
| | |||||
* | narg: new variaexpand macro. | Kaz Kylheku | 2022-04-12 | 1 | -0/+98 |
| | |||||
* | narg: new variexpand macro. | Kaz Kylheku | 2022-04-07 | 1 | -0/+98 |
| | |||||
* | Adding Lisp-inspired data and control utilities. | Kaz Kylheku | 2022-03-31 | 1 | -0/+6 |
| | |||||
* | nargs: add splice macro. | Kaz Kylheku | 2022-03-29 | 1 | -0/+3 |
| | |||||
* | __revargs: rename to __revarg to rhyme with narg. | Kaz Kylheku | 2022-03-28 | 1 | -1/+1 |
| | |||||
* | narg: 16 argument safety red zone. | Kaz Kylheku | 2022-03-28 | 1 | -8/+21 |
| | |||||
* | Settle on single, most general __varexpand. | Kaz Kylheku | 2022-03-28 | 1 | -121/+68 |
| | | | | | The nested form based on the reduce concept is more general; one macro does it all. | ||||
* | __varexpand_simple: get rid of __rep_ macros. | Kaz Kylheku | 2022-03-28 | 1 | -136/+1 |
| | | | | | | | There is no need for __varexpand_simple to carry its own set of 32 macros, because it's just a special case of __varexpand_infix, with the same helper macro duplicated as mac1 and mac2. | ||||
* | Simplify definition of variadic macros. | Kaz Kylheku | 2022-03-28 | 1 | -0/+10 |
| | |||||
* | Remove stray character in macro expansion. | Kaz Kylheku | 2022-03-28 | 1 | -1/+1 |
| | | | | | This would affect 15 argument variadic macros, like case clauses with exactly 15 keys. | ||||
* | Fix some include guards lacking trailing _H. | Kaz Kylheku | 2022-03-28 | 1 | -2/+2 |
| | |||||
* | New <case.h> header and macro. | Kaz Kylheku | 2022-03-27 | 1 | -0/+327 |
This provides a portable case statement implemented directly as switch on GNU Awk, and using other approaches on other Awks that do not have switch. |