ngspice/src/misc/misc_time.h

21 lines
312 B
C
Raw Normal View History

2000-04-27 22:03:57 +02:00
/*************
* Header file for misc_time.c
* 1999 E. Rouat
************/
2013-01-23 20:57:32 +01:00
#ifndef ngspice_MISC_TIME_H
#define ngspice_MISC_TIME_H
2000-04-27 22:03:57 +02:00
char * datestring(void);
double seconds(void);
2007-11-14 21:26:34 +01:00
#ifdef HAVE_FTIME
extern struct timeb timebegin;
2007-11-14 21:26:34 +01:00
void timediff(struct timeb *, struct timeb *, int *, int *);
#endif
2000-04-27 22:03:57 +02:00
#endif