aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>2005-10-17 04:52:39 +0000
committerRoland McGrath <roland@gnu.org>2005-10-17 04:52:39 +0000
commit9871f0a9931125425783141c0821014c043f5f04 (patch)
tree740f15ebc8e1ec7804a6f7e6a61b9428c5fe5b57
parente11271ed670022149f3c451d66c915cdc8e9c220 (diff)
downloadglibc-9871f0a9931125425783141c0821014c043f5f04.tar
glibc-9871f0a9931125425783141c0821014c043f5f04.tar.gz
glibc-9871f0a9931125425783141c0821014c043f5f04.tar.bz2
glibc-9871f0a9931125425783141c0821014c043f5f04.zip
2005-02-07 Richard Henderson <rth@redhat.com>
[BZ #721] * iconvdata/jis0208.h (struct jisx0208_ucs_idx): Move before use.
-rw-r--r--iconvdata/jis0208.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/iconvdata/jis0208.h b/iconvdata/jis0208.h
index 9dea38973c..8255bafc62 100644
--- a/iconvdata/jis0208.h
+++ b/iconvdata/jis0208.h
@@ -1,5 +1,5 @@
/* Access functions for JISX0208 conversion.
- Copyright (C) 1997, 1998, 1999, 2000, 2003 Free Software Foundation, Inc.
+ Copyright (C) 1997,1998,1999,2000,2003,2005 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed by Ulrich Drepper <drepper@cygnus.com>, 1997.
@@ -24,15 +24,6 @@
#include <gconv.h>
#include <stdint.h>
-/* Conversion table. */
-extern const uint16_t __jis0208_to_ucs[];
-
-extern const char __jisx0208_from_ucs4_lat1[256][2];
-extern const char __jisx0208_from_ucs4_greek[0xc1][2];
-extern const struct jisx0208_ucs_idx __jisx0208_from_ucs_idx[];
-extern const char __jisx0208_from_ucs_tab[][2];
-
-
/* Struct for table with indeces in UCS mapping table. */
struct jisx0208_ucs_idx
{
@@ -42,6 +33,15 @@ struct jisx0208_ucs_idx
};
+/* Conversion table. */
+extern const uint16_t __jis0208_to_ucs[];
+
+extern const char __jisx0208_from_ucs4_lat1[256][2];
+extern const char __jisx0208_from_ucs4_greek[0xc1][2];
+extern const struct jisx0208_ucs_idx __jisx0208_from_ucs_idx[];
+extern const char __jisx0208_from_ucs_tab[][2];
+
+
static inline uint32_t
__attribute ((always_inline))
jisx0208_to_ucs4 (const unsigned char **s, size_t avail, unsigned char offset)