mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2025-08-04 17:54:01 +00:00
Public release of the DLU server code!
Have fun!
This commit is contained in:
35
thirdparty/raknet/Source/EpochTimeToString.cpp
vendored
Normal file
35
thirdparty/raknet/Source/EpochTimeToString.cpp
vendored
Normal file
@@ -0,0 +1,35 @@
|
||||
#include "FormatString.h"
|
||||
#include "EpochTimeToString.h"
|
||||
#include <stdio.h>
|
||||
#include <string.h>
|
||||
#include <stdarg.h>
|
||||
// localtime
|
||||
#include <time.h>
|
||||
#include "LinuxStrings.h"
|
||||
|
||||
char * EpochTimeToString(long long time)
|
||||
{
|
||||
static int textIndex=0;
|
||||
static char text[4][64];
|
||||
|
||||
if (++textIndex==4)
|
||||
textIndex=0;
|
||||
|
||||
struct tm * timeinfo;
|
||||
time_t t = time;
|
||||
timeinfo = localtime ( &t );
|
||||
strftime (text[textIndex],64,"%c.",timeinfo);
|
||||
|
||||
/*
|
||||
time_t
|
||||
// Copied from the docs
|
||||
struct tm *newtime;
|
||||
newtime = _localtime64(& time);
|
||||
asctime_s( text[textIndex], sizeof(text[textIndex]), newtime );
|
||||
|
||||
while (text[textIndex][0] && (text[textIndex][strlen(text[textIndex])-1]=='\n' || text[textIndex][strlen(text[textIndex])-1]=='\r'))
|
||||
text[textIndex][strlen(text[textIndex])-1]=0;
|
||||
*/
|
||||
|
||||
return text[textIndex];
|
||||
}
|
Reference in New Issue
Block a user