RosBE/RosBE-Windows/Tools/getdate.c
Daniel Reimer 5c651a0491 Preparation for RosBE 2.1.6 for Windows (#1)
- HTTP -> HTTPS in updater script
- Fix Updater script by granting access rights for it. ROSBE-129
- Remove sSVN and it's SVN binaries being useless now.
- Update changelog showing the binary updates.
- Update Copyright header year -> 2018
- 2.1.5 -> 2.1.6
2018-01-28 20:08:38 +01:00

31 lines
655 B
C

/*
* PROJECT: RosBE - ReactOS Build Environment for Windows.
* LICENSE: GNU General Public License v2. (see LICENSE.txt)
* FILE: Tools/getdate.c
* PURPOSE: Returns System Date
* COPYRIGHT: Copyright 2018 Peter Ward <dralnix@gmail.com>
*
*/
#include <windows.h>
#include <stdio.h>
int main(void)
{
SYSTEMTIME LocalSystemTime;
char CurrentDate[20];
GetSystemTime(&LocalSystemTime);
GetDateFormat(LOCALE_USER_DEFAULT,
0,
&LocalSystemTime,
"MM/dd/yyyy",
CurrentDate,
20);
printf("%s", CurrentDate);
return 0;
}