aboutsummaryrefslogtreecommitdiffstats
path: root/docs/parse_formats.pl
diff options
context:
space:
mode:
authorTom Feist <shabble@metavore.org>2011-04-22 02:23:07 +0000
committerTom Feist <shabble@metavore.org>2011-04-22 02:23:07 +0000
commitd974da559601a1c95740a01d72ce2ee91008354e (patch)
tree69216dce0251d74065aa7ccf0aaff20cc82ac1dc /docs/parse_formats.pl
parentfeature-tests: looking at ways to read from a DATA fh, and redirect normal (diff)
downloadirssi-scripts-d974da559601a1c95740a01d72ce2ee91008354e.tar.gz
irssi-scripts-d974da559601a1c95740a01d72ce2ee91008354e.zip
removed docs/ from dev branch, since they're all in their own repo (well, wiki)
by now.
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'));