home *** CD-ROM | disk | FTP | other *** search
/ Big Green CD 8 / BGCD_8_Dev.iso / NEXTSTEP / UNIX / Shells / zsh-3.0.5-MIHS / src / Functions / proto < prev    next >
Encoding:
Text File  |  1996-05-06  |  194 b   |  9 lines

  1. #! /bin/sh
  2. # generate prototypes, if your style is the same as mine
  3. for i
  4. do
  5.     rm $i:r.pro 2>/dev/null
  6.     grep -v '[{};:#]' $i | grep '^[A-Za-z]' |
  7.         grep -v static | sed 's/$/;/' >! $i:r.pro
  8. done
  9.