2D Run-and-gun shooter inspired by One Man's Doomsday, Counter-Strike, and Metal Slug.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

23 lines
388 B

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