aboutsummaryrefslogtreecommitdiffstats
path: root/cppawk-include/varg-priv.h
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2022-04-03 12:36:14 -0700
committerKaz Kylheku <kaz@kylheku.com>2022-04-03 12:36:14 -0700
commitab409383337440bd12f9ce12e512572b2b19170e (patch)
treea7cc8d658829d7dcb51e516d96a194113a7a703a /cppawk-include/varg-priv.h
parent20394dfa62464334b202dcce7e592025baf7ffbd (diff)
downloadcppawk-ab409383337440bd12f9ce12e512572b2b19170e.tar.gz
cppawk-ab409383337440bd12f9ce12e512572b2b19170e.tar.bz2
cppawk-ab409383337440bd12f9ce12e512572b2b19170e.zip
cons: split into private/public.
A couple of loop clause macros now match the public macros, requiring a little adjustment.
Diffstat (limited to 'cppawk-include/varg-priv.h')
-rw-r--r--cppawk-include/varg-priv.h68
1 files changed, 34 insertions, 34 deletions
diff --git a/cppawk-include/varg-priv.h b/cppawk-include/varg-priv.h
index 4bb9a47..fc4e432 100644
--- a/cppawk-include/varg-priv.h
+++ b/cppawk-include/varg-priv.h
@@ -158,105 +158,105 @@
} \
}
-#define __varg_list(name, check, count, out) \
- __varg_count(name, check, count); \
+#define __varg_list(name, check, count, out) \
+ __varg_count(name, check, count); \
out = nil; \
__case (count) { \
__of (32) \
- out = cons(__r32, out); \
+ out = __cons(__r32, out); \
__cfall; \
__of (31) \
- out = cons(__r31, out); \
+ out = __cons(__r31, out); \
__cfall; \
__of (30) \
- out = cons(__r30, out); \
+ out = __cons(__r30, out); \
__cfall; \
__of (29) \
- out = cons(__r29, out); \
+ out = __cons(__r29, out); \
__cfall; \
__of (28) \
- out = cons(__r28, out); \
+ out = __cons(__r28, out); \
__cfall; \
__of (27) \
- out = cons(__r27, out); \
+ out = __cons(__r27, out); \
__cfall; \
__of (26) \
- out = cons(__r26, out); \
+ out = __cons(__r26, out); \
__cfall; \
__of (25) \
- out = cons(__r25, out); \
+ out = __cons(__r25, out); \
__cfall; \
__of (24) \
- out = cons(__r24, out); \
+ out = __cons(__r24, out); \
__cfall; \
__of (23) \
- out = cons(__r23, out); \
+ out = __cons(__r23, out); \
__cfall; \
__of (22) \
- out = cons(__r22, out); \
+ out = __cons(__r22, out); \
__cfall; \
__of (21) \
- out = cons(__r21, out); \
+ out = __cons(__r21, out); \
__cfall; \
__of (20) \
- out = cons(__r20, out); \
+ out = __cons(__r20, out); \
__cfall; \
__of (19) \
- out = cons(__r19, out); \
+ out = __cons(__r19, out); \
__cfall; \
__of (18) \
- out = cons(__r18, out); \
+ out = __cons(__r18, out); \
__cfall; \
__of (17) \
- out = cons(__r17, out); \
+ out = __cons(__r17, out); \
__cfall; \
__of (16) \
- out = cons(__r16, out); \
+ out = __cons(__r16, out); \
__cfall; \
__of (15) \
- out = cons(__r15, out); \
+ out = __cons(__r15, out); \
__cfall; \
__of (14) \
- out = cons(__r14, out); \
+ out = __cons(__r14, out); \
__cfall; \
__of (13) \
- out = cons(__r13, out); \
+ out = __cons(__r13, out); \
__cfall; \
__of (12) \
- out = cons(__r12, out); \
+ out = __cons(__r12, out); \
__cfall; \
__of (11) \
- out = cons(__r11, out); \
+ out = __cons(__r11, out); \
__cfall; \
__of (10) \
- out = cons(__r10, out); \
+ out = __cons(__r10, out); \
__cfall; \
__of (9) \
- out = cons(__r9, out); \
+ out = __cons(__r9, out); \
__cfall; \
__of (8) \
- out = cons(__r8, out); \
+ out = __cons(__r8, out); \
__cfall; \
__of (7) \
- out = cons(__r7, out); \
+ out = __cons(__r7, out); \
__cfall; \
__of (6) \
- out = cons(__r6, out); \
+ out = __cons(__r6, out); \
__cfall; \
__of (5) \
- out = cons(__r5, out); \
+ out = __cons(__r5, out); \
__cfall; \
__of (4) \
- out = cons(__r4, out); \
+ out = __cons(__r4, out); \
__cfall; \
__of (3) \
- out = cons(__r3, out); \
+ out = __cons(__r3, out); \
__cfall; \
__of (2) \
- out = cons(__r2, out); \
+ out = __cons(__r2, out); \
__cfall; \
__of (1) \
- out = cons(__r1, out); \
+ out = __cons(__r1, out); \
__cfall; \
}