diff options
author | Paul Janzen <pjanzen@cvs.openbsd.org> | 1999-05-30 02:23:18 +0000 |
---|---|---|
committer | Paul Janzen <pjanzen@cvs.openbsd.org> | 1999-05-30 02:23:18 +0000 |
commit | c37a824a5731bbf062ef51886e87e3518150da78 (patch) | |
tree | 2cec83a38c04242325f3bd21e510c0319fe52d26 /games/larn/monster.c | |
parent | 43007dc359f95c901be348fc1b2a2d4ea237cb0e (diff) |
use standard isalpha() and isdigit(); check that screen is big enough;
correct a typo, and fix up some man page paths.
Diffstat (limited to 'games/larn/monster.c')
-rw-r--r-- | games/larn/monster.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/games/larn/monster.c b/games/larn/monster.c index fd4d2871d53..65dc04589a5 100644 --- a/games/larn/monster.c +++ b/games/larn/monster.c @@ -1,4 +1,4 @@ -/* $OpenBSD: monster.c,v 1.3 1998/09/15 05:12:32 pjanzen Exp $ */ +/* $OpenBSD: monster.c,v 1.4 1999/05/30 02:23:16 pjanzen Exp $ */ /* $NetBSD: monster.c,v 1.5 1997/10/18 20:03:29 christos Exp $ */ /* @@ -100,9 +100,10 @@ * */ #ifndef lint -static char rcsid[] = "$OpenBSD: monster.c,v 1.3 1998/09/15 05:12:32 pjanzen Exp $"; +static char rcsid[] = "$OpenBSD: monster.c,v 1.4 1999/05/30 02:23:16 pjanzen Exp $"; #endif /* not lint */ +#include <ctype.h> #include <string.h> #include <stdlib.h> #include "header.h" |