2 .\" Copyright (c) 1997 Joerg Wunsch
4 .\" All rights reserved.
6 .\" Redistribution and use in source and binary forms, with or without
7 .\" modification, are permitted provided that the following conditions
9 .\" 1. Redistributions of source code must retain the above copyright
10 .\" notice, this list of conditions and the following disclaimer.
11 .\" 2. Redistributions in binary form must reproduce the above copyright
12 .\" notice, this list of conditions and the following disclaimer in the
13 .\" documentation and/or other materials provided with the distribution.
15 .\" THIS SOFTWARE IS PROVIDED BY THE DEVELOPERS ``AS IS'' AND ANY EXPRESS OR
16 .\" IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
17 .\" OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
18 .\" IN NO EVENT SHALL THE DEVELOPERS BE LIABLE FOR ANY DIRECT, INDIRECT,
19 .\" INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
20 .\" NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
21 .\" DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
22 .\" THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23 .\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
24 .\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26 .\" $FreeBSD: src/lib/libc/stdtime/strptime.3,v 1.9.2.7 2001/12/14 18:33:59 ru Exp $
33 .Nd parse date and time string
39 .Fn strptime "const char *buf" "const char *format" "struct tm *timeptr"
43 function parses the string in the buffer
45 according to the string pointed to by
47 and fills in the elements of the structure pointed to by
49 The resulting values will be relative to the local time zone.
50 Thus, it can be considered the reverse operation of
55 string consists of zero or more conversion specifications and
57 All ordinary characters are matched exactly with the buffer, where
58 white space in the format string will match any amount of white space
60 All conversion specifications are identical to those described in
63 Two-digit year values, including formats
67 are now interpreted as beginning at 1969 per POSIX requirements.
68 Years 69-00 are interpreted in the 20th century (1969-2000), years
69 01-68 in the 21st century (2001-2068).
71 Upon successful completion,
73 returns the pointer to the first character in
75 that has not been required to satisfy the specified conversions in
79 if one of the conversions failed.
87 function has been contributed by Powerdog Industries.
89 This man page was written by
101 format specifiers may incorrectly scan one too many digits
102 if the intended values comprise only a single digit
103 and that digit is followed immediately by another digit.
104 Both specifiers accept zero-padded values,
105 even though they are both defined as taking unpadded values.
109 format specifier has no effect unless it is parsed
111 hour-related specifiers.
116 will produce undefined results.
128 format specifiers accept any value within the range 00 to 53
129 without validating against other values supplied (like month
130 or day of the year, for example).
134 format specifier only accepts time zone abbreviations of the local time zone,
136 This limitation is because of ambiguity due to of the over loading of time
137 zone abbreviations. One such example is
139 which is both Eastern Standard Time and Eastern Australia Summer Time.