mirror of
https://github.com/lvgl/lvgl.git
synced 2025-01-28 07:03:00 +08:00
20 lines
232 B
C
20 lines
232 B
C
|
|
#ifndef LV_TEST_INIT_H
|
|
#define LV_TEST_INIT_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include <stdio.h>
|
|
|
|
void lv_test_init(void);
|
|
void lv_test_deinit(void);
|
|
|
|
#ifdef __cplusplus
|
|
} /*extern "C"*/
|
|
#endif
|
|
|
|
#endif /*LV_TEST_INIT_H*/
|
|
|