diff options
| author | 2025-10-13 19:06:52 +0200 | |
|---|---|---|
| committer | 2025-10-13 19:09:48 +0200 | |
| commit | 9812f88a9a612144bea02c7acf499867eb0cbeb9 (patch) | |
| tree | 0575b7c6b6b72b0683c4ffae108292b3d44998be /test/pp.h | |
| parent | 3048a0b59baae16727d0c259353ff4be1ae559b4 (diff) | |
implement most of preprocessor
- concatenation (##)
- builtin macros (__FILE__ etc)
- fails in some edge cases, and code needs cleanup
- add embedded system include files (stddef.h, stdarg.h for now)
- can handle stdio.h now
Diffstat (limited to 'test/pp.h')
| -rw-r--r-- | test/pp.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -17,7 +17,7 @@ void hi(int x) { #define STR(h) #h #define xstr(s1) str(s1) -#define str(s) #s +#define str(...) #__VA_ARGS__ #endif |