Standard setup for writing C inspired by Casey Muratori, Ryan Fleury, Mr. 4th Programmer, and others in the handmade community.
Du kan inte välja fler än 25 ämnen
Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
|
- #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
|