|
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 s
Length: 1070 (0x42e) Types: TextFile Names: »savegame.c«
└─⟦b20c6495f⟧ Bits:30007238 EUUGD18: Wien-båndet, efterår 1987 └─⟦this⟧ »EUUGD18/General/Scrabble/savegame.c«
/* 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. * */ #ifdef MSDOS typedef char bool; #endif #include "scrabble.h" #ifdef _STDC_ board_t * restoregame(FILE *fp, int *nump, int *whosup, int *turn) #else board_t * restoregame(fp, nump, whosup, turn) FILE *fp; int *nump; int *whosup; int *turn; #endif { return (NULL); } #ifdef _STDC_ player_t * restoreplayer(FILE *fp) #else player_t * restoreplayer(fp) FILE *fp; #endif { return (NULL); } #ifdef _STDC_ void savegame(FILE *fp, int nump, int whosup, int turn) #else void savegame(fp, nump, whosup, turn) FILE *fp; int nump; int whosup; int turn; #endif { return; } #ifdef _STDC_ void saveplayer(FILE *fp) #else void saveplayer(fp) FILE *fp; #endif { return; }