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

📄 timer.c

📁 很经典的神经网络源程序,希望大家多多交流
💻 C
字号:
/*
*-----------------------------------------------------------------------------
*	file:	timer.c
*	desc:	time a program in secs
*	by:	patrick ko
*	date:	18 jan 92
*-----------------------------------------------------------------------------
*/

#include <stdio.h>
#include <time.h>

static time_t	last;
static time_t	this;
static time_t	temp;

void timer_restart( )
{
	time( &last );
}

long int timer_stop( )
{
	time( &this );
	temp = this - last;
	last = this;

	return ((long int)temp);
}

⌨️ 快捷键说明

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