DataMuseum.dk

Presents historical artifacts from the history of:

DKUUG/EUUG Conference tapes

This is an automatic "excavation" of a thematic subset of
artifacts from Datamuseum.dk's BitArchive.

See our Wiki for more about DKUUG/EUUG Conference tapes

Excavated with: AutoArchaeologist - Free & Open Source Software.


top - metrics - download

⟦f71def38b⟧ TextFile

    Length: 252 (0xfc)
    Types: TextFile
    Names: »prinfo.c«

Derivation

└─⟦b20c6495f⟧ Bits:30007238 EUUGD18: Wien-båndet, efterår 1987
    └─⟦this⟧ »EUUGD18/General/Draughts/prinfo.c« 

TextFile

/* information about dam */
prinfo(){
int f;
char c;
	f = open("prinfo.x",0);
	if(f < 0) f = open("/usr/games/lib/dam/prinfo.x",0);
	if(f < 0){
		printf("sorry, cannot find it\n");
		return;
	}
	while(read(f,&c,1) == 1) putchar(c);
	(void) close(f);
}