Overview
| Comment: | Copied from matlab tidy -- removed everthing except removal of blank lines |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | origin/master | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
a321f8766f2c6c5ee9920a11f2be587e |
| User & Date: | gawthrop@users.sourceforge.net on 1997-02-04 18:52:34.000 |
| Other Links: | branch diff | manifest | tags |
Context
|
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 | |
| 18:50:07 | Initial revision check-in: a3438c015e user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/trans/c-tidy
from [efd4e66117]
to [28f2822d80].
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
#! /bin/sh
######################################
##### Model Transformation Tools #####
######################################
###############################################################
## Version control history
###############################################################
## $Id$
## $Log$
## Revision 1.2 1996/08/20 08:26:06 peter
## Version control header added.
##
###############################################################
| > > > | | | < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < > > > | 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 |
#! /bin/sh
######################################
##### Model Transformation Tools #####
######################################
###############################################################
## Version control history
###############################################################
## $Id$
## $Log$
## 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
|