xref: /freebsd/lib/libc/stdtime/strptime.3 (revision 3a56015a2f5d630910177fa79a522bb95511ccf7)
1.\"
2.\" Copyright (c) 1997 Joerg Wunsch
3.\"
4.\" All rights reserved.
5.\"
6.\" Redistribution and use in source and binary forms, with or without
7.\" modification, are permitted provided that the following conditions
8.\" are met:
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.
14.\"
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.
25.\" "
26.Dd December 9, 2024
27.Dt STRPTIME 3
28.Os
29.Sh NAME
30.Nm strptime
31.Nd parse date and time string
32.Sh LIBRARY
33.Lb libc
34.Sh SYNOPSIS
35.In time.h
36.Ft char *
37.Fo strptime
38.Fa "const char * restrict buf"
39.Fa "const char * restrict format"
40.Fa "struct tm * restrict timeptr"
41.Fc
42.In time.h
43.In xlocale.h
44.Ft char *
45.Fn strptime_l "const char * restrict buf" "const char * restrict format" "struct tm * restrict timeptr" "locale_t loc"
46.Sh DESCRIPTION
47The
48.Fn strptime
49function parses the string in the buffer
50.Fa buf
51according to the string pointed to by
52.Fa format ,
53and fills in the elements of the structure pointed to by
54.Fa timeptr .
55The resulting values will be relative to the local time zone.
56Thus, it can be considered the reverse operation of
57.Xr strftime 3 .
58The
59.Fn strptime_l
60function does the same as
61.Fn strptime ,
62but takes an explicit locale rather than using the current locale.
63.Pp
64The
65.Fa format
66string consists of zero or more conversion specifications and
67ordinary characters.
68All ordinary characters are matched exactly with the buffer, where
69white space in the format string will match any amount of white space
70in the buffer.
71All conversion specifications are identical to those described in
72.Xr strftime 3 .
73.Pp
74Two-digit year values, including formats
75.Fa %y
76and
77.Fa \&%D ,
78are now interpreted as beginning at 1969 per POSIX requirements.
79Years 69-00 are interpreted in the 20th century (1969-2000), years
8001-68 in the 21st century (2001-2068).
81The
82.Fa \&%U
83and
84.Fa %W
85format specifiers accept any value within the range 00 to 53.
86.Pp
87If the
88.Fa format
89string does not contain enough conversion specifications to completely
90specify the resulting
91.Vt struct tm ,
92the unspecified members of
93.Va timeptr
94are left untouched.
95For example, if
96.Fa format
97is
98.Dq Li "%H:%M:%S" ,
99only
100.Va tm_hour ,
101.Va tm_sec
102and
103.Va tm_min
104will be modified.
105If time relative to today is desired, initialize the
106.Fa timeptr
107structure with today's date before passing it to
108.Fn strptime .
109.Sh RETURN VALUES
110Upon successful completion,
111.Fn strptime
112returns the pointer to the first character in
113.Fa buf
114that has not been required to satisfy the specified conversions in
115.Fa format .
116It returns
117.Dv NULL
118if one of the conversions failed.
119.Fn strptime_l
120returns the same values as
121.Fn strptime .
122.Sh SEE ALSO
123.Xr date 1 ,
124.Xr scanf 3 ,
125.Xr strftime 3
126.Sh HISTORY
127The
128.Fn strptime
129function appeared in
130.Fx 3.0 .
131.Sh AUTHORS
132The
133.Fn strptime
134function has been contributed by Powerdog Industries.
135.Pp
136This man page was written by
137.An J\(:org Wunsch .
138.Sh CAVEATS
139The
140.Fn strptime
141function assumes the Gregorian calendar and will produce incorrect
142results for dates prior to its introduction.
143.Sh BUGS
144Both the
145.Fa %e
146and
147.Fa %l
148format specifiers may incorrectly scan one too many digits
149if the intended values comprise only a single digit
150and that digit is followed immediately by another digit.
151Both specifiers accept zero-padded values,
152even though they are both defined as taking unpadded values.
153.Pp
154The
155.Fa %p
156format specifier has no effect unless it is parsed
157.Em after
158hour-related specifiers.
159Specifying
160.Fa %l
161without
162.Fa %p
163will produce undefined results.
164Note that 12AM
165(ante meridiem)
166is taken as midnight
167and 12PM
168(post meridiem)
169is taken as noon.
170.Pp
171The
172.Fa %Z
173format specifier only accepts time zone abbreviations of the local time zone,
174or the value "GMT".
175This limitation is because of ambiguity due to of the over loading of time
176zone abbreviations.
177One such example is
178.Fa EST
179which is both Eastern Standard Time and Eastern Australia Summer Time.
180.Pp
181The
182.Fn strptime
183function does not correctly handle multibyte characters in the
184.Fa format
185argument.
186