JM9 XRCU Board 0.1.1
Libraries API Reference
Loading...
Searching...
No Matches
utils.h
1#ifndef __UTILS_H
2#define __UTILS_H
3
4/* Concatenate 2 strings */
5#define CONCAT(s1, s2) (s1 s2)
6/* Concatenate 2 strings separated by space */
7#define CONCATS(s1, s2) (s1" " s2)
8
9/* Stringification */
10#define XSTR(s) STR(s)
11#define STR(s) #s
12
13#endif