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

📄 ftimer.h

📁 ICS 课程的Lab6
💻 H
字号:
/*  * Function timers  */typedef void (*ftimer_test_funct)(void *); /* Estimate the running time of f(argp) using the Unix interval timer.   Return the average of n runs */double ftimer_itimer(ftimer_test_funct f, void *argp, int n);/* Estimate the running time of f(argp) using gettimeofday    Return the average of n runs */double ftimer_gettod(ftimer_test_funct f, void *argp, int n);

⌨️ 快捷键说明

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