wcsftime
- convert date and time to a wide-character string
LIBRARY
Lb libc
SYNOPSIS
#include <wchar.h> size_t
Fo wcsftime
Fa wchar_t * restrict wcs size_t maxsize
Fa const wchar_t * restrict format const struct tm * restrict timeptr
Fc
DESCRIPTION
The
wcsftime ();
function is equivalent to the
strftime ();
function except for the types of its arguments.
Refer to
strftime(3)
for a detailed description.
COMPATIBILITY
Some early implementations of
wcsftime ();
had a
Fa format
argument with type
Vt const char *
instead of
Vt const wchar_t * .