📄 difftime.c
字号:
/* $Id: difftime.c,v 1.3 1999/05/13 16:35:55 karls Exp $ */#ifdef HAVE_CONFIG_H#include "autoconf.h"#endif /* HAVE_CONFIG_H */#include "common.h"#if !HAVE_DIFFTIMEdoubledifftime(t1, t0) long t1; long t0;{ return (double)(t1 - t0);}#elsestatic void avoid_error __P((void));static void avoid_error(){ avoid_error();}#endif /* !HAVE_DIFFTIME */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -