| Character Manipulation Function int _fgetchar(void);  wint_t _fgetwchar(void);  _TINT _fgettchar(void);. Internationalization (I18n) Function OverviewThe _fgetcharfunction returns the character read fromstdinas anint, or it returnsEOFto indicate an error or end of file. _fgetwcharis the wide-character version of_fgetchar, returning a wide-characterwint_t, orWEOFin the event of an error or end of file.
 _fgettcharis the Generic version of the function; with the_MBCSor_UNICODEcompiler flags determining its mapping to either_fgetcharor_fgetwchar.
 
				
             I18n IssuesUse the appropriate version of the function as required for internationalization support. See Character I/O for a discussion on non-ASCII character 
input/output in an internationalized application. Recommended Replacements* 
*If you're already using the recommended function, see I18n Issues for other reasons why Globalyzer is detecting the function. Character Manipulation 
              Functions    
 |