1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-25 23:21:54 +03:00
samba-mirror/source3/script/gen-8bit-gap.awk
Alexander Bokovoy 39abb5cacc Proper fix for #380 -- use different algorithm to generate codepages
source code which allows to take gaps into account thus making unneccessary
extended [index] = value, syntax in to_ucs2 array
(This used to be commit 4ab08a4bb8)
2003-09-01 11:33:42 +00:00

18 lines
365 B
Awk

BEGIN {
for (i=0; i<256; i++) {
tbl[sprintf("%02x",i)] = "0x0000";
}
}
/^<U([[:xdigit:]][[:xdigit:]][[:xdigit:]][[:xdigit:]])>[[:space:]]*.x([[:xdigit:]][[:xdigit:]])[:space:]*.*$/ {
tbl[substr($2,3,2)]=sprintf("0x%s",substr($1,3,4));
}
END {
for(i=0; i<32; i++) {
for(j=0; j<8; j++) {
printf(" %s,", tbl[sprintf("%02x",i*8+j)]);
}
printf "\n"
}
}