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.
 
 
 
 
 
 

24 lines
398 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);
typedef struct {
double secs;
int seconds;
int milliseconds;
} PerfTime;
void perf_timer_get_time(PerfTime *);
extern PerfTime timebegin;
void timediff(PerfTime *, PerfTime *, int *, int *);
#endif