Files
QNX/lib/c/stdio/fwscanf.c
2025-08-20 19:02:58 +08:00

31 lines
701 B
C

/* fwscanf function */
#include "xwstdio.h"
_STD_BEGIN
static wint_t scin(void *str, wint_t ch, int getfl)
{ /* get or put a wide character */
return ((wint_t)(getfl ? fgetwc((FILE *)str)
: ungetwc(ch, (FILE *)str)));
}
int (fwscanf)(FILE *_Restrict str, const wchar_t *_Restrict fmt, ...)
{ /* read formatted from wide stream */
int ans;
va_list ap;
va_start(ap, fmt);
_Lockfileatomic(str);
ans = _WScanf(&scin, str, fmt, ap, 0);
_Unlockfileatomic(str);
va_end(ap);
return (ans);
}
_STD_END
/*
* Copyright (c) 1992-2006 by P.J. Plauger. ALL RIGHTS RESERVED.
* Consult your license regarding permissions and restrictions.
V5.00:1296 */
__SRCVERSION("fwscanf.c $Rev: 153052 $");