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.
 
 
 
 

13 líneas
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