mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-05 21:00:05 +00:00
8b682b9907
* iconvdata/gen-8bit-gap-1.sh: Update for new charmap format. * iconvdata/gen-8bit-gap.sh: Likewise. * iconvdata/gen-8bit.sh: Likewise. * iconv/gconv_open.c (__gconv_open): Move comment to correct position. * locale/programs/ld-collate.c (collate_read): Don't actually read the copy locale if we are ignoring the content. * sunrpc/xdr_rec.c (set_input_fragment): Fix PR libc/1549, patch from Jens Moeller <jens.moeller@waii.com>.
12 lines
382 B
Bash
12 lines
382 B
Bash
#! /bin/sh
|
|
echo "static const uint32_t to_ucs4[256] = {"
|
|
sed -ne '/^[^[:space:]]*[[:space:]]*.x00/d' \
|
|
-e 's/^<U\(....\)>[[:space:]]*.x\(..\).*/ [0x\2] = 0x\1,/p' \
|
|
"$@" | sort -u
|
|
echo "};"
|
|
echo "static const char from_ucs4[] = {"
|
|
sed -ne '/^[^[:space:]]*[[:space:]]*.x00/d' \
|
|
-e 's/^<U\(....\)>[[:space:]]*.x\(..\).*/ [0x\1] = 0x\2,/p' \
|
|
"$@" | sort -u
|
|
echo "};"
|