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: |
ac5d2bff2a9856475fc7eb3b071416e7 |
User & Date: | gawthrop@users.sourceforge.net on 1997-02-04 18:55:55 |
Other Links: | branch diff | manifest | tags |
Context
1997-02-09
| ||
20:30:04 | Copied from tweedledum. check-in: 8f41e1e5ca user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
1997-02-04
| ||
18:55:55 | Initial revision check-in: ac5d2bff2a user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
18:52:34 |
Copied from matlab tidy -- removed everthing except removal of blank lines check-in: a321f8766f user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Added mttroot/mtt/bin/trans/c_tidy version [58bf61dcc7].
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 | #! /bin/sh ###################################### ##### Model Transformation Tools ##### ###################################### ############################################################### ## Version control history ############################################################### ## $Id$ ## $Log$ ## Revision 1.2 1997/02/04 18:52:34 peterg ## Copied from matlab tidy -- removed everthing except removal of blank ## lines ## ## Revision 1.1 1997/02/04 18:50:07 peterg ## Initial revision ## ## Revision 1.2 1996/08/20 08:26:06 peter ## Version control header added. ## ############################################################### # Bourne shell script: c_tidy # Tidies up C format files # P.J.Gawthrop 14 June 1990 13 Nov 1990, 19 Nov 93, April 1994, Dec 1994, # June 1995 # Copyright (c) P.J.Gawthrop, 1990, 1994, 1995. # Remove blank lines cat $1 | \ tr -s '\012' '\012'\ >junk mv junk $1 |