IVF实现时间函数

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

#ifdef _cplusplus
extern "C" void{
#endif
#define timef TIMEF
	extern void __stdcall timef( double *);
#ifdef _cplusplus
}
#endif

void __stdcall  timef(double *timenow)
{
	*timenow = (double) clock()/1000.0;
}


你可能感兴趣的:(c,include)