MCPcopy Create free account
hub / github.com/TheForceEngine/TheForceEngine / getDateTimeString

Function getDateTimeString

TheForceEngine/TFE_System/system.cpp:226–231  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

224 }
225
226 void getDateTimeString(char* output)
227 {
228 time_t _tm = time(NULL);
229 struct tm* curtime = localtime(&_tm);
230 strcpy(output, asctime(curtime));
231 }
232
233 void getDateTimeStringForFile(char* output)
234 {

Callers 2

setupPathFunction · 0.85
saveHeaderFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected