Sign in
android
/
device
/
google
/
contexthub
/
f02989ab66f8c3e641621c18a5b49c415a307993
/
.
/
firmware
/
inc
/
heap.h
blob: 38969acb44b5498f2b71d59be04c9295f5a796e4 [
file
] [
log
] [
blame
]
#ifndef
_HEAP_H_
#define
_HEAP_H_
#ifdef
__cplusplus
extern
"C"
{
#endif
#include
<stdint.h>
#include
<stdbool.h>
bool
heapInit
(
void
);
void
*
heapAlloc
(
uint32_t
sz
);
void
heapFree
(
void
*
ptr
);
#ifdef
__cplusplus
}
#endif
#endif