X-Git-Url: https://git.madduck.net/etc/awesome.git/blobdiff_plain/85c40964551cb74c3d6ef6bf61a12fd79013389b..a2979e68e75a80221f6f64cc3558d956c2ebfb18:/luatz/strftime.lua diff --git a/luatz/strftime.lua b/luatz/strftime.lua index 0f6a26f..51410cf 100644 --- a/luatz/strftime.lua +++ b/luatz/strftime.lua @@ -198,6 +198,12 @@ local function strftime ( format_string , timetable ) end ) ) end +local function asctime ( timetable ) + -- Equivalent to the format string "%c\n" + return strformat ( t.c ( timetable , c_locale ) ) .. "\n" +end + return { strftime = strftime ; + asctime = asctime ; }