| 1 | #!/usr/bin/perl -w
|
|---|
| 2 | # unicode-decomp.pl - script to generate database for java.text.Collator
|
|---|
| 3 | # Copyright (C) 1998, 1999, 2002 Free Software Foundation, Inc.
|
|---|
| 4 | #
|
|---|
| 5 | # This file is part of libjava.
|
|---|
| 6 | #
|
|---|
| 7 | # This software is copyrighted work licensed under the terms of the
|
|---|
| 8 | # Libjava License. Please consult the file "LIBJAVA_LICENSE" for
|
|---|
| 9 | # details.
|
|---|
| 10 |
|
|---|
| 11 | # Code for reading UnicodeData.txt and generating the code for
|
|---|
| 12 | # gnu.java.lang.CharData. For now, the relevant Unicode definition files
|
|---|
| 13 | # are found in libjava/gnu/gcj/convert/.
|
|---|
| 14 | #
|
|---|
| 15 | # Usage: ./unicode-decomp.pl [-n] <UnicodeData.txt> <decomp.h>
|
|---|
| 16 | # where <UnicodeData.txt> is obtained from www.unicode.org (named
|
|---|
|
|---|