gettimeofday在VS上的实现
gettimeofday是Linux上的函数,使用方法如下#include <sys/time.h>const char* srs_human_format_time(){ struct timeval tv; static char buf[23]; memset(buf, 0, sizeof(buf)); // clock time ...