2 Copyright © 1995-2007, The AROS Development Team. All rights reserved.
5 Convert a time into a string.
8 /*****************************************************************************
19 The asctime() function converts the broken-down time value tm
22 See asctime_r() for details.
25 tm - The broken down time
28 A statically allocated buffer with the converted time. Note that
29 the contents of the buffer might get lost with the call of any of the
30 date and time functions.
33 This function must not be used in a shared library or
34 in a threaded application. Use asctime_r() instead.
53 time(), ctime(), gmtime(), localtime()
57 ******************************************************************************/
59 static char buffer
[26];
61 asctime_r (tm
, buffer
);