Files
ss/include/MSL_C/MSL_Common/Src/wprintf.h
T
2023-12-24 11:35:03 -05:00

15 lines
255 B
C

#ifndef MSL_WPRINTF_H
#define MSL_WPRINTF_H
#include <common.h>
#ifdef __cplusplus
extern "C" {
#endif
int vswprintf(wchar_t *, size_t, const wchar_t *, va_list);
int swprintf(wchar_t *, size_t, const wchar_t *, ...);
#ifdef __cplusplus
}
#endif
#endif