docs
[mirrors/Programs.git] / bash / bbs / utils / fm / fm / gen_protos.sh
CommitLineData
db4042d6
H
1#!/bin/sh
2
3TYPES='void|char|int|File|gboolean|GNode|GList|WINDOW'
4
5egrep -h '^('$TYPES').*;$' *.c | sed 's/^/extern /'
6echo
7
8for file in *.c; do
9 echo '/* ' $file ' */'
10 egrep '^('$TYPES').*(\)|,)$' $file | grep -v '^int main(.*)' | sed 's/)$/);/'
11 echo
12done
13echo '#endif'
This page took 0.171614 seconds and 4 git commands to generate.