difftime.c

来自「sock protocol ,it is useful!」· C语言 代码 · 共 25 行

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