Standard setup for writing C inspired by Casey Muratori, Ryan Fleury, Mr. 4th Programmer, and others in the handmade community.
選択できるのは25トピックまでです。
トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
|
- #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
|