Skip to content
Snippets Groups Projects
Commit d2f5d551 authored by Deucе's avatar Deucе :ok_hand_tone4:
Browse files

No strtoull() for Borland

parent 0e809388
No related branches found
No related tags found
No related merge requests found
Pipeline #5625 failed
......@@ -2295,7 +2295,11 @@ static time_t parseDateTime(const char* value)
if((t=xpDateTime_to_time(isoDateTimeStr_parse(value))) != INVALID_TIME)
return t;
#if defined __BORLANDC__
return((time_t)strtoull(value,NULL,0));
#else
return((time_t)strtoul(value,NULL,0));
#endif
}
time_t iniReadDateTime(FILE* fp, const char* section, const char* key, time_t deflt)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment