You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
312 B
20 lines
312 B
/*************
|
|
* Header file for misc_time.c
|
|
* 1999 E. Rouat
|
|
************/
|
|
|
|
#ifndef ngspice_MISC_TIME_H
|
|
#define ngspice_MISC_TIME_H
|
|
|
|
char * datestring(void);
|
|
double seconds(void);
|
|
|
|
#ifdef HAVE_FTIME
|
|
|
|
extern struct timeb timebegin;
|
|
|
|
void timediff(struct timeb *, struct timeb *, int *, int *);
|
|
|
|
#endif
|
|
|
|
#endif
|