2 Copyright © 1995-2012, The AROS Development Team. All rights reserved.
5 Convert a time into a string.
8 /*****************************************************************************
13 struct tm
* localtime (
19 Splits the system time in seconds into a structure.
21 See localtime_r() for details.
24 tt - A time in seconds from the 1. Jan 1970
27 A statically allocated buffer with the broken up time. Note that
28 the contents of the buffer might get lost with the call of any of
29 the date and time functions.
32 This function must not be used in a shared library or
33 in a threaded application. Use localtime_r() instead.
48 time(), ctime(), asctime(), gmtime()
52 ******************************************************************************/
56 return localtime_r (tt
, &tm
);