File: make_smi-numbers.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 (32 lines) | stat: -rwxr-xr-x 760 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
29
30
31
32
#!/usr/bin/perl
#
# make_smi-numbers.pl	version 0.01	michael@insulin-pumpers.org

#	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,'./docs/smi-numbers.txt') or die "./docs/smi-numbers.txt not found\n";
print q|
/*	BEGIN ni_SMI-NUMBERS.c	include
 ****************************************************************
 *	DO NOT ALTER THIS FILE					*
 *	it was created by build_stuff/make_smi-numbers.pl	*
 *	EDIT THAT INSTEAD					*
 ****************************************************************
 */

ni_iff_t ni_smi_tab[] = {
|;


foreach(<F>) {
  next unless $_ =~ /^\s+(\d+)\s+([^\s]+)/;
  print qq|\t{$1,\t"$2"},\n|;
}
close F;

print q|};
|;