From: Markus Armbruster Date: Tue, 17 Aug 2004 19:22:43 +0000 (+0000) Subject: Use plain char * instead of s_char *. Doc clarifications. X-Git-Tag: v4.2.18~78 X-Git-Url: http://git.pond.sub.org/?p=empserver;a=commitdiff_plain;h=95d1d105915cf1ae5f04affddb56b8dd3451a031 Use plain char * instead of s_char *. Doc clarifications. --- diff --git a/include/product.h b/include/product.h index d9034a0ac..8335ff650 100644 --- a/include/product.h +++ b/include/product.h @@ -43,8 +43,8 @@ enum { MAXPRCON = 3 }; struct pchrstr { u_char p_ctype[MAXPRCON]; /* constituent types */ u_short p_camt[MAXPRCON]; /* constituent amounts */ - int p_type; /* vtype if product is a variable */ - int p_level; /* index (NAT_?LEV) if product is not a var */ + int p_type; /* product item type, or I_NONE if level */ + int p_level; /* level index (NAT_?LEV), or -1 if item */ int p_cost; /* dollars / product unit */ int p_nrndx; /* index into sect of natural resource */ int p_nrdep; /* depletion as a % of resource used */ @@ -52,8 +52,8 @@ struct pchrstr { int p_nlmin; /* minimum lvl required */ int p_nllag; /* lag, mul by (lvl-nlmin)/(lvl-nlmin+nllag) */ int p_effic; /* process efficiency, mult by p_effic/100 */ - s_char *p_name; /* name of product */ - s_char *p_sname; /* short (7char or less) name of product */ + char *p_name; /* name of product */ + char *p_sname; /* short (7 char or less) name of product */ }; #define P_SHELL 1