|
NAMEscanf_l , fscanf_l ,
sscanf_l , vfscanf_l ,
vscanf_l , vsscanf_l —
input format conversion
LIBRARYStandard C Library (libc, -lc)SYNOPSIS#include <stdio.h>
#include <xlocale.h>
int
int
int
int
int
int
DESCRIPTIONThe above functions scan input according to a specified format in the locale loc. They behave in the same way as the versions without the _l suffix, but use the specific locale rather than the global or per-thread locale. See the specific manual pages for more information.SEE ALSOscanf(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. |