Indented with src/scripts/indent-emp.

This commit is contained in:
Markus Armbruster 2003-09-02 20:48:48 +00:00
parent 5f263a7753
commit 9b7adfbecc
437 changed files with 52211 additions and 51052 deletions

View file

@ -34,18 +34,18 @@
#ifndef _COM_H_
#define _COM_H_
struct cmndstr {
s_char *c_form; /* prototype of command */
int c_cost; /* btu cost of command */
int (*c_addr)(); /* core addr of appropriate routine */
int c_flags;
int c_permit; /* who is allowed to "do" this command */
struct cmndstr {
s_char *c_form; /* prototype of command */
int c_cost; /* btu cost of command */
int (*c_addr) (); /* core addr of appropriate routine */
int c_flags;
int c_permit; /* who is allowed to "do" this command */
};
#define C_MOD 0x1 /* modifies database */
/* variables associated with this stuff */
extern struct cmndstr coms[];
extern struct cmndstr coms[];
#endif /* _COM_H_ */