/** * @file lv_templ.c * */ /********************* * INCLUDES *********************/ #include "../../lv_conf_internal.h" #if LV_USE_STDLIB_SPRINTF == LV_STDLIB_CLIB #include #include #include "../lv_sprintf.h" /********************* * DEFINES *********************/ /********************** * TYPEDEFS **********************/ /********************** * STATIC PROTOTYPES **********************/ /********************** * STATIC VARIABLES **********************/ /********************** * MACROS **********************/ /********************** * GLOBAL FUNCTIONS **********************/ int lv_snprintf(char * buffer, size_t count, const char * format, ...) { va_list va; va_start(va, format); const int ret = vsnprintf(buffer, count, format, va); va_end(va); return ret; } int lv_vsnprintf(char * buffer, size_t count, const char * format, va_list va) { return vsnprintf(buffer, count, format, va); } /********************** * STATIC FUNCTIONS **********************/ #endif