
/* 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;
}

