Standard setup for writing C inspired by Casey Muratori, Ryan Fleury, Mr. 4th Programmer, and others in the handmade community.
25'ten fazla konu seçemezsiniz
Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
|
- #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, size_t freeSize);
-
- #endif
|