* include/stdio.h (swscanf): Make first arugument const.

* include/wchar.h (swscanf): Ditto.
	* include/tchar.h (_tfopen): New _UNICODE define.
	(_tgetenv): Ditto.
	(_tsetlocale): Ditto.
This commit is contained in:
Earnie Boyd
2001-06-11 18:13:15 +00:00
parent 3ecfcf5715
commit 37fb7a2ccb
4 changed files with 16 additions and 2 deletions

View File

@ -311,7 +311,7 @@ int vwprintf (const wchar_t*, va_list);
int vswprintf (wchar_t*, const wchar_t*, va_list);
int fwscanf (FILE*, const wchar_t*, ...);
int wscanf (const wchar_t*, ...);
int swscanf (wchar_t*, const wchar_t*, ...);
int swscanf (const wchar_t*, const wchar_t*, ...);
wint_t fgetwc (FILE*);
wint_t fputwc (wchar_t, FILE*);
wint_t ungetwc (wchar_t, FILE*);