2D Run-and-gun shooter inspired by One Man's Doomsday, Counter-Strike, and Metal Slug.
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 
 
 
 

28 строки
477 B

  1. #ifndef IZ_IO_H
  2. #define IZ_IO_H
  3. #if defined IZ_WINDOWS
  4. #include <io.h>
  5. #include <SDL_syswm.h>
  6. #elif defined IZ_UNIX
  7. #include <sys/stat.h>
  8. #elif defined IZ_MACOS
  9. #include <sys/stat.h>
  10. #include <unistd.h>
  11. #endif
  12. #include <stdio.h>
  13. #include <stdbool.h>
  14. #include <stdarg.h>
  15. #include "../compat/IZ_compat.h"
  16. int IZ_sprintf(char*, size_t, const char*, ...);
  17. errno_t IZ_fopen(FILE**, const char*, const char*);
  18. errno_t IZ_mkdir(const char*);
  19. bool IZ_isdir(const char*);
  20. #endif