libs/libc/wchar: add fputws implementation

Signed-off-by: guoshichao <guoshichao@xiaomi.com>
This commit is contained in:
guoshichao
2023-09-17 16:41:50 +08:00
committed by Xiang Xiao
parent d67090c47e
commit 5bd8e56cbe
4 changed files with 105 additions and 2 deletions
+1
View File
@@ -147,6 +147,7 @@ FAR wchar_t *fgetws(wchar_t *, int, FILE *);
wint_t fputwc(wchar_t, FILE *);
wint_t fputwc_unlocked(wchar_t, FAR FILE *);
int fputws(FAR const wchar_t *, FILE *);
int fputws_unlocked(FAR const wchar_t *, FAR FILE *);
int fwide(FILE *, int);
wint_t getwc(FILE *);
wint_t getwchar(void);