encoding_index_japanese/
lib.rs

1// This is a part of encoding-next.
2//
3// Any copyright is dedicated to the Public Domain.
4// https://creativecommons.org/publicdomain/zero/1.0/
5
6//! Japanese index tables for [encoding-next](https://github.com/alexschrod/encoding-next).
7
8#![cfg_attr(test, feature(test))]
9
10/// JIS X 0208 with common extensions.
11///
12/// From the Encoding Standard:
13///
14/// > This is the JIS X 0208 standard including formerly proprietary extensions from IBM and NEC.
15#[rustfmt::skip]
16pub mod jis0208;
17
18/// JIS X 0212.
19///
20/// From the Encoding Standard:
21///
22/// > This is the JIS X 0212 standard.
23/// > It is only used by the euc-jp decoder due to lack of widespread support elsewhere.
24#[rustfmt::skip]
25pub mod jis0212;