new upstream

git-svn-id: file:///srv/svn/joey/trunk/src/packages/bsdgames@10080 a4a2c43b-8ac3-0310-8836-e0e880c912e2
This commit is contained in:
joey
2004-02-14 21:35:37 +00:00
parent 26fb70d304
commit a02c126403
224 changed files with 5624 additions and 2217 deletions

View File

@@ -1,4 +1,4 @@
/* $NetBSD: robots.h,v 1.16 2003/08/07 09:37:37 agc Exp $ */
/* $NetBSD: robots.h,v 1.18 2004/01/27 20:30:30 jsm Exp $ */
/*
* Copyright (c) 1980, 1993
@@ -32,12 +32,12 @@
*/
# include <sys/ttydefaults.h>
# include <sys/endian.h>
# include <ctype.h>
# include <curses.h>
# include <err.h>
# include <errno.h>
# include <fcntl.h>
# include <netinet/in.h>
# include <pwd.h>
# include <setjmp.h>
# include <signal.h>
@@ -120,27 +120,27 @@ extern jmp_buf End_move;
* functions types
*/
void add_score __P((int));
bool another __P((void));
char automove __P((void));
int cmp_sc __P((const void *, const void *));
bool do_move __P((int, int));
bool eaten __P((const COORD *));
void flush_in __P((void));
void get_move __P((void));
void init_field __P((void));
bool jumping __P((void));
void make_level __P((void));
void move_robots __P((int));
bool must_telep __P((void));
void play_level __P((void));
int query __P((const char *));
void quit __P((int)) __attribute__((__noreturn__));
void reset_count __P((void));
int rnd __P((int));
COORD *rnd_pos __P((void));
void score __P((int));
void set_name __P((SCORE *));
void show_score __P((void));
int sign __P((int));
void telmsg __P((int));
void add_score(int);
bool another(void);
char automove(void);
int cmp_sc(const void *, const void *);
bool do_move(int, int);
bool eaten(const COORD *);
void flush_in(void);
void get_move(void);
void init_field(void);
bool jumping(void);
void make_level(void);
void move_robots(int);
bool must_telep(void);
void play_level(void);
int query(const char *);
void quit(int) __attribute__((__noreturn__));
void reset_count(void);
int rnd(int);
COORD *rnd_pos(void);
void score(int);
void set_name(SCORE *);
void show_score(void);
int sign(int);
void telmsg(int);