aboutsummaryrefslogtreecommitdiff
path: root/lib/libc/stdtime/strptime.c
Commit message (Expand)AuthorAgeFilesLines
* Remove copyright strings ifdef'd outWarner Losh2023-11-271-8/+0
* Remove $FreeBSD$: one-line .c patternWarner Losh2023-08-161-2/+0
* spdx: The BSD-2-Clause-FreeBSD identifier is obsolete, drop -FreeBSDWarner Losh2023-05-121-1/+1
* Bring our tzcode up to date.Dag-Erling Smørgrav2023-01-101-0/+1
* libc: drop "All rights reserved" from Foundation copyrightsEd Maste2022-08-041-1/+1
* strptime: make %k and %l specifiers match their description inYuri Pankov2018-11-031-5/+12
* strptime: fix parsing of tm_year when both %C and %y appear in theYuri Pankov2018-10-171-9/+17
* strptime: disallow zero hour for %I (defined by POSIX as [01,12]) and %lYuri Pankov2018-10-131-1/+1
* Disallow zero day of month from strptime("%d").Konstantin Belousov2018-10-081-1/+1
* libc: further adoption of SPDX licensing ID tags.Pedro F. Giffuni2017-11-251-0/+2
* 1) For already non-standard %z extension implement GNU compatible formats:Andrey A. Chernov2016-09-211-0/+6
* 1) Microoptimize %p case.Andrey A. Chernov2016-09-211-14/+26
* 1) Fix the case we have less arguments for format string than we expected.Andrey A. Chernov2014-10-071-4/+3
* Back out timegm error check from r272562.Andrey A. Chernov2014-10-071-2/+0
* 1) For %Z format, understand "UTC" name too.Andrey A. Chernov2014-10-051-1/+5
* strptime: %s format fix.Pedro F. Giffuni2014-10-021-1/+4
* strptime: fix bug introduced in r272273.Pedro F. Giffuni2014-10-011-1/+2
* Add strptime(3) support for %U and %W (take 2)Pedro F. Giffuni2014-09-281-7/+119
* Revert r272122Pedro F. Giffuni2014-09-251-126/+5
* Add strptime(3) support for %U and %WPedro F. Giffuni2014-09-251-5/+126
* strptime: add support for %t and %nPedro F. Giffuni2014-06-181-38/+20
* stdtime: style(9) fixes.Pedro F. Giffuni2014-06-181-53/+52
* Update license to strptime(3) implementation.Pedro F. Giffuni2014-06-161-28/+5
* Implement xlocale APIs from Darwin, mainly for use by libc++. This adds aDavid Chisnall2011-11-201-65/+105
* strptime(3) confused July with June with the fr_FR locale.Edwin Groothuis2010-05-091-0/+8
* Use (unsigned char) cast for ctype macroAndrey A. Chernov2009-09-021-1/+1
* Implement %z for strptime.Xin LI2009-06-251-0/+28
* Detect range errors when using the %s specifier. Previously, LONG_MAXJacques Vidrine2003-11-171-3/+10
* Backout my changes in rev. 1.32 and 1.33. There is some code that dependsMike Makonnen2003-04-301-4/+2
* Zero out the struct tm supplied by the caller. Otherwise,Mike Makonnen2003-04-051-0/+1
* Fill in the rest of the fields in the resulting struct tmMike Makonnen2003-03-291-2/+3
* Ditch a static global and the mutex that protected it. Achieve theMike Makonnen2003-03-121-27/+18
* Eliminate 61 warnings emitted at WARNS=2 (leaving 53 to go).Jacques Vidrine2003-02-161-3/+3
* Style: One space between "restrict" qualifier and "*".Tim J. Robbins2002-09-061-2/+2
* - Add the C99 'restrict' qualifier using the '__restrict' macro toRobert Drehmel2002-08-141-1/+2
* Fix the style of the SCM ID's.David E. O'Brien2002-03-221-5/+2
* Recognize the %s format.Dima Dorfman2001-07-131-0/+16
* Get rid of non-standard %E[Ff] formats, userland apps already fixedAndrey A. Chernov2001-03-211-16/+1
* Relax local FreeBSD restrictions on 3 chars abbrev. name length and %c formatAndrey A. Chernov2001-03-181-2/+13
* Make 'A' and 'a', 'B' and 'b' the same, per POSIXAndrey A. Chernov2001-03-181-26/+16
* Implement ampm_fmt (%r) per POSIXAndrey A. Chernov2001-03-021-1/+1
* Hardcode c_fmt in a different way since used in nl_langinfo nowAndrey A. Chernov2001-02-081-2/+2
* Catch up to latest chanage in timelocal structures exporting.Alexey Zelkin2001-02-081-22/+23
* Remove _THREAD_SAFE and make libc thread-safe by default byDaniel Eischen2001-01-241-14/+9
* Force "%c" to be ctime-compatibleAndrey A. Chernov2000-10-261-1/+2
* Prevent digit-gobbling for all but %l and %e, which can't be fixed.Sheldon Hearn1999-12-081-12/+46
* Accept 12 for %l, because it's logical to expect "%l:%M" to work forSheldon Hearn1999-12-081-1/+1
* %Ex -> %Ef to not conflict with POSIXAndrey A. Chernov1999-11-301-1/+14
* Stricter checking %A vs %aAndrey A. Chernov1999-11-301-11/+13
* Fix %C handlingAndrey A. Chernov1999-11-301-14/+52