Input_EUCJIS.java 592 B

1234567891011121314151617181920212223242526
  1. /* Copyright (C) 1999 Free Software Foundation
  2. This file is part of libgcj.
  3. This software is copyrighted work licensed under the terms of the
  4. Libgcj License. Please consult the file "LIBGCJ_LICENSE" for
  5. details. */
  6. package gnu.gcj.convert;
  7. /**
  8. * Convert EUCJIS (Extended Unix Code for Japan) to Unicode.
  9. * @author Per Bothner <bothner@cygnus.com>
  10. * @date April 1999.
  11. */
  12. public class Input_EUCJIS extends BytesToUnicode
  13. {
  14. public String getName() { return "EUCJIS"; }
  15. int codeset = 0;
  16. int first_byte;
  17. public native int read (char[] outbuffer, int outpos, int count);
  18. }