Possible Duplicate:
strptime() equivalent on Windows?
I'm trying to convert a string to date. strptime
taken from here does exactly what I want. However when I try to use it in my code the compiler complains about it:
error C2065: 'strptime' : undeclared identifier
I have included time.h
header. I'm using visual studio 2003, also tried 2008.
Is this really a standard function? Is there another function I could use without having to install additional libraries like boost?