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
Index: T s

⟦d3361aa03⟧ TextFile

    Length: 681 (0x2a9)
    Types: TextFile
    Names: »savegame.c.orig«

Derivation

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

TextFile


/* RCS Info: $Revision: 1.1 $ on $Date: 89/03/15 11:17:14 $
 *           $Source: /yew3/faustus/src/scrabble/RCS/savegame.c,v $
 * Copyright (c) 1989 Wayne A. Christopher, U. C. Berkeley CS Dept
 *	 faustus@renoir.berkeley.edu, ucbvax!faustus
 * Permission is granted to modify and re-distribute this code in any manner
 * as long as this notice is preserved.  All standard disclaimers apply.
 *
 */

#include "scrabble.h"

board_t *
restoregame(FILE *fp, int *nump, int *whosup, int *turn)
{
	return (NULL);
}

player_t *
restoreplayer(FILE *fp)
{
	return (NULL);
}

void 
savegame(FILE *fp, int nump, int whosup, int turn)
{
	return;
}

void 
saveplayer(FILE *fp)
{
	return;
}