Formatted 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
| wscanf | int wscanf( const wchar_t *format, ... ); |
| fwscanf | int fwscanf( FILE *stream, const wchar_t *format, ... ); |
| swscanf | int swscanf( const wchar_t *buffer, const wchar_t *format, ... ); |
| wscanf_s(C11) | int wscanf_s( const wchar_t *restrict format, ...); |
| fwscanf_s(C11) | int fwscanf_s( FILE *restrict stream, const wchar_t *restrict format, ...); |
| swscanf_s(C11) | int swscanf_s( const wchar_t *restrict buffer, const wchar_t *restrict format, ...); |
| vwscanf(C99) | int vwscanf( const wchar_t * format, va_list arg ); |
| vfwscanf(C99) | int vfwscanf( FILE *stream, const wchar_t *format, va_list arg ); |
| vswscanf(C99) | int vswscanf( const wchar_t * buffer, const wchar_t *format, va_list arg ); |
| vwscanf_s(C11) | int vwscanf_s( const wchar_t *restrict format, va_list arg ); |
| vfwscanf_s(C11) | int vfwscanf_s( FILE * restrict stream, const wchar_t *restrict format, va_list arg ); |
| vswscanf_s(C11) | int vswscanf_s( const wchar_t *restrict buffer, const wchar_t *restrict format, va_list arg ); |
| wprintf | int wprintf( const wchar_t * format, ... ); |
| fwprintf | int fwprintf( FILE *stream, const wchar_t * format, ... ); |
| swprint | int swprintf( wchar_t *buffer, size_t bufsz, const wchar_t * format, ... ); |
| wprintf_s(C11) | int wprintf_s( const wchar_t *restrict format, ...); |
| fwprintf_s(C11) | int fwprintf_s( FILE *restrict stream, const wchar_t *restrict format, ...); |
| swprint_s(C11) | int swprintf_s( wchar_t *restrict buffer, rsize_t bufsz, const wchar_t * restrict format, ...); |
| snwprintf_s(C11) | int snwprintf_s( wchar_t * restrict buffer, rsize_t bufsz, const wchar_t * restrict format, ...); |
| vwprintf | int vwprintf( const wchar_t * format, va_list arg ); |
| vfwprintf | int vfwprintf( FILE* stream, const wchar_t * format, va_list arg ); |
| vswprintf | int vswprintf( const wchar_t * buffer, size_t bufsz, const wchar_t * format, va_list arg ); |
| vwprintf_s(C11) | int vwprintf_s( const wchar_t * restrict format, va_list arg); |
| vfwprintf_s(C11) | int vfwprintf_s( FILE * restrict stream, const wchar_t *restrict format, va_list arg); |
| vswprint_s(C11) | int vswprintf_s( wchar_t * restrict buffer, rsize_t bufsz, const wchar_t * restrict format, va_list arg); |
| vsnwprintf_s(C11) | int vsnwprintf_s( wchar_t *restrict buffer, rsize_t bufsz, const wchar_t *restrict format, va_list arg); |
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