From 5f8e0f8ef9a422691dd72e8a953a42a41478fcb4 Mon Sep 17 00:00:00 2001 From: Tatsuya Kinoshita Date: Wed, 4 May 2011 16:18:09 +0900 Subject: Releasing debian version 0.5.1-1 --- Symbols/sym.pl | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 Symbols/sym.pl (limited to 'Symbols/sym.pl') diff --git a/Symbols/sym.pl b/Symbols/sym.pl new file mode 100644 index 0000000..11d3395 --- /dev/null +++ b/Symbols/sym.pl @@ -0,0 +1,11 @@ + +while(<>) { + for(split('')) { + $n = ord($_); + if ($n & 0x80) { + printf("\\%.3o", $n); + } else { + print $_; + } + } +} -- cgit v1.2.3