mirror of
https://github.com/OpenDriver2/REDRIVER2.git
synced 2024-11-23 10:52:36 +01:00
1ed924f95e
- pretty some code
30 lines
438 B
C
30 lines
438 B
C
#include "THISDUST.H"
|
|
#include "TIME.H"
|
|
|
|
|
|
// decompiled code
|
|
// original method signature:
|
|
// void /*$ra*/ GetTimeStamp(char *buffer /*$a0*/)
|
|
// line 5, offset 0x00081140
|
|
/* begin block 1 */
|
|
// Start line: 10
|
|
/* end block 1 */
|
|
// End Line: 11
|
|
|
|
/* begin block 2 */
|
|
// Start line: 11
|
|
/* end block 2 */
|
|
// End Line: 12
|
|
|
|
// [F]
|
|
void GetTimeStamp(char *buffer)
|
|
{
|
|
if (buffer)
|
|
sprintf(buffer, "%s %s", __DATE__, __TIME__);
|
|
}
|
|
|
|
|
|
|
|
|
|
|