diff options
author | Andrew Bartlett <abartlet@samba.org> | 2012-05-28 12:13:14 +1000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2012-05-30 04:15:11 +0200 |
commit | 53d4ffcc227cd2d3a998718faeeeca0d1431e54b (patch) | |
tree | 0ecc265db86cdb0238538a6e7ef4c9834f7f1de8 /source3/script/gap.awk | |
parent | c691ada7096a9c5c6c95de390329ebb16e2086c5 (diff) | |
download | samba-53d4ffcc227cd2d3a998718faeeeca0d1431e54b.tar.gz samba-53d4ffcc227cd2d3a998718faeeeca0d1431e54b.tar.xz samba-53d4ffcc227cd2d3a998718faeeeca0d1431e54b.zip |
s3-iconv: Remove unused script/gen-8bit-gap.sh
We decided to rely on a system iconv rather than these
modules.
Andrew Bartlett
Diffstat (limited to 'source3/script/gap.awk')
-rw-r--r-- | source3/script/gap.awk | 39 |
1 files changed, 0 insertions, 39 deletions
diff --git a/source3/script/gap.awk b/source3/script/gap.awk deleted file mode 100644 index 11680d10f9..0000000000 --- a/source3/script/gap.awk +++ /dev/null @@ -1,39 +0,0 @@ -BEGIN { hv["0"] = 0; hv["1"] = 1; hv["2"] = 2; hv["3"] = 3; - hv["4"] = 4; hv["5"] = 5; hv["6"] = 6; hv["7"] = 7; - hv["8"] = 8; hv["9"] = 9; hv["A"] = 10; hv["B"] = 11; - hv["C"] = 12; hv["D"] = 13; hv["E"] = 14; hv["F"] = 15; - hv["a"] = 10; hv["b"] = 11; hv["c"] = 12; hv["d"] = 13; - hv["e"] = 14; hv["f"] = 15; - - first = 0; last = 0; idx = 0; -} - -function tonum(str) -{ - num=0; - cnt=1; - while (cnt <= length(str)) { - num *= 16; - num += hv[substr(str,cnt,1)]; - ++cnt; - } - return num; -} - -{ - u = tonum($1); - if (u - last > 6) - { - if (last) - { - printf (" { 0x%04x, 0x%04x, %5d },\n", - first, last, idx); - idx -= u - last - 1; - } - first = u; - } - last = u; -} - -END { printf (" { 0x%04x, 0x%04x, %5d },\n", - first, last, idx); } |