X-Git-Url: https://git.madduck.net/etc/awesome.git/blobdiff_plain/12c2ccfd35d0862f3c78d02c86859926a4f312cf..a034bb6ae0748d7adc7a04c6a8e5753c0f13eae4:/luatz/init.lua diff --git a/luatz/init.lua b/luatz/init.lua index 91c95dd..1a6c835 100644 --- a/luatz/init.lua +++ b/luatz/init.lua @@ -17,4 +17,24 @@ _M.time_in = function ( tz , now ) return _M.get_tz ( tz ):localize ( now ) end +_M.now = function ( ) + local ts = _M.gettime.gettime ( ) + return _M.timetable.new_from_timestamp ( ts ) +end + +--- C-like functions + +_M.gmtime = function ( ts ) + return _M.timetable.new_from_timestamp ( ts ) +end + +_M.localtime = function ( ts ) + ts = _M.time_in ( nil , ts ) + return _M.gmtime ( ts ) +end + +_M.ctime = function ( ts ) + return _M.strftime.asctime ( _M.localtime ( ts ) ) +end + return _M