[BACK]Return to vers.c CVS log [TXT][DIR] Up to [contributed] / early-roguelike / arogue7

Annotation of early-roguelike/arogue7/vers.c, Revision 1.1

1.1     ! rubenllo    1: /*
        !             2:  * vers.c - version number
        !             3:  *
        !             4:  * Advanced Rogue
        !             5:  * Copyright (C) 1984, 1985, 1986 Michael Morgan, Ken Dalka and AT&T
        !             6:  * All rights reserved.
        !             7:  *
        !             8:  * Based on "Rogue: Exploring the Dungeons of Doom"
        !             9:  * Copyright (C) 1980, 1981 Michael Toy, Ken Arnold and Glenn Wichman
        !            10:  * All rights reserved.
        !            11:  *
        !            12:  * See the file LICENSE.TXT for full copyright and licensing information.
        !            13:  */
        !            14:
        !            15: /*
        !            16:  * version number.  Whenever a new version number is desired, use
        !            17:  * sccs to get vers.c.  Environ and encstr are declared here to
        !            18:  * force them to be loaded before the version number, and therefore
        !            19:  * not to be written in saved games.
        !            20:  */
        !            21:
        !            22: char encstr[] = "\354\251\243\332A\201|\301\321p\210\251\327\"\257\365t\341%3\271^`~\203z{\341};\f\341\231\222e\234\351]\321\234";
        !            23: char version[] = "@(#)vers.c   7.7 (Bell Labs) 07/07/86";
        !            24: char *release = "7.7.1";

CVSweb