|
DataMuseum.dkPresents historical artifacts from the history of: DKUUG/EUUG Conference tapes |
This is an automatic "excavation" of a thematic subset of
See our Wiki for more about DKUUG/EUUG Conference tapes Excavated with: AutoArchaeologist - Free & Open Source Software. |
top - metrics - downloadIndex: T c
Length: 1037 (0x40d) Types: TextFile Names: »config.c«
└─⟦b20c6495f⟧ Bits:30007238 EUUGD18: Wien-båndet, efterår 1987 └─⟦this⟧ »EUUGD18/General/Ularn/config.c«
/* * config.c * This defines the installation dependent variables. * Some strings are modified later. ANSI C would * allow compile time string concatenation, we must * do runtime concatenation, in main. */ #include "header.h" /* the game save filename */ char savefilename[SAVEFILENAMESIZE] = HOME; /* the score file */ char scorefile[sizeof(HOME)+sizeof(SCORENAME)] = HOME; /* the logging file */ char logfile[sizeof(HOME)+sizeof(LOGFNAME)] = HOME; /* the help text file */ char helpfile[sizeof(HOME)+sizeof(HELPNAME)] = HOME; /* the maze data file */ char larnlevels[sizeof(HOME)+sizeof(LEVELSNAME)] = HOME; /* the fortune data file */ char fortfile[sizeof(HOME)+sizeof(FORTSNAME)] = HOME; /* the .Ularnopts filename */ char optsfile[128] ="/.Ularnopts"; /* the option file */ char diagfile[] ="Diagfile"; /* the diagnostic filename */ char ckpfile[] ="Ularn.ckp"; /* the checkpoint filename */ char *password ="yalp"; /* the wizards password */