11 lines
264 B
C++
11 lines
264 B
C++
// Copyright (c) 2023 Dominic Masters
|
|
//
|
|
// This software is released under the MIT License.
|
|
// https://opensource.org/licenses/MIT
|
|
|
|
#pragma once
|
|
|
|
#define MACRO_STRINGIFY_RAW(x) #x
|
|
#define MACRO_STRINGIFY(x) MACRO_STRINGIFY_RAW(x)
|
|
|
|
#define MACRO_JOIN(x, y) x ## y |