|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365 |
- <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
- <html>
- <!-- Created by GNU Texinfo 6.5, http://www.gnu.org/software/texinfo/ -->
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
- <title>strftime (The Red Hat newlib C Library)</title>
-
- <meta name="description" content="strftime (The Red Hat newlib C Library)">
- <meta name="keywords" content="strftime (The Red Hat newlib C Library)">
- <meta name="resource-type" content="document">
- <meta name="distribution" content="global">
- <meta name="Generator" content="makeinfo">
- <link href="index.html#Top" rel="start" title="Top">
- <link href="Document-Index.html#Document-Index" rel="index" title="Document Index">
- <link href="Document-Index.html#SEC_Contents" rel="contents" title="Table of Contents">
- <link href="Timefns.html#Timefns" rel="up" title="Timefns">
- <link href="time.html#time" rel="next" title="time">
- <link href="mktime.html#mktime" rel="prev" title="mktime">
- <style type="text/css">
- <!--
- a.summary-letter {text-decoration: none}
- blockquote.indentedblock {margin-right: 0em}
- blockquote.smallindentedblock {margin-right: 0em; font-size: smaller}
- blockquote.smallquotation {font-size: smaller}
- div.display {margin-left: 3.2em}
- div.example {margin-left: 3.2em}
- div.lisp {margin-left: 3.2em}
- div.smalldisplay {margin-left: 3.2em}
- div.smallexample {margin-left: 3.2em}
- div.smalllisp {margin-left: 3.2em}
- kbd {font-style: oblique}
- pre.display {font-family: inherit}
- pre.format {font-family: inherit}
- pre.menu-comment {font-family: serif}
- pre.menu-preformatted {font-family: serif}
- pre.smalldisplay {font-family: inherit; font-size: smaller}
- pre.smallexample {font-size: smaller}
- pre.smallformat {font-family: inherit; font-size: smaller}
- pre.smalllisp {font-size: smaller}
- span.nolinebreak {white-space: nowrap}
- span.roman {font-family: initial; font-weight: normal}
- span.sansserif {font-family: sans-serif; font-weight: normal}
- ul.no-bullet {list-style: none}
- -->
- </style>
-
-
- </head>
-
- <body lang="en">
- <a name="strftime"></a>
- <div class="header">
- <p>
- Next: <a href="time.html#time" accesskey="n" rel="next">time</a>, Previous: <a href="mktime.html#mktime" accesskey="p" rel="prev">mktime</a>, Up: <a href="Timefns.html#Timefns" accesskey="u" rel="up">Timefns</a> [<a href="Document-Index.html#SEC_Contents" title="Table of contents" rel="contents">Contents</a>][<a href="Document-Index.html#Document-Index" title="Index" rel="index">Index</a>]</p>
- </div>
- <hr>
- <a name="strftime_002c-strftime_005fl_002d_002d_002dconvert-date-and-time-to-a-formatted-string"></a>
- <h3 class="section">8.8 <code>strftime</code>, <code>strftime_l</code>—convert date and time to a formatted string</h3>
- <a name="index-strftime"></a>
- <a name="index-strftime_005fl"></a>
- <p><strong>Synopsis</strong>
- </p><div class="example">
- <pre class="example">#include <time.h>
- size_t strftime(char *restrict <var>s</var>, size_t <var>maxsize</var>,
- const char *restrict <var>format</var>,
- const struct tm *restrict <var>timp</var>);
- size_t strftime_l(char *restrict <var>s</var>, size_t <var>maxsize</var>,
- const char *restrict <var>format</var>,
- const struct tm *restrict <var>timp</var>,
- locale_t <var>locale</var>);
-
- </pre></div>
- <p><strong>Description</strong><br>
- <code>strftime</code> converts a <code>struct tm</code> representation of the time (at
- <var>timp</var>) into a null-terminated string, starting at <var>s</var> and occupying
- no more than <var>maxsize</var> characters.
- </p>
- <p><code>strftime_l</code> is like <code>strftime</code> but creates a string in a format
- as expected in locale <var>locale</var>. If <var>locale</var> is LC_GLOBAL_LOCALE or
- not a valid locale object, the behaviour is undefined.
- </p>
- <p>You control the format of the output using the string at <var>format</var>.
- <code>*<var>format</var></code> can contain two kinds of specifications: text to be
- copied literally into the formatted string, and time conversion
- specifications. Time conversion specifications are two- and
- three-character sequences beginning with ‘<code>%</code>’ (use ‘<code>%%</code>’ to
- include a percent sign in the output). Each defined conversion
- specification selects only the specified field(s) of calendar time
- data from <code>*<var>timp</var></code>, and converts it to a string in one of the
- following ways:
- </p>
- <dl compact="compact">
- <dt><code>%a</code></dt>
- <dd><p>The abbreviated weekday name according to the current locale. [tm_wday]
- </p>
- </dd>
- <dt><code>%A</code></dt>
- <dd><p>The full weekday name according to the current locale.
- In the default "C" locale, one of ‘<code>Sunday</code>’, ‘<code>Monday</code>’, ‘<code>Tuesday</code>’,
- ‘<code>Wednesday</code>’, ‘<code>Thursday</code>’, ‘<code>Friday</code>’, ‘<code>Saturday</code>’. [tm_wday]
- </p>
- </dd>
- <dt><code>%b</code></dt>
- <dd><p>The abbreviated month name according to the current locale. [tm_mon]
- </p>
- </dd>
- <dt><code>%B</code></dt>
- <dd><p>The full month name according to the current locale.
- In the default "C" locale, one of ‘<code>January</code>’, ‘<code>February</code>’,
- ‘<code>March</code>’, ‘<code>April</code>’, ‘<code>May</code>’, ‘<code>June</code>’, ‘<code>July</code>’,
- ‘<code>August</code>’, ‘<code>September</code>’, ‘<code>October</code>’, ‘<code>November</code>’,
- ‘<code>December</code>’. [tm_mon]
- </p>
- </dd>
- <dt><code>%c</code></dt>
- <dd><p>The preferred date and time representation for the current locale.
- [tm_sec, tm_min, tm_hour, tm_mday, tm_mon, tm_year, tm_wday]
- </p>
- </dd>
- <dt><code>%C</code></dt>
- <dd><p>The century, that is, the year divided by 100 then truncated. For
- 4-digit years, the result is zero-padded and exactly two characters;
- but for other years, there may a negative sign or more digits. In
- this way, ‘<code>%C%y</code>’ is equivalent to ‘<code>%Y</code>’. [tm_year]
- </p>
- </dd>
- <dt><code>%d</code></dt>
- <dd><p>The day of the month, formatted with two digits (from ‘<code>01</code>’ to
- ‘<code>31</code>’). [tm_mday]
- </p>
- </dd>
- <dt><code>%D</code></dt>
- <dd><p>A string representing the date, in the form ‘<code>"%m/%d/%y"</code>’.
- [tm_mday, tm_mon, tm_year]
- </p>
- </dd>
- <dt><code>%e</code></dt>
- <dd><p>The day of the month, formatted with leading space if single digit
- (from ‘<code>1</code>’ to ‘<code>31</code>’). [tm_mday]
- </p>
- </dd>
- <dt><code>%E<code>x</code></code></dt>
- <dd><p>In some locales, the E modifier selects alternative representations of
- certain modifiers <code>x</code>. In newlib, it is ignored, and treated as %<code>x</code>.
- </p>
- </dd>
- <dt><code>%F</code></dt>
- <dd><p>A string representing the ISO 8601:2000 date format, in the form
- ‘<code>"%Y-%m-%d"</code>’. [tm_mday, tm_mon, tm_year]
- </p>
- </dd>
- <dt><code>%g</code></dt>
- <dd><p>The last two digits of the week-based year, see specifier %G (from
- ‘<code>00</code>’ to ‘<code>99</code>’). [tm_year, tm_wday, tm_yday]
- </p>
- </dd>
- <dt><code>%G</code></dt>
- <dd><p>The week-based year. In the ISO 8601:2000 calendar, week 1 of the year
- includes January 4th, and begin on Mondays. Therefore, if January 1st,
- 2nd, or 3rd falls on a Sunday, that day and earlier belong to the last
- week of the previous year; and if December 29th, 30th, or 31st falls
- on Monday, that day and later belong to week 1 of the next year. For
- consistency with %Y, it always has at least four characters.
- Example: "%G" for Saturday 2nd January 1999 gives "1998", and for
- Tuesday 30th December 1997 gives "1998". [tm_year, tm_wday, tm_yday]
- </p>
- </dd>
- <dt><code>%h</code></dt>
- <dd><p>Synonym for "%b". [tm_mon]
- </p>
- </dd>
- <dt><code>%H</code></dt>
- <dd><p>The hour (on a 24-hour clock), formatted with two digits (from
- ‘<code>00</code>’ to ‘<code>23</code>’). [tm_hour]
- </p>
- </dd>
- <dt><code>%I</code></dt>
- <dd><p>The hour (on a 12-hour clock), formatted with two digits (from
- ‘<code>01</code>’ to ‘<code>12</code>’). [tm_hour]
- </p>
- </dd>
- <dt><code>%j</code></dt>
- <dd><p>The count of days in the year, formatted with three digits
- (from ‘<code>001</code>’ to ‘<code>366</code>’). [tm_yday]
- </p>
- </dd>
- <dt><code>%k</code></dt>
- <dd><p>The hour (on a 24-hour clock), formatted with leading space if single
- digit (from ‘<code>0</code>’ to ‘<code>23</code>’). Non-POSIX extension (c.p. %I). [tm_hour]
- </p>
- </dd>
- <dt><code>%l</code></dt>
- <dd><p>The hour (on a 12-hour clock), formatted with leading space if single
- digit (from ‘<code>1</code>’ to ‘<code>12</code>’). Non-POSIX extension (c.p. %H). [tm_hour]
- </p>
- </dd>
- <dt><code>%m</code></dt>
- <dd><p>The month number, formatted with two digits (from ‘<code>01</code>’ to ‘<code>12</code>’).
- [tm_mon]
- </p>
- </dd>
- <dt><code>%M</code></dt>
- <dd><p>The minute, formatted with two digits (from ‘<code>00</code>’ to ‘<code>59</code>’). [tm_min]
- </p>
- </dd>
- <dt><code>%n</code></dt>
- <dd><p>A newline character (‘<code>\n</code>’).
- </p>
- </dd>
- <dt><code>%O<code>x</code></code></dt>
- <dd><p>In some locales, the O modifier selects alternative digit characters
- for certain modifiers <code>x</code>. In newlib, it is ignored, and treated as %<code>x</code>.
- </p>
- </dd>
- <dt><code>%p</code></dt>
- <dd><p>Either ‘<code>AM</code>’ or ‘<code>PM</code>’ as appropriate, or the corresponding strings for
- the current locale. [tm_hour]
- </p>
- </dd>
- <dt><code>%P</code></dt>
- <dd><p>Same as ’<code>%p</code>’, but in lowercase. This is a GNU extension. [tm_hour]
- </p>
- </dd>
- <dt><code>%r</code></dt>
- <dd><p>Replaced by the time in a.m. and p.m. notation. In the "C" locale this
- is equivalent to "%I:%M:%S %p". In locales which don’t define a.m./p.m.
- notations, the result is an empty string. [tm_sec, tm_min, tm_hour]
- </p>
- </dd>
- <dt><code>%R</code></dt>
- <dd><p>The 24-hour time, to the minute. Equivalent to "%H:%M". [tm_min, tm_hour]
- </p>
- </dd>
- <dt><code>%s</code></dt>
- <dd><p>The time elapsed, in seconds, since the start of the Unix epoch at
- 1970-01-01 00:00:00 UTC.
- </p>
- </dd>
- <dt><code>%S</code></dt>
- <dd><p>The second, formatted with two digits (from ‘<code>00</code>’ to ‘<code>60</code>’). The
- value 60 accounts for the occasional leap second. [tm_sec]
- </p>
- </dd>
- <dt><code>%t</code></dt>
- <dd><p>A tab character (‘<code>\t</code>’).
- </p>
- </dd>
- <dt><code>%T</code></dt>
- <dd><p>The 24-hour time, to the second. Equivalent to "%H:%M:%S". [tm_sec,
- tm_min, tm_hour]
- </p>
- </dd>
- <dt><code>%u</code></dt>
- <dd><p>The weekday as a number, 1-based from Monday (from ‘<code>1</code>’ to
- ‘<code>7</code>’). [tm_wday]
- </p>
- </dd>
- <dt><code>%U</code></dt>
- <dd><p>The week number, where weeks start on Sunday, week 1 contains the first
- Sunday in a year, and earlier days are in week 0. Formatted with two
- digits (from ‘<code>00</code>’ to ‘<code>53</code>’). See also <code>%W</code>. [tm_wday, tm_yday]
- </p>
- </dd>
- <dt><code>%V</code></dt>
- <dd><p>The week number, where weeks start on Monday, week 1 contains January 4th,
- and earlier days are in the previous year. Formatted with two digits
- (from ‘<code>01</code>’ to ‘<code>53</code>’). See also <code>%G</code>. [tm_year, tm_wday, tm_yday]
- </p>
- </dd>
- <dt><code>%w</code></dt>
- <dd><p>The weekday as a number, 0-based from Sunday (from ‘<code>0</code>’ to ‘<code>6</code>’).
- [tm_wday]
- </p>
- </dd>
- <dt><code>%W</code></dt>
- <dd><p>The week number, where weeks start on Monday, week 1 contains the first
- Monday in a year, and earlier days are in week 0. Formatted with two
- digits (from ‘<code>00</code>’ to ‘<code>53</code>’). [tm_wday, tm_yday]
- </p>
- </dd>
- <dt><code>%x</code></dt>
- <dd><p>Replaced by the preferred date representation in the current locale.
- In the "C" locale this is equivalent to "%m/%d/%y".
- [tm_mon, tm_mday, tm_year]
- </p>
- </dd>
- <dt><code>%X</code></dt>
- <dd><p>Replaced by the preferred time representation in the current locale.
- In the "C" locale this is equivalent to "%H:%M:%S". [tm_sec, tm_min, tm_hour]
- </p>
- </dd>
- <dt><code>%y</code></dt>
- <dd><p>The last two digits of the year (from ‘<code>00</code>’ to ‘<code>99</code>’). [tm_year]
- (Implementation interpretation: always positive, even for negative years.)
- </p>
- </dd>
- <dt><code>%Y</code></dt>
- <dd><p>The full year, equivalent to <code>%C%y</code>. It will always have at least four
- characters, but may have more. The year is accurate even when tm_year
- added to the offset of 1900 overflows an int. [tm_year]
- </p>
- </dd>
- <dt><code>%z</code></dt>
- <dd><p>The offset from UTC. The format consists of a sign (negative is west of
- Greewich), two characters for hour, then two characters for minutes
- (-hhmm or +hhmm). If tm_isdst is negative, the offset is unknown and no
- output is generated; if it is zero, the offset is the standard offset for
- the current time zone; and if it is positive, the offset is the daylight
- savings offset for the current timezone. The offset is determined from
- the TZ environment variable, as if by calling tzset(). [tm_isdst]
- </p>
- </dd>
- <dt><code>%Z</code></dt>
- <dd><p>The time zone name. If tm_isdst is negative, no output is generated.
- Otherwise, the time zone name is based on the TZ environment variable,
- as if by calling tzset(). [tm_isdst]
- </p>
- </dd>
- <dt><code>%%</code></dt>
- <dd><p>A single character, ‘<code>%</code>’.
- </p></dd>
- </dl>
-
-
- <br>
- <p><strong>Returns</strong><br>
- When the formatted time takes up no more than <var>maxsize</var> characters,
- the result is the length of the formatted string. Otherwise, if the
- formatting operation was abandoned due to lack of room, the result is
- <code>0</code>, and the string starting at <var>s</var> corresponds to just those
- parts of <code>*<var>format</var></code> that could be completely filled in within the
- <var>maxsize</var> limit.
- </p>
- <br>
- <p><strong>Portability</strong><br>
- ANSI C requires <code>strftime</code>, but does not specify the contents of
- <code>*<var>s</var></code> when the formatted string would require more than
- <var>maxsize</var> characters. Unrecognized specifiers and fields of
- <code>timp</code> that are out of range cause undefined results. Since some
- formats expand to 0 bytes, it is wise to set <code>*<var>s</var></code> to a nonzero
- value beforehand to distinguish between failure and an empty string.
- This implementation does not support <code>s</code> being NULL, nor overlapping
- <code>s</code> and <code>format</code>.
- </p>
- <p><code>strftime_l</code> is POSIX-1.2008.
- </p>
- <p><code>strftime</code> and <code>strftime_l</code> require no supporting OS subroutines.
- </p>
- <br>
- <p><strong>Bugs</strong><br>
- (NOT Cygwin:) <code>strftime</code> ignores the LC_TIME category of the current
- locale, hard-coding the "C" locale settings.
- </p>
- <br>
-
- <hr>
- <div class="header">
- <p>
- Next: <a href="time.html#time" accesskey="n" rel="next">time</a>, Previous: <a href="mktime.html#mktime" accesskey="p" rel="prev">mktime</a>, Up: <a href="Timefns.html#Timefns" accesskey="u" rel="up">Timefns</a> [<a href="Document-Index.html#SEC_Contents" title="Table of contents" rel="contents">Contents</a>][<a href="Document-Index.html#Document-Index" title="Index" rel="index">Index</a>]</p>
- </div>
-
-
-
- </body>
- </html>
|