Source code of Windows XP (NT5)
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
/***
*fgetwchr.c - get a wide character from stdin * * Copyright (c) 1993-2001, Microsoft Corporation. All rights reserved. * *Purpose: * defines _fgetwchar() and getwchar() - read a wide character from stdin * *Revision History: * 04-26-93 CFW Module created. * 05-03-93 CFW Bring wide char support from fgetwchr.c. * 06-02-93 CFW Wide get/put use wint_t. * 02-07-94 CFW POSIXify. * *******************************************************************************/
#ifndef _POSIX_
#include <cruntime.h>
#include <stdio.h>
#include <tchar.h>
/***
*wint_t _fgetwchar(), getwchar() - read a wide character from stdin * *Purpose: * Reads the next wide character from stdin. Function version of * getwchar() macro. * *Entry: * None. * *Exit: * Returns wide character read or WEOF if at end-of-file or an error occured, * in which case the appropriate flag is set in the FILE structure. * *Exceptions: * *******************************************************************************/
wint_t __cdecl _fgetwchar ( void ) { return(getwc(stdin)); }
#undef getwchar
wint_t __cdecl getwchar ( void ) { return(_fgetwchar()); }
#endif /* _POSIX_ */
|