summaryrefslogtreecommitdiffstats
path: root/lib/libc/time/strptime.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* signed vs unsigned char casting...deraadt2004-09-151-2/+2
|
* Stop parsing the buffer after an appropriate number of digits; from NetBSDmillert2004-01-201-22/+19
| | | | OK otto@ and miod@
* Part one of userland __P removal. Done with a simple regexp with some minor hand editing to make comments line up correctly. Another pass is forthcoming that handles the cases that could not be done automatically.millert2002-02-161-3/+3
|
* Kill very odd use of __CONCAT: completely unneeded, obfuscated, andespie2001-08-231-2/+2
| | | | | | not even ANSI (concatenation does not produce a valid token). Found out by heko@.
* fix %p matching. checked by angelos. closes PR1612d2001-01-081-5/+7
|
* month/weekday names are case insensitive; jpo@EasternGraphics.comderaadt1998-04-251-31/+31
|
* Make %Y override an earlier %y (%y stuff gets delayed due to century specs).millert1998-03-171-1/+2
|
* %C influences %y regardless of ordering. This becomes a bit trickymillert1998-03-151-20/+40
| | | | | due to recursion so we do all the work in _strptime which takes an extra flag specifying whether or not to initialize some statics.
* Fix %m, %I, %S, %y, %C, and %j conversions. Fixes by nakayosh@kcn.or.jpmillert1998-03-151-12/+19
| | | | and myself. Some bugs noted by woods@most.weird.com.
* + strptime, from netbsdderaadt1998-02-041-0/+371