Skip to content
Snippets Groups Projects
Commit 071c742b authored by Scott Lahteine's avatar Scott Lahteine
Browse files

Move STRINGIFY to macros.h, use in language.h

parent 2ee599d8
No related branches found
No related tags found
No related merge requests found
......@@ -24,8 +24,8 @@
#define MACROS_H
// Macros to make a string from a macro
#define STRINGIFY_(n) #n
#define STRINGIFY(n) STRINGIFY_(n)
#define STRINGIFY_(M) #M
#define STRINGIFY(M) STRINGIFY_(M)
// Macros for bit masks
#define TEST(n,b) (((n)&_BV(b))!=0)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment