#include void stntuple_print_header() { printf("stnmaker.exe built on Mon Oct 30 21:11:47 CST 2006 by stdenis@nglas16.fnal.gov \n"); printf(" using CDFSOFT release: 6.1.4 "); printf("and working directory /data/nglas16/b/stdenis/stn614-ewk \n"); printf("differences with dev_243_10: 1000188 bytes\n"); } void stntuple_get_version(char*& Version, char*& Text) { static char* ver = "dev_243_10"; static char txt[200]; Version = ver; strcpy(txt,"stnmaker.exe dev_243_10 "); strcat(txt,"built on Mon Oct 30 21:11:47 CST 2006 by stdenis@nglas16.fnal.gov"); strcat(txt," using CDFSOFT release: 6.1.4 "); strcat(txt,"and working directory /data/nglas16/b/stdenis/stn614-ewk "); Text = txt; }