Standard setup for writing C inspired by Casey Muratori, Ryan Fleury, Mr. 4th Programmer, and others in the handmade community.
Du kannst nicht mehr als 25 Themen auswählen
Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
|
123456789101112 |
- #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
|