⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 getusec.c

📁 VC++源代码
💻 C
字号:
/*  * $smu-mark$  * $name: getusec.c$  * $author: Salvatore Sanfilippo <antirez@invece.org>$  * $copyright: Copyright (C) 1999 by Salvatore Sanfilippo$  * $license: This software is under GPL version 2 of license$  * $date: Fri Nov  5 11:55:47 MET 1999$  * $rev: 8$  * * * Revised for Windows: Rob Turpin <rgturpin@epop3.com>  *                      7/03/2004           * * In Unix hping uses microseconds.  For Windows hping will use milliseconds */ #include <stdlib.h>#ifndef WIN32#include <sys/time.h>#else#include <sys/types.h>#include <sys/timeb.h>#endif#ifndef WIN32time_t get_usec(void){  struct timeval tmptv;  gettimeofday(&tmptv, NULL);  return tmptv.tv_usec;}time_t get_midnight_ut_ms(void){  struct timeval tv;  gettimeofday(&tv, NULL);  return ((tv.tv_sec % 86400) * 1000 + tv.tv_usec / 1000);}#elseshort get_msec(void){  struct timeb time;  ftime(&time);  return (time.millitm);}time_t get_midnight_ut_ms(void){  struct timeb time;  ftime(&time);  return ((time.time % 86400) * 1000 + time.millitm);}#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -