|
NAMEprintf_l , asprintf_l ,
fprintf_l , snprintf_l ,
sprintf_l , vasprintf_l ,
vfprintf_l , vprintf_l ,
vsnprintf_l , vsprintf_l
—
formatted output conversion
LIBRARYStandard C Library (libc, -lc)SYNOPSIS#include <stdio.h>
#include <xlocale.h>
int
int
int
int
int
int
int
int
int
int
DESCRIPTIONThe above functions are used to convert formatted output in the locale loc. They behave in the same way as the versions without the _l suffix, but use the specified locale rather than the global or per-thread locale. See the specific manual pages for more information.SEE ALSOprintf(3), xlocale(3)STANDARDSThese functions do not conform to any specific standard so they should be considered as non-portable local extensions.HISTORYThese functions first appeared in Darwin and were first implemented in FreeBSD 9.1.
Visit the GSP FreeBSD Man Page Interface. |