/* The permission is granted to use the software as is and redistribute it in its original and complete form. If you find this program useful and publish results obtained by it, please cite the program as: Michael Whitbeck, Desert Research Institute, 1991, "REACT - Program to solve kinetic equations for chemical systems". Version 1.00, this code is available from the authors or from Dr. Whitbeck. */ #include "rxn.h" void wr_species() { if ((Swrite = fopen(Species,"w")) == NULL) bail("Cant open output file for species list"); fprintf(Swrite,"%5d %5d\n",NR,NS); fprintf(Swrite,"%s\n",SPECIES); fclose(Swrite); }