restore include paths for cross-platform builds because i messed absolutely every #include up. dont worry that everything is modified, all i did was normalize line endings because CLRF snuck into the repo and this prevents fake diffs

This commit is contained in:
2026-03-24 19:07:55 -04:00
parent 7d485fdcd7
commit bfecad40be
1340 changed files with 264990 additions and 264996 deletions

View File

@@ -1,35 +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];
}
#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];
}