1WCSFTIME(3P) POSIX Programmer's Manual WCSFTIME(3P)
2
3
4
6 This manual page is part of the POSIX Programmer's Manual. The Linux
7 implementation of this interface may differ (consult the corresponding
8 Linux manual page for details of Linux behavior), or the interface may
9 not be implemented on Linux.
10
11
13 wcsftime — convert date and time to a wide-character string
14
16 #include <wchar.h>
17
18 size_t wcsftime(wchar_t *restrict wcs, size_t maxsize,
19 const wchar_t *restrict format, const struct tm *restrict timeptr);
20
22 The functionality described on this reference page is aligned with the
23 ISO C standard. Any conflict between the requirements described here
24 and the ISO C standard is unintentional. This volume of POSIX.1‐2008
25 defers to the ISO C standard.
26
27 The wcsftime() function shall be equivalent to the strftime() function,
28 except that:
29
30 * The argument wcs points to the initial element of an array of wide
31 characters into which the generated output is to be placed.
32
33 * The argument maxsize indicates the maximum number of wide charac‐
34 ters to be placed in the output array.
35
36 * The argument format is a wide-character string and the conversion
37 specifications are replaced by corresponding sequences of wide
38 characters.
39
40 * The return value indicates the number of wide characters placed in
41 the output array.
42
43 If copying takes place between objects that overlap, the behavior is
44 undefined.
45
47 If the total number of resulting wide-character codes including the
48 terminating null wide-character code is no more than maxsize, wcsf‐
49 time() shall return the number of wide-character codes placed into the
50 array pointed to by wcs, not including the terminating null wide-char‐
51 acter code. Otherwise, zero is returned and the contents of the array
52 are unspecified.
53
55 No errors are defined.
56
57 The following sections are informative.
58
60 None.
61
63 None.
64
66 None.
67
69 None.
70
72 strftime()
73
74 The Base Definitions volume of POSIX.1‐2008, <wchar.h>
75
77 Portions of this text are reprinted and reproduced in electronic form
78 from IEEE Std 1003.1, 2013 Edition, Standard for Information Technology
79 -- Portable Operating System Interface (POSIX), The Open Group Base
80 Specifications Issue 7, Copyright (C) 2013 by the Institute of Electri‐
81 cal and Electronics Engineers, Inc and The Open Group. (This is
82 POSIX.1-2008 with the 2013 Technical Corrigendum 1 applied.) In the
83 event of any discrepancy between this version and the original IEEE and
84 The Open Group Standard, the original IEEE and The Open Group Standard
85 is the referee document. The original Standard can be obtained online
86 at http://www.unix.org/online.html .
87
88 Any typographical or formatting errors that appear in this page are
89 most likely to have been introduced during the conversion of the source
90 files to man page format. To report such errors, see https://www.ker‐
91 nel.org/doc/man-pages/reporting_bugs.html .
92
93
94
95IEEE/The Open Group 2013 WCSFTIME(3P)