encoding_index_korean/lib.rs
1// This is a part of rust-encoding.
2//
3// Any copyright is dedicated to the Public Domain.
4// https://creativecommons.org/publicdomain/zero/1.0/
5
6//! Korean index tables for [rust-encoding](https://github.com/lifthrasiir/rust-encoding).
7
8#![cfg_attr(test, feature(test))]
9
10#[cfg(test)]
11#[macro_use]
12extern crate encoding_index_tests;
13
14/// KS X 1001 plus Unified Hangul Code.
15///
16/// From the Encoding Standard:
17///
18/// > This matches the KS X 1001 standard and the Unified Hangul Code,
19/// > more commonly known together as Windows Codepage 949.
20pub mod euc_kr;
21