Preprocessor Macros: Difference between revisions
Line 3: | Line 3: | ||
==Include Guard== | ==Include Guard== | ||
For most modern compilers (MS Visual C++, GCC, Clang/llvm), you can just add a <code>#pragma once</code> at the top.<br> | For most modern compilers (MS Visual C++, GCC, Clang/llvm), you can just add a <code>#pragma once</code> at the top.<br> | ||
Note that this is not defined in the standard | Note that this is not defined in the standard but [[Wikipedia: pragma once#Portability]] lists support for most common compilers. | ||
For older compilers: | For older compilers: |
Latest revision as of 13:59, 1 June 2022
Some common preprocessor macros
Include Guard
For most modern compilers (MS Visual C++, GCC, Clang/llvm), you can just add a #pragma once
at the top.
Note that this is not defined in the standard but Wikipedia: pragma once#Portability lists support for most common compilers.
For older compilers:
#ifndef GRANDPARENT_H
#define GRANDPARENT_H
... contents of grandparent.h
#endif /* !GRANDPARENT_H */
GLSL
#define PI 3.141592653589793
#define PI_2 1.5707963267948966
#define DEG2RAD 0.017453292519943295
#define RAD2DEG 57.29577951308232
#define sign(x) (int((x) > 0) - int((x) < 0))
#define imin(x, y) (int(x) * int(int(x) < int(y)) + int(y) * int(int(x) >= int(y)))
#define imax(x, y) (int(x) * int(int(x) > int(y)) + int(y) * int(int(x) <= int(y)))
#define iabs(x) ((x) * int((x) >= 0) - (x) * int((x) < 0))