WPRINTFL(3) BSD Library Functions Manual WPRINTFL(3)
NAME
wprintfl, fwprintfl, swprintfl, vwprintfl, vfwprintfl, vswprintfl
-- formatted wide character output conversion
LIBRARY
Standard C Library (libc, -lc)
SYNOPSIS
##include <>
##include <>
##include <>
int
fwprintfl(FILE * restrict stream, localet loc,
const wchart * restrict format, ...);
int
swprintfl(wchart * restrict ws, sizet n, localet loc,
const wchart * restrict format, ...);
int
wprintfl(localet loc, const wchart * restrict format, ...);
##include <>
int
vfwprintfl(FILE * restrict stream, localet loc,
const wchart * restrict, valist ap);
int
vswprintfl(wchart * restrict ws, sizet n, localet loc,
const wchart *restrict format, valist ap);
int
vwprintfl(localet loc, const wchart * restrict format, valist ap);
DESCRIPTION
The wprintfl(), fwprintfl(), swprintfl(), vwprintfl(), vfwprintfl(),
and vswprintfl() functions are extended locale versions of the
wprintf(), fwprintf(), swprintf(), vwprintf(), vfwprintf(), and
vswprintf() functions, respectively. Refer to their manual pages for
details. Also, see xlocale(3) for more information about extended
locales.
SEE ALSO
wprintf(3), xlocale(3)
BSD March 11, 2005 BSD
|