Skip site navigation (1)Skip section navigation (2)

FreeBSD Manual Pages

  
 
  

home | help
SCANF_L(3)	       FreeBSD Library Functions Manual		    SCANF_L(3)

NAME
     scanf_l, fscanf_l,	sscanf_l, vfscanf_l, vscanf_l, vsscanf_l -- input for-
     mat conversion

LIBRARY
     Standard C	Library	(libc, -lc)

SYNOPSIS
     #include <stdio.h>
     #include <xlocale.h>

     int
     scanf_l(locale_t loc, const char *	restrict format, ...);

     int
     fscanf_l(FILE * restrict stream, locale_t loc,
	 const char * restrict format, ...);

     int
     sscanf_l(const char * restrict str, locale_t loc,
	 const char * restrict format, ...);

     int
     vfscanf_l(FILE * restrict stream, locale_t	loc,
	 const char * restrict format, va_list ap);

     int
     vscanf_l(locale_t loc, const char * restrict format, va_list ap);

     int
     vsscanf_l(const char * restrict str, locale_t loc,
	 const char * restrict format, va_list ap);

DESCRIPTION
     The above functions scan input according to a specified format in the lo-
     cale 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 ALSO
     scanf(3), xlocale(3)

STANDARDS
     These functions do	not conform to any specific standard so	they should be
     considered	as non-portable	local extensions.

HISTORY
     These functions first appeared in Darwin and were first implemented in
     FreeBSD 9.1.

FreeBSD	13.0			 April 8, 2012			  FreeBSD 13.0

NAME | LIBRARY | SYNOPSIS | DESCRIPTION | SEE ALSO | STANDARDS | HISTORY

Want to link to this manual page? Use this URL:
<https://man.freebsd.org/cgi/man.cgi?query=vsscanf_l&sektion=3&manpath=FreeBSD+12.2-RELEASE+and+Ports>

home | help