GETWCHAR

Section: Manual del Programador de Linux (3)
Updated: 25 julio 1999
Index Return to Main Contents


 

NOMBRE

getwchar - lee un carácter ancho de la entrada estándar  

SINOPSIS

#include <wchar.h>

wint_t getwchar (void);
 

DESCRIPCIÓN

La función getwchar es equivalente para caracteres anchos a la función getchar. Lee un carácter ancho de stdin y lo devuelve. Si se llega al final del flujo o si ferror(stdin) es cierto, se devuelve WEOF. Si se produce un error en la conversión de caracteres anchos, se asigna a errno el valor EILSEQ y la función devuelve WEOF.  

VALOR DEVUELTO

La función getwchar devuelve el siguiente carácter ancho de la entrada estándar, o WEOF.  

CONFORME A

ISO/ANSI C, UNIX98  

VÉASE TAMBIÉN

fgetwc

(3)  

OBSERVACIONES

El comportamiento de getwchar depende de la categoría LC_CTYPE de la localización actual.

Es razonable esperar que getwchar lea realmente la secuencia multibyte de la entrada estándar y que la convierta a un carácter ancho.


 

Index

NOMBRE
SINOPSIS
DESCRIPCIÓN
VALOR DEVUELTO
CONFORME A
VÉASE TAMBIÉN
OBSERVACIONES

This document was created by man2html, using the manual pages.
Time: 06:16:24 GMT, January 22, 2005