Overview
Comment: | Removed "tolower" function |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | origin/master | trunk |
Files: | files | file ages | folders |
SHA3-256: |
0f2e196528f675866b2b7235dcee5703 |
User & Date: | gawthrop@users.sourceforge.net on 1997-05-15 07:11:45 |
Other Links: | branch diff | manifest | tags |
Context
1997-05-15
| ||
07:13:31 | Removed "tolower" function. check-in: de155aa966 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
07:11:45 | Removed "tolower" function check-in: 0f2e196528 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
07:10:56 | removed "tolower" function check-in: 96f4e682f1 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/trans/sympar_txt2h from [c515c1bf34] to [c627a85a9c].
︙ | ︙ | |||
11 12 13 14 15 16 17 18 19 20 21 22 23 24 | # Copyright (c) P.J.Gawthrop, 1997. ############################################################### ## Version control history ############################################################### ## $Id$ ## $Log$ # Revision 1.3 1997/05/01 13:42:43 peterg # Chaged double to float # # Revision 1.2 1997/03/20 15:14:25 peterg # Lower case conversion. # # Revision 1.1 1997/03/20 14:52:41 peterg | > > > | 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 | # Copyright (c) P.J.Gawthrop, 1997. ############################################################### ## Version control history ############################################################### ## $Id$ ## $Log$ # Revision 1.4 1997/05/01 13:51:37 peterg # Replaced float by double. # # Revision 1.3 1997/05/01 13:42:43 peterg # Chaged double to float # # Revision 1.2 1997/03/20 15:14:25 peterg # Lower case conversion. # # Revision 1.1 1997/03/20 14:52:41 peterg |
︙ | ︙ | |||
38 39 40 41 42 43 44 | echo "Symbolic parameter file ($1_sympar.h)" >> $1_sympar.h echo "Generated by MTT at `date`" >> $1_sympar.h echo '*/' >> $1_sympar.h echo >> $1_sympar.h #Write out the variables in c format. | | | 41 42 43 44 45 46 47 48 49 50 51 52 53 | echo "Symbolic parameter file ($1_sympar.h)" >> $1_sympar.h echo "Generated by MTT at `date`" >> $1_sympar.h echo '*/' >> $1_sympar.h echo >> $1_sympar.h #Write out the variables in c format. awk '{i++; print "double", $1 ";"}' $1_sympar.txt >> $1_sympar.h # Now invoke the standard error handling. # mtt_error mtt_error.txt |