Initial revision
[gcc.git] / libjava / gnu / gcj / convert / Input_EUCJIS.java
1 /* Copyright (C) 1999 Cygnus Solutions
2
3 This file is part of libgcj.
4
5 This software is copyrighted work licensed under the terms of the
6 Libgcj License. Please consult the file "LIBGCJ_LICENSE" for
7 details. */
8
9 package gnu.gcj.convert;
10
11 public class Input_EUCJIS extends BytesToUnicode
12 {
13 public String getName() { return "EUCJIS"; }
14
15 int codeset = 0;
16 int first_byte;
17
18 public native int read (char[] outbuffer, int outpos, int outlength);
19 }