Home | Info | Community | Development | myReactOS | Contact Us
Definition at line 3 of file getdate.c.
{ char curdate[9]; time_t now; struct tm *tm_now; time(&now); tm_now=localtime(&now); strftime(curdate, sizeof(curdate), "%Y%m%d", tm_now); printf("%s", curdate); }