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_
SDRH_malloc
void * SDRH_malloc(size_t nbytes)
SDRH_free
void SDRH_free(void *ptr)
SDRH_realloc
void * SDRH_realloc(void *ptr, size_t nbytes)
SDRH_calloc
void * SDRH_calloc(size_t nbytes)
Inc
sdram_heap.h
Generated on Fri Mar 8 2019 12:41:37 for EU1KY AA by
1.8.11