view pped/db.h @ 7:814de70c9f67

Initial revision
author darius
date Sat, 06 Dec 1997 04:37:04 +0000
parents 2719a89505ba
children
line wrap: on
line source


struct plnode {
	struct statentry player;
	struct plnode    *next;
	struct plnode    *prev;
	int status;
};

/* prototypes for db.c */
void initDB();
void addDB(struct statentry *player);
struct plnode *GetNode(int n);
void DeleteNode(int n);
int GetByName(char *name);