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
447 B

  1. #ifndef IZ_STRING_H
  2. #define IZ_STRING_H
  3. #include <string.h>
  4. #if defined IZ_WINDOWS
  5. #include <io.h>
  6. #include <SDL_syswm.h>
  7. #elif defined IZ_MACOS
  8. #include <unistd.h>
  9. #elif defined IZ_UNIX
  10. #include "../../src/packages/compat/IZ_compat.h"
  11. #endif
  12. errno_t IZ_memcpy(void*, rsize_t, const void*, rsize_t);
  13. errno_t IZ_strcat(char*, rsize_t, const char*);
  14. errno_t IZ_strlwr(char*, const char*, rsize_t);
  15. void* IZ_memset(void*, int, rsize_t);
  16. #endif