#include #include int time_stamp() { struct tm *local; time_t t; t = time(NULL); local = localtime(&t); printf("%s", asctime(local)); };