Standard setup for writing C inspired by Casey Muratori, Ryan Fleury, Mr. 4th Programmer, and others in the handmade community.
Nelze vybrat více než 25 témat
Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
|
- #ifndef OS_H
- #define OS_H
-
- #include "core.h"
-
- // ### Memory ###
- void *os_alloc(size_t capacity);
- void os_reserve(void *ptr);
- void os_decommit(void *ptr);
- void os_free(void *ptr);
-
- #endif
|