Doxybook Example
config.h
Go to the documentation of this file.
1 #ifndef EXAMPLE_CONFIG_H
2 #define EXAMPLE_CONFIG_H
3 
12 #define CONFIG_HELLO (123)
13 #define CONFIG_WORLD ("abx")
14 #define PI 3.14159265358979323846
15 #define PRINT_PRETTY(MSG, ...) printf(MSG, __VA_ARGS__)
16 
18 #endif