diff options
author | Tom Feist <shabble@metavore.org> | 2011-01-08 20:00:20 +0000 |
---|---|---|
committer | Tom Feist <shabble@metavore.org> | 2011-01-08 20:00:20 +0000 |
commit | 8d4fe58ee09b7f5d00ee0c1a6e122a1bcff7ca4e (patch) | |
tree | 953fd2f06c31f9c6e9708dabca5dcc8990b36d68 /docs/parse_formats.pl | |
parent | Merge branch 'tab_completion' (diff) | |
download | irssi-scripts-8d4fe58ee09b7f5d00ee0c1a6e122a1bcff7ca4e.tar.gz irssi-scripts-8d4fe58ee09b7f5d00ee0c1a6e122a1bcff7ca4e.zip |
moved docs/ to https://github.com/shabble/irssi-docs
Diffstat (limited to '')
-rwxr-xr-x | docs/parse_formats.pl | 23 |
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')); |