]> git.pond.sub.org Git - empserver/blobdiff - include/com.h
Indented with src/scripts/indent-emp.
[empserver] / include / com.h
index ab56d63dcb47d65e2e16a1a8c9eb2e8786276e2f..4c6ef1e17268b6a3e6d17f65bf75a196a9b81bd4 100644 (file)
 #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_ */