aboutsummaryrefslogtreecommitdiff
path: root/openssl/trunk/util/extract-names.pl
diff options
context:
space:
mode:
Diffstat (limited to 'openssl/trunk/util/extract-names.pl')
-rw-r--r--openssl/trunk/util/extract-names.pl26
1 files changed, 0 insertions, 26 deletions
diff --git a/openssl/trunk/util/extract-names.pl b/openssl/trunk/util/extract-names.pl
deleted file mode 100644
index 35bd6ed8..00000000
--- a/openssl/trunk/util/extract-names.pl
+++ /dev/null
@@ -1,26 +0,0 @@
-#!/usr/bin/perl
-
-$/ = ""; # Eat a paragraph at once.
-while(<STDIN>) {
- chop;
- s/\n/ /gm;
- if (/^=head1 /) {
- $name = 0;
- } elsif ($name) {
- if (/ - /) {
- s/ - .*//;
- s/,\s+/,/g;
- s/\s+,/,/g;
- s/^\s+//g;
- s/\s+$//g;
- s/\s/_/g;
- push @words, split ',';
- }
- }
- if (/^=head1 *NAME *$/) {
- $name = 1;
- }
-}
-
-print join("\n", @words),"\n";
-