home *** CD-ROM | disk | FTP | other *** search
/ Shareware Overload / ShartewareOverload.cdr / virus / ddj0491.zip / MORROW.ZIP / PARAM.C < prev    next >
C/C++ Source or Header  |  1989-09-03  |  390b  |  30 lines

  1. /***
  2. *       GASystem
  3. *       Mike Morrow
  4. *       September 1989
  5. ***/
  6.  
  7.  
  8.  
  9.  
  10. #include "param.h"
  11. #include "table.h"
  12.  
  13.  
  14. TBL_PTR paramins(spec, type)
  15. CONST PARAMSPEC *spec;
  16. int type;
  17. {
  18.  
  19.     TBLENT t;
  20.     
  21.     t.key        = spec->param_name;
  22.     t.symdata    = spec->param_where;
  23.     t.symmode    = spec->param_mode;
  24.     t.symflags    = spec->param_flags;
  25.     t.symtype    = type;
  26.  
  27.     return tbl_ins(& t);
  28. }
  29.  
  30.