Standard setup for writing C inspired by Casey Muratori, Ryan Fleury, Mr. 4th Programmer, and others in the handmade community.
No puede seleccionar más de 25 temas
Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
|
- #ifndef OS_CPP
- #define OS_CPP
-
- #if OS_WINDOWS
- #include "os_win32.cpp"
- #elif OS_LINUX
- #include "os_linux.cpp"
- #else
- #error Development environment not supported.
- #endif
-
- #endif
|