This question already has an answer here:
- strptime() equivalent on Windows? 5 answers
I wrote this really nice app that works just fine in Linux.
It uses strptime(). Windows doesn't have this.
Is there a Windows alternative for this?
My coworker needs to use this app.
(I tried googling it already to no avail)
I have written a strptime which I use on Windows to make up for it's absence in the Microsoft C runtime library. Here it is:
I referred to the online man page man strptime(3) when writing this function.