c_util
C utility library for low-level programming
|
メモリ関連処理実装 More...
Functions | |
void | core_zero_memory (void *const buff_, uint32_t buff_size_) |
対象バッファを全て0でクリアする | |
void * | core_malloc (size_t memory_size_) |
要求されたメモリを確保し、出力する | |
void | core_free (void *memory_pool_) |
指定されたメモリ領域を破棄する | |
メモリ関連処理実装
void core_free | ( | void * | memory_pool_ | ) |
指定されたメモリ領域を破棄する
memory_pool_ | 破棄対象メモリ領域 |
void * core_malloc | ( | size_t | memory_size_ | ) |
要求されたメモリを確保し、出力する
memory_size_ | 確保メモリ領域 |
void core_zero_memory | ( | void * | buff_, |
uint32_t | buff_size_ ) |
対象バッファを全て0でクリアする
buff_ | クリア対象バッファ |
buff_size_ | クリアバッファサイズ(byte) |