linux c获得时间和设置时间 函数
#include<time.h> #include <sys/time.h>#include<stdio.h>//gcc -o systime systime.cint getSystemTime() { time_t timer; struct tm t_tm; time(&timer);