diff options
| author | 2026-06-27 22:53:26 -0500 | |
|---|---|---|
| committer | 2026-06-27 22:53:26 -0500 | |
| commit | 40724faccacf055cd9f9bba4615b9f930be9b76b (patch) | |
| tree | 8df1806ef766f14a935e98ad1a04e47714f5f858 /source/macros.h | |
initial commit
Diffstat (limited to 'source/macros.h')
| -rw-r--r-- | source/macros.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/source/macros.h b/source/macros.h new file mode 100644 index 0000000..d2231ff --- /dev/null +++ b/source/macros.h @@ -0,0 +1,12 @@ +#ifndef EXITEST_MACROS_H_INCLUDED +#define EXITEST_MACROS_H_INCLUDED + +#define STR(_s) STR2(_s) +#define STR2(_s) #_s + +#define PASTE(_x, _y) PASTE2(_x, _y) +#define PASTE2(_x, _y) _x ## _y + +#define COMMA , + +#endif /* include guard */ |
