diff options
author | tjr <tjr@FreeBSD.org> | 2002-09-23 12:40:06 +0000 |
---|---|---|
committer | tjr <tjr@FreeBSD.org> | 2002-09-23 12:40:06 +0000 |
commit | 516923dd049ff80d95368c85da4a247a31344057 (patch) | |
tree | 06945e0826673f814a730192215de09208c62293 /lib/libc/stdio/local.h | |
parent | 0a327f9db4a881fbdf50ea890f74a1ce17112519 (diff) | |
download | FreeBSD-src-516923dd049ff80d95368c85da4a247a31344057.zip FreeBSD-src-516923dd049ff80d95368c85da4a247a31344057.tar.gz |
Add implementations of wscanf() and related functions: fwscanf(), swscanf(),
vfwscanf(), vswscanf(), vwscanf(). As the name suggests, these are wide-
character versions of the scanf() family of functions.
Diffstat (limited to 'lib/libc/stdio/local.h')
-rw-r--r-- | lib/libc/stdio/local.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/libc/stdio/local.h b/lib/libc/stdio/local.h index 5bd21a39..ba2416b 100644 --- a/lib/libc/stdio/local.h +++ b/lib/libc/stdio/local.h @@ -74,6 +74,8 @@ extern int __ungetc(int, FILE *); extern wint_t __ungetwc(wint_t, FILE *); extern int __vfprintf(FILE *, const char *, __va_list); extern int __vfwprintf(FILE *, const wchar_t *, __va_list); +extern int __vfwscanf(FILE * __restrict, const wchar_t * __restrict, + __va_list); extern int __sdidinit; |