Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F90371740
extra.c
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Fri, Nov 1, 01:26
Size
714 B
Mime Type
text/x-c
Expires
Sun, Nov 3, 01:26 (2 d)
Engine
blob
Format
Raw Data
Handle
21999120
Attached To
rFENNECS FENNECS: Finite Element Non-Neutral Electron Cloud Simulator
extra.c
View Options
#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
Log In to Comment