summaryrefslogtreecommitdiff
path: root/lib/libc/time/strptime.c
AgeCommit message (Collapse)Author
2005-08-08zap remaining rcsid.Marc Espie
Kill old files that are no longer compiled. okay theo
2004-09-15signed vs unsigned char casting...Theo de Raadt
2004-01-20Stop parsing the buffer after an appropriate number of digits; from NetBSDTodd C. Miller
OK otto@ and miod@
2002-02-16Part one of userland __P removal. Done with a simple regexp with some minor ↵Todd C. Miller
hand editing to make comments line up correctly. Another pass is forthcoming that handles the cases that could not be done automatically.
2001-08-23Kill very odd use of __CONCAT: completely unneeded, obfuscated, andMarc Espie
not even ANSI (concatenation does not produce a valid token). Found out by heko@.
2001-01-08fix %p matching. checked by angelos. closes PR1612David Leonard
1998-04-25month/weekday names are case insensitive; jpo@EasternGraphics.comTheo de Raadt
1998-03-17Make %Y override an earlier %y (%y stuff gets delayed due to century specs).Todd C. Miller
1998-03-15%C influences %y regardless of ordering. This becomes a bit trickyTodd C. Miller
due to recursion so we do all the work in _strptime which takes an extra flag specifying whether or not to initialize some statics.
1998-03-15Fix %m, %I, %S, %y, %C, and %j conversions. Fixes by nakayosh@kcn.or.jpTodd C. Miller
and myself. Some bugs noted by woods@most.weird.com.
1998-02-04+ strptime, from netbsdTheo de Raadt