WSCANFL(3) BSD Library Functions Manual WSCANFL(3)
NAME
wscanfl, fwscanfl, swscanfl, vwscanfl, vswscanfl, vfwscanfl -- wide
character input format conversion
LIBRARY
Standard C Library (libc, -lc)
SYNOPSIS
##include <>
##include <>
##include <>
int
wscanfl(localet loc, const wchart * restrict format, ...);
int
fwscanfl(FILE * restrict stream, localet loc,
const wchart * restrict format, ...);
int
swscanfl(const wchart * restrict str, localet loc,
const wchart * restrict format, ...);
##include <>
int
vwscanfl(localet loc, const wchart * restrict format, valist ap);
int
vswscanfl(const wchart * restrict str, localet loc,
const wchart * restrict format, valist ap);
int
vfwscanfl(FILE * restrict stream, localet loc,
const wchart * restrict format, valist ap);
DESCRIPTION
The wscanfl(), fwscanfl(), swscanfl(), vwscanfl(), vswscanfl(), and
vfwscanfl() functions are extended locale versions of the wscanf(),
fwscanf(), swscanf(), vwscanf(), vswscanf(), and vfwscanf() functions,
respectively. Refer to their manual pages for details. Also, see
xlocale(3) for more information about extended locales.
SEE ALSO
wscanf(3), xlocale(3)
BSD March 11, 2005 BSD
|