/* * Copyright (c) 2018 Jan Van Winkel * * SPDX-License-Identifier: Apache-2.0 */ #ifndef ZEPHYR_LIB_GUI_LVGL_MEM_H_ #define ZEPHYR_LIB_GUI_LVGL_MEM_H_ #include #ifdef __cplusplus extern "C" { #endif void *lvgl_malloc(size_t size); void lvgl_free(void *ptr); #ifdef __cplusplus } #endif #endif /* ZEPHYR_LIB_GUI_LVGL_MEM_H_i */