Move STRINGIFY to utils.h and add STRINGIFY2

master
Pierre Le Marre 2023-07-04 09:23:23 +02:00 committed by Wismill
parent 8c7076a0b5
commit 4823838fa3
2 changed files with 3 additions and 1 deletions

View File

@ -62,6 +62,9 @@
/* Round up @a so it's divisible by @b. */
#define ROUNDUP(a, b) (((a) + (b) - 1) / (b) * (b))
#define STRINGIFY(x) #x
#define STRINGIFY2(x) STRINGIFY(x)
char
to_lower(char c);

View File

@ -61,7 +61,6 @@
* We try not to trust the server too much and be paranoid. If we get
* something which we definitely shouldn't, we fail.
*/
#define STRINGIFY(expr) #expr
#define FAIL_UNLESS(expr) do { \
if (!(expr)) { \
log_err(keymap->ctx, \