1 /*
2  * Copyright (c) 2018 Jan Van Winkel <jan.van_winkel@dxplore.eu>
3  *
4  * SPDX-License-Identifier: Apache-2.0
5  */
6 
7 #ifndef ZEPHYR_LIB_GUI_LVGL_MEM_H_
8 #define ZEPHYR_LIB_GUI_LVGL_MEM_H_
9 
10 #include <stdlib.h>
11 
12 #ifdef __cplusplus
13 extern "C" {
14 #endif
15 
16 void *lvgl_malloc(size_t size);
17 
18 void *lvgl_realloc(void *ptr, size_t size);
19 
20 void lvgl_free(void *ptr);
21 
22 #ifdef __cplusplus
23 }
24 #endif
25 
26 #endif /* ZEPHYR_LIB_GUI_LVGL_MEM_H_i */
27