ftimer.h

来自「ICS 课程的Lab7」· C头文件 代码 · 共 15 行

H
15
字号
/*  * 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 + =
减小字号Ctrl + -
显示快捷键?