index
:
curl
gemini-meta
master
cURL mirror with patches applied
Ben
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
lib
/
parsedate.c
Age
Commit message (
Expand
)
Author
2008-10-23
moved the Curl_raw_ functions into the new lib/rawstr.c file for easier curlx_
Daniel Stenberg
2008-10-22
Changed some arrays of char* to arrays of char[] to reduce data size and
Dan Fandrich
2008-10-16
Renamed Curl_ascii_equal to Curl_raw_equal and bugfixed the my_toupper function
Daniel Stenberg
2008-10-15
- Pascal Terjan filed bug #2154627
Daniel Stenberg
2008-10-09
I replaced the use of 'struct tm' with a private clone of that struct simply
Daniel Stenberg
2008-09-29
Made the month days table static const
Dan Fandrich
2008-09-23
- Introducing Jamie Lokier's function for date to epoch conversion used in the
Daniel Stenberg
2008-09-18
fix compiler warning: external definition with no prior declaration
Yang Tse
2008-06-22
Stopped using ranges in scanf character sequences (e.g. %[a-z]) since that
Dan Fandrich
2008-01-06
Jeff Johnson filed bug report #1863171
Daniel Stenberg
2007-12-08
All static functions that were previously name Curl_* something no longer
Daniel Stenberg
2007-11-07
if () => if()
Daniel Stenberg
2007-11-06
Constified from arguments.
Gisle Vanem
2006-12-05
Martin Skinner brought back bug report #1230118 to haunt us once again.
Daniel Stenberg
2006-10-17
Avoid typecasting a signed char to an int when using is*() functions, as that
Daniel Stenberg
2005-12-30
fix questionable compare
Marty Kuhrt
2005-12-30
putting back into dist
Marty Kuhrt
2005-10-04
Michael Wallner reported that the date parser had wrong offset stored for
Daniel Stenberg
2005-08-09
Christopher R. Palmer fixed the offsets used for date parsings when the time
Daniel Stenberg
2005-07-05
Gisle Vanem came up with a nice little work-around for bug #1230118. It
Daniel Stenberg
2005-04-26
Cory Nelson's work on nuking compiler warnings when building on x64 with
Daniel Stenberg
2005-03-31
Updated the copyright year since changes have been this year.
Daniel Stenberg
2005-03-08
mktime() returns a time_t. time_t is often 32 bits, even on many architectures
Daniel Stenberg
2005-02-11
Removed all uses of strftime() since it uses the localised version of the
Daniel Stenberg
2004-12-20
Make some more arrays of pointers const.
Dan Fandrich
2004-11-29
if gmtime() returns NULL, this returns -1 to bail out nicely
Daniel Stenberg
2004-11-11
dates from 2038 or later now return 0x7fffffff when 32 bit time_t is used
Daniel Stenberg
2004-09-20
less long => int implicit conversion warnings
Daniel Stenberg
2004-09-15
Replaced the former date parser with a rewrite. No more yacc/bison needed.
Daniel Stenberg
2004-09-13
and moved back the month array to a static one since the ftp code won't need
Daniel Stenberg
2004-09-13
support for YYYYMMDD added, which allows us to keep using the lib/ftp.c code
Daniel Stenberg
2004-09-13
added more examples/docs in the top comment
Daniel Stenberg
2004-09-13
Since many users probably already use local time strings as input, I now
Daniel Stenberg
2004-09-11
more docs and fixed the delta compared to GMT that prevented test case 141 to
Daniel Stenberg
2004-09-11
slightly better but still lacks
Daniel Stenberg
2004-09-11
getdate replacement code. smaller, slicker, faster.
Daniel Stenberg