Macro: Add string concat macro function

This commit is contained in:
Riyyi
2023-12-03 20:13:58 +01:00
parent c8e4ae884e
commit 526948874a
+3
View File
@@ -7,3 +7,6 @@
#pragma once
#define BIT(x) (1 << x)
#define CONCAT_IMPL(a, b) a##b
#define CONCAT(a, b) CONCAT_IMPL(a, b)