2013-01-04 16:01:50 +01:00
|
|
|
// Copyright (c) 2013, Thomas Goyne <plorkyeran@aegisub.org>
|
2011-02-09 23:31:44 +01:00
|
|
|
//
|
|
|
|
// Permission to use, copy, modify, and distribute this software for any
|
|
|
|
// purpose with or without fee is hereby granted, provided that the above
|
|
|
|
// copyright notice and this permission notice appear in all copies.
|
|
|
|
//
|
|
|
|
// THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
|
|
// WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
|
|
// MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
|
|
// ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
|
|
// WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
|
|
// ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
|
|
|
// OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
2013-01-04 16:01:50 +01:00
|
|
|
//
|
|
|
|
// Aegisub Project http://www.aegisub.org/
|
2011-02-09 23:31:44 +01:00
|
|
|
|
2013-01-04 16:01:50 +01:00
|
|
|
#include "../config.h"
|
2011-02-10 01:41:15 +01:00
|
|
|
|
2011-02-09 23:31:44 +01:00
|
|
|
#include "libaegisub/util.h"
|
|
|
|
|
2013-01-04 16:01:50 +01:00
|
|
|
#include <ctime>
|
2011-02-09 23:31:44 +01:00
|
|
|
|
2013-01-04 16:01:50 +01:00
|
|
|
namespace agi { namespace util {
|
2011-02-10 01:41:15 +01:00
|
|
|
|
2013-01-04 16:01:50 +01:00
|
|
|
std::string strftime(const char *fmt, const tm *tmptr) {
|
|
|
|
if (!tmptr) {
|
|
|
|
time_t t = time(nullptr);
|
|
|
|
tmptr = localtime(&t);
|
|
|
|
}
|
2011-02-10 01:41:15 +01:00
|
|
|
|
2013-01-04 16:01:50 +01:00
|
|
|
char buff[65536];
|
|
|
|
::strftime(buff, sizeof buff, fmt, tmptr);
|
|
|
|
return buff;
|
2011-02-10 01:41:15 +01:00
|
|
|
}
|
|
|
|
|
2013-01-04 16:01:50 +01:00
|
|
|
} }
|