Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. =================================================================== RCS file: /ftp/cvs/cvsroot/src/include/wchar.h,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- src/include/wchar.h 2005/03/30 03:47:11 1.22 +++ src/include/wchar.h 2005/05/14 23:51:42 1.23 @@ -1,4 +1,4 @@ -/* $NetBSD: wchar.h,v 1.22 2005/03/30 03:47:11 christos Exp $ */ +/* $NetBSD: wchar.h,v 1.23 2005/05/14 23:51:42 christos Exp $ */ /*- * Copyright (c)1999 Citrus Project, @@ -165,6 +165,25 @@ wint_t putwc(wchar_t, FILE *); wint_t putwchar(wchar_t); int fwide(FILE *, int); + +wchar_t *fgetwln(FILE * __restrict, size_t * __restrict); +int fwprintf(FILE * __restrict, const wchar_t * __restrict, ...); +int fwscanf(FILE * __restrict, const wchar_t * __restrict, ...); +int swprintf(wchar_t * __restrict, size_t n, const wchar_t * __restrict, ...); +int swscanf(const wchar_t * __restrict, const wchar_t * __restrict, ...); +int vfwprintf(FILE * __restrict, const wchar_t * __restrict, _BSD_VA_LIST_); +int vswprintf(wchar_t * __restrict, size_t, const wchar_t * __restrict, + _BSD_VA_LIST_); +int vwprintf(const wchar_t * __restrict, _BSD_VA_LIST_); +int wprintf(const wchar_t * __restrict, ...); +int wscanf(const wchar_t * __restrict, ...); +#if defined(_ISOC99_SOURCE) || (__STDC_VERSION__ - 0) > 199901L || \ + defined(_NETBSD_SOURCE) +int vfwscanf(FILE * __restrict, const wchar_t * __restrict, _BSD_VA_LIST_); +int vswscanf(const wchar_t * __restrict, const wchar_t * __restrict, + _BSD_VA_LIST_); +int vwscanf(const wchar_t * __restrict, _BSD_VA_LIST_); +#endif __END_DECLS #ifndef WEOF