File: generate_SIOCS.pl

package info (click to toggle)
libnet-interface-perl 1.016-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,256 kB
  • sloc: ansic: 3,397; sh: 2,736; perl: 888; makefile: 6
file content (28 lines) | stat: -rwxr-xr-x 566 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#!/usr/bin/perl

#	Copyright 2008 - 2009, Michael Robinton
#
#	This library is free software; you can redistribute it
#	and/or modify it under the same terms as Perl itself.
#

open(F,$ARGV[0]) or die "\nusage: generate_SIOCS.pl file_containing_#define_SIOC_names\n\n";
my %SIOCS;
foreach(<F>) {
  if ($_ =~ /#.*define\s+([A-Za-z0-9_]+)/) {
    $SIOCS{$1} = 1;
  }
}
close F;
my $str = '';
my $i = 1;
foreach (sort keys %SIOCS) {
  $str .= $_ .',';
  ++$i;
  if ($i > 4) {
    $str .= "\n\t";
    $i = 0;
  }
}
chop $str while ($str =~ /[\t\n,]$/);
print $str,"\n";