Page MenuHomec4science

extra.c
No OneTemporary

File Metadata

Created
Fri, May 17, 12:42
#include <sys/time.h>
/* double seconds_(void)
{
// Return elapsed wall time in s.
struct timeval tp;
struct timezone tzp;
int i;
i = gettimeofday(&tp,&tzp);
return ( (double) tp.tv_sec + (double) tp.tv_usec * 1.e-6 );
}
/**********************************************/
#include <string.h>
void quit_();
void dump_(char *filename, int *l);
void Dump(filename)
char *filename;
{
/* The user's dump routine should go here. */
int l = strlen(filename);
// dump_(filename, &l);
} /* End DUMP */
/**********************************************/
void Quit()
{
/* The user's quit routine should go here. */
// quit_();
} /* End QUIT */

Event Timeline