C Library for Parsing Date Time
Posted
by adk
on Stack Overflow
See other posts from Stack Overflow
or by adk
Published on 2009-09-12T03:13:40Z
Indexed on
2010/03/28
3:13 UTC
Read the original article
Hit count: 305
Is one aware of a date parsing function for c. I am looking for something like:
time = parse_time("9/10/2009");
printf("%d\n", time->date);
time2 = parse_time("Monday September 10th 2009")
time2 = parse_time("Monday September 10th 2009 12:30 AM")
Thank you
© Stack Overflow or respective owner