Wide character input/output Functions:
Related topics:
Library Functions in C | Standard Library in C | Header Files in C | Functions in C | Keywords in C | Data Types in C | Pointers in C
List of topics: C Programming
fgetwc | wint_t fgetwc(FILE *stream); |
fgetws | wchar_t *fgetws(wchar_t * restrict s, int n, FILE * restrict stream); |
fputwc | wint_t fputwc(wchar_t c, FILE *stream); |
fputws | int fputws(const wchar_t * restrict s, FILE * restrict stream); |
fwide | int fwide (FILE* stream, int mode); |
getwc | wint_t getwc(FILE *stream); |
getwchar | wint_t getwchar(void); |
putwc | wint_t putwc(wchar_t c, FILE *stream); |
putwchar | wint_t putwchar(wchar_t c); |
ungetwc | wint_t ungetwc(wint_t c, FILE *stream); |
Related topics:
Library Functions in C | Standard Library in C | Header Files in C | Functions in C | Keywords in C | Data Types in C | Pointers in C
List of topics: C Programming
No comments:
Post a Comment