aboutsummaryrefslogtreecommitdiffstats
path: root/docs/parse_formats.pl
diff options
context:
space:
mode:
Diffstat (limited to 'docs/parse_formats.pl')
-rwxr-xr-xdocs/parse_formats.pl23
1 files changed, 0 insertions, 23 deletions
diff --git a/docs/parse_formats.pl b/docs/parse_formats.pl
deleted file mode 100755
index b3adec6..0000000
--- a/docs/parse_formats.pl
+++ /dev/null
@@ -1,23 +0,0 @@
-#!/usr/bin/env perl
-
-use strict;
-use warnings;
-
-
-use C::Scan;
-use Data::Dumper;
-use Config;
-
-my $home = $ENV{HOME};
-my $src_loc = "$home/sources/irssi/src";
-my $file = "perl/module-formats.c";
-
-
-my $scan = C::Scan->new(filename => $src_loc . "/". $file);
-$scan->set('includeDirs' => [$src_loc,
- $src_loc . "/perl",
- "/opt/local/include",
- "/opt/local/include/glib-2.0",
- $Config::Config{shrpdir}]);
-
-print Dumper($scan->get('typedef_structs'));