2 Copyright © 1995-2007, The AROS Development Team. All rights reserved.
5 Convert a time into UTC.
8 /*****************************************************************************
19 The gmtime() function converts the calendar time tt to
20 broken-down time representation, expressed in Coordinated Universal
23 See gmtime_r() for details.
26 tt - The time to convert
29 A statically allocated buffer with the broken down time in Coordinated
30 Universal Time (UTC). Note that the contents of the buffer might get
31 lost with the call of any of the date and time functions.
34 This function must not be used in a shared library or
35 in a threaded application. Use gmtime_r() instead.
50 time(), ctime(), asctime(), localtime()
54 ******************************************************************************/
58 return gmtime_r(tt
, &tm
);