source:
branches/samba-3.5.x/source3/script/gen-8bit-gap.awk
Last change on this file was 414, checked in by , 15 years ago | |
---|---|
File size: 365 bytes |
Line | |
---|---|
1 | BEGIN { |
2 | for (i=0; i<256; i++) { |
3 | tbl[sprintf("%02x",i)] = "0x0000"; |
4 | } |
5 | } |
6 | |
7 | /^<U([[:xdigit:]][[:xdigit:]][[:xdigit:]][[:xdigit:]])>[[:space:]]*.x([[:xdigit:]][[:xdigit:]])[:space:]*.*$/ { |
8 | tbl[substr($2,3,2)]=sprintf("0x%s",substr($1,3,4)); |
9 | } |
10 | |
11 | END { |
12 | for(i=0; i<32; i++) { |
13 | for(j=0; j<8; j++) { |
14 | printf(" %s,", tbl[sprintf("%02x",i*8+j)]); |
15 | } |
16 | printf "\n" |
17 | } |
18 | } |
Note:
See TracBrowser
for help on using the repository browser.