Standard setup for writing C inspired by Casey Muratori, Ryan Fleury, Mr. 4th Programmer, and others in the handmade community.
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 
 
 

13 wiersze
181 B

  1. #ifndef OS_CPP
  2. #define OS_CPP
  3. #if OS_WINDOWS
  4. #include "os_win32.cpp"
  5. #elif OS_LINUX
  6. #include "os_linux.cpp"
  7. #else
  8. #error Development environment not supported.
  9. #endif
  10. #endif