2 Copyright © 1995-2007, The AROS Development Team. All rights reserved.
5 Convert a time into a string, reentrant.
8 /*****************************************************************************
20 The asctime_r() function converts the broken-down time value tm
21 into a string with this format:
23 "Wed Jun 30 21:49:08 1993\n"
26 tm - The broken down time
27 buf - Buffer of at least 26 characters to store the string in
30 The pointer passed in buf, containing the converted time. Note that
31 there is a newline at the end of the buffer.
52 time(), ctime_r(), gmtime_r(), localtime_r()
56 ******************************************************************************/
58 strftime (buf
, 26, "%C\n", tm
);