initial commit
[glibc.git] / sysdeps / s390 / multiarch / gen-8bit.sh
1 #!/bin/sh
2 echo "static const uint8_t to_ucs1[256] = {"
3 sed -ne '/^[^[:space:]]*[[:space:]]*.x00/d;/^END/q' \
4 -e 's/^<U00\(..\)>[[:space:]]*.x\(..\).*/ [0x\2] = 0x\1,/p' \
5 "$@" | sort -u
6 echo "};"