#include "runnum.h"
FILE *RunLog_write( char *runtype ) {
void RunLog_hdr( FILE *fp, char *hdr, char *val ) {
void RunLog_close( FILE *fp ) {
void Run_LinkAlgo( char *link, char *src ) {
RunLog_hdr() is a simple support routine to output
lines of the form "!
RunLog_close() outputs the "!Defs" line to the open run log as well as the contents of configuration.def if present, closes the file, links "hpfrun.alg" to the specified algo and calls srvr_BeginRun() to actually start the run.
RunLog_write() return the FILE pointer to the newly create run log on success or NULL on failure. None of the other routines return values.