data-structures-c
Loading...
Searching...
No Matches
paste.h
Go to the documentation of this file.
1/* paste.h
2 *
3 * Copyright (C) 2023 abxh
4 *
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2.1 of the License, or (at your option) any later version.
9 * See the file LICENSE included with this distribution for more
10 * information. */
11
17#pragma once
18
23#define PASTE(a, b) a##b
24
29#define XPASTE(a, b) PASTE(a, b)
30
35#define JOIN(a, b) XPASTE(a, XPASTE(_, b))
36
37// vim: ft=c