PRINTF_L(3) | Library Functions Manual | PRINTF_L(3) |
printf_l
, asprintf_l
,
fprintf_l
, snprintf_l
,
sprintf_l
, vasprintf_l
,
vfprintf_l
, vprintf_l
,
vsnprintf_l
, vsprintf_l
—
#include <stdio.h>
#include <locale.h>
int
printf_l
(locale_t
loc, const char *
restrict format,
...);
int
asprintf_l
(char
**ret, locale_t
loc, const char *
format, ...);
int
fprintf_l
(FILE
* restrict stream,
locale_t loc,
const char * restrict
format, ...);
int
snprintf_l
(char
* restrict str, size_t
size, locale_t loc,
const char * restrict
format, ...);
int
sprintf_l
(char
* restrict str, locale_t
loc, const char *
restrict format,
...);
#include
<stdarg.h>
int
vasprintf_l
(char
**ret, locale_t
loc, const char
*format, va_list
ap);
int
vfprintf_l
(FILE
* restrict stream,
locale_t loc,
const char * restrict
format, va_list
ap);
int
vprintf_l
(locale_t
loc, const char *
restrict format, va_list
ap);
int
vsnprintf_l
(char
* restrict str, size_t
size, locale_t loc,
const char * restrict
format, va_list
ap);
int
vsprintf_l
(char
* restrict str, locale_t
loc, const char *
restrict format, va_list
ap);
December 29, 2016 | NetBSD 9.2 |