diff options
| author | kartofen <kartofen.mail.0@protonmail.com> | 2025-07-09 22:49:24 +0300 |
|---|---|---|
| committer | kartofen <kartofen.mail.0@protonmail.com> | 2025-07-09 22:49:24 +0300 |
| commit | b7642dc9269b3b3525c08b170e01e0711577accf (patch) | |
| tree | d8b32a0749e79ddc79ce998a382ee7dc06f0a175 /util/util.h | |
| parent | 2955d9bcb8ae535e7f44a54363a6f30a6d16e271 (diff) | |
untested precednece lol
Diffstat (limited to 'util/util.h')
| -rw-r--r-- | util/util.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/util/util.h b/util/util.h new file mode 100644 index 0000000..9dc29d8 --- /dev/null +++ b/util/util.h @@ -0,0 +1,12 @@ +#ifndef UTIL_H +#define UTIL_H + +#define IMPLEMENT_FUNCPTR(type, name, args) \ + type __##name args; \ + type (*name) args = __##name; \ + type __##name args + +#define X_TO_STR(s) #s, +#define X_TO_ENUM(s) s, + +#endif |
