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

15 строки
222 B

  1. #include "IZ_stdlib.h"
  2. void* IZ_malloc(size_t size) {
  3. return SDL_malloc(size);
  4. }
  5. void* IZ_calloc(unsigned int count, size_t size) {
  6. return SDL_calloc(count, size);
  7. }
  8. void IZ_free(void* p) {
  9. SDL_free(p);
  10. p = NULL;
  11. }