source: codelist.pl @ b7d13f7

barnowl_perlaimdebianowlrelease-1.10release-1.4release-1.5release-1.6release-1.7release-1.8release-1.9
Last change on this file since b7d13f7 was 0ff8fb57, checked in by James M. Kretchmar <kretch@mit.edu>, 21 years ago
More AIM work. The auto-prototype building has been re-enabled as well.
  • Property mode set to 100755
File size: 583 bytes
RevLine 
[69894d2]1#! /usr/bin/perl
[1aee7d9]2# $Id$
3
[7d4fbcd]4if ($#ARGV eq -1) {
5    @ARGV=`ls *.c`;
6    chop(@ARGV);
7}
8
9foreach $file (@ARGV) {
10    open(FILE, $file);
11
12    print "/* -------------------------------- $file -------------------------------- */\n";
13    while (<FILE>) {
14        if (/^\S/
[ac70242]15            && (/\{\s*$/ || /\)\s*$/)
[7d4fbcd]16            && !/\}/
17            && !/^\{/
[ac70242]18            && !/^#/
[7d4fbcd]19            && !/^static/
[69894d2]20            && !/^system/
[4594d83]21            && !/^XS/
[0ff8fb57]22            && !/\/\*/
23            && !/ZWRITEOPTIONS/
24            && !/owlfaim_priv/) 
25        {
[4594d83]26            s/\s+\{/\;/;
27            s/\)[ \t]*$/\)\;/;
28            print "extern ";
29            print;
30        }
[7d4fbcd]31           
32    }
33    close(FILE);
34    print "\n";
35}
[4594d83]36
37
Note: See TracBrowser for help on using the repository browser.