]> git.pond.sub.org Git - empserver/blobdiff - include/item.h
Indented with src/scripts/indent-emp.
[empserver] / include / item.h
index c9ca0c96b64fa9ee6de060a218ce1521617ef88b..888677b742d05123038d4458db97311c234a7e7a 100644 (file)
 
 #define        NUMPKG  4               /* number of different kinds of packaging */
 
-struct ichrstr {
-       int     i_mnem;         /* usually the initial letter */
-       int     i_vtype;        /* var type */
-       int     i_value;        /* mortgage value */
-       int     i_sell;         /* can this be sold? */
-       int     i_lbs;          /* how hard to move */
-       int     i_pkg[NUMPKG];  /* units for reg, ware, urb, bank */
-       s_char  *i_name;        /* full name of item */
+struct ichrstr {
+    int i_mnem;                        /* usually the initial letter */
+    int i_vtype;               /* var type */
+    int i_value;               /* mortgage value */
+    int i_sell;                        /* can this be sold? */
+    int i_lbs;                 /* how hard to move */
+    int i_pkg[NUMPKG];         /* units for reg, ware, urb, bank */
+    s_char *i_name;            /* full name of item */
 };
 
 /* variables using this structure */
 
-extern  struct ichrstr ichr[];
-extern int maxitem;
+extern struct ichrstr ichr[];
+extern int maxitem;
 
 /* procedures using/returning this struct */
 
-extern struct ichrstr *whatitem();
+extern struct ichrstr *whatitem();
 
-extern int itm_maxno;
+extern int itm_maxno;
 
 #endif /* _ITEM_H_ */