1
0
mirror of git://git.code.sf.net/p/zsh/code synced 2024-11-18 21:14:11 +01:00

moved from ./Functions/Misc/proto

This commit is contained in:
Sven Wischnowsky 2001-04-02 12:26:49 +00:00
parent e5a265ba8d
commit d56202de5d

8
Functions/Example/proto Normal file

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