Debug tm
//Print the date and time of a tm
char TextBuffer[50];
strftime(TextBuffer, sizeof(TextBuffer), "%Y-%m-%d %H:%M:%S", &Tm1);
printf("UTC: %s\n", TextBuffer);
Debug time_t
//Print raw time_t value of a tm
printf("mktime: %llu\n", mktime(&Tm1));
