cbase 1.50.0
C/C++ Static Template
Loading...
Searching...
No Matches
main.c
1#include "base/base_macros.h"
2#include <stdio.h>
3
4int
5main(void)
6{
7#if BUILD_DEBUG
8 puts("DEBUG");
9#endif // BUILD_DEBUG
10 puts("Hello, World!");
11#if BUILD_RELEASE
12 puts("RELEASE");
13#endif // BUILD_RELEASE
14}
Context detection, compiler abstractions, utility macros, and data structures.