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.

IZ_string.h 376 B

1234567891011121314151617181920
  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. #endif
  10. errno_t IZ_memcpy(void*, rsize_t, const void*, rsize_t);
  11. errno_t IZ_strcat(char*, rsize_t, const char*);
  12. errno_t IZ_strlwr(char*, const char*, rsize_t);
  13. void* IZ_memset(void*, int, rsize_t);
  14. #endif