How do you obtain a formatted date and time for the current locale in C?

Posted by jwaddell on Stack Overflow See other posts from Stack Overflow or by jwaddell
Published on 2010-05-06T04:06:53Z Indexed on 2010/05/06 4:08 UTC
Read the original article Hit count: 265

Filed under:
|
|
|
|

What C function should I call to obtain a formatted date and time for the locale where the program is being executed?

I'm asking this question because I have run into a problem using the ClamAV daemon API. The VERSION command returns the date and time of the latest virus definitions, but the code uses a call to ctime to format it. As far as I can tell ctime does not format the datetime according to the current locale and uses the English abbreviations for days of the week and the month in the returned string. This causes problems as my Java program which uses the ClamAV API does respect the current locale and thus expects the day of the week and month name to have the local abbreviations.

The datetime format would need to be in the same format as that produced by ctime:

Www Mmm dd hh:mm:ss yyyy

Where Www is the weekday, Mmm the month in letters, dd the day of the month, hh:mm:ss the time, and yyyy the year.

I could rewrite the Java program to always assume English dates but I'd be happier to submit a patch to ClamAV as it seems like a bug on their side to me.

© Stack Overflow or respective owner

Related posts about ctime

Related posts about formatting