EU1KY AA
sdram_heap.h
Go to the documentation of this file.
1 /*
2  * (c) Yury Kuchura
3  * kuchura@gmail.com
4  *
5  * This code can be used on terms of WTFPL Version 2 (http://www.wtfpl.net/).
6  */
7 
8 #ifndef _SDRAM_HEAP_H_
9 #define _SDRAM_HEAP_H_
10 
11 #ifdef __cplusplus
12 extern "C" {
13 #endif
14 
15 void* SDRH_malloc(size_t nbytes);
16 void SDRH_free(void* ptr);
17 void* SDRH_realloc(void* ptr, size_t nbytes);
18 void* SDRH_calloc(size_t nbytes);
19 
20 #ifdef __cplusplus
21 }
22 #endif
23 
24 #endif //_SDRAM_HEAP_H_
void * SDRH_malloc(size_t nbytes)
void SDRH_free(void *ptr)
void * SDRH_realloc(void *ptr, size_t nbytes)
void * SDRH_calloc(size_t nbytes)