Overview
Comment: | Initial revision |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | origin/master | trunk |
Files: | files | file ages | folders |
SHA3-256: |
ca6f269f6991db58ed7f2432cd3acfa6 |
User & Date: | gawthrop@users.sourceforge.net on 1997-05-15 07:10:09 |
Other Links: | branch diff | manifest | tags |
Context
1997-05-15
| ||
07:10:56 | removed "tolower" function check-in: 96f4e682f1 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
07:10:09 | Initial revision check-in: ca6f269f69 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
1997-05-13
| ||
16:58:59 | Initial revision check-in: 082b84d788 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Added mttroot/mtt/bin/trans/sympar_txt2c version [0aba6a03cf].
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 | #! /bin/sh ###################################### ##### Model Transformation Tools ##### ###################################### # Bourne shell script: sympar_txt2c # Label file to symbolic parameters conversion # P.J.Gawthrop March 1997 # Copyright (c) P.J.Gawthrop, 1997. ############################################################### ## Version control history ############################################################### ## $Id$ ## $Log$ # Revision 1.3 1997/03/19 16:39:12 peterg # Put in the correct date. # # Revision 1.2 1997/03/18 17:56:35 peterg # Cosmetic changes. # ############################################################### # Inform user echo "Creating $1_sympar.c" rm -f mtt_error #Write some file headers echo '/*' > $1_sympar.c echo "Symbolic parameter file ($1_sympar.c)" >> $1_sympar.c echo "Generated by MTT at `date`" >> $1_sympar.c echo '*/' >> $1_sympar.c echo >> $1_sympar.c #Write out the variables in c format. awk '{i++; print "extern double", $1 ";"}' $1_sympar.txt \ >> $1_sympar.c # Now invoke the standard error handling. # mtt_error mtt_error.txt |