Skip to content

Commit

Permalink
Comment on IBM930, IBM933, IBM935, IBM937, IBM939.
Browse files Browse the repository at this point in the history
Add comments for IBM930, IBM933, IBM935, IBM937, and IBM939 which
explain exactly what purpose these encodings have and provide a URL to
the upstream IBM database that further provides the details of the
encoding.
  • Loading branch information
Carlos O'Donell committed Dec 3, 2015
1 parent d0e3ffb commit 4de3b51
Show file tree
Hide file tree
Showing 6 changed files with 32 additions and 0 deletions.
8 changes: 8 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
2015-12-02 Carlos O'Donell <carlos@redhat.com>

* iconvdata/ibm930.c: Add comment explaining encoding uses.
* iconvdata/ibm933.c: Likewise.
* iconvdata/ibm935.c: Likewise.
* iconvdata/ibm937.c: Likewise.
* iconvdata/ibm939.c: Likewise.

2015-12-02 Adhemerval Zanella <adhemerval.zanella@linaro.org>

* nptl/tst-cancel20.c (do_one_test): Move the pipe closing after
Expand Down
5 changes: 5 additions & 0 deletions iconvdata/ibm930.c
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,11 @@
License along with the GNU C Library; if not, see
<http://www.gnu.org/licenses/>. */

/* IBM930 is designed for the representation of Japanese Katakana/Kanji
using a stateful EBCDIC encoding scheme. It is also known as
CCSID 930 or CP930. See:
https://www-01.ibm.com/software/globalization/ccsid/ccsid930.html */

#include <dlfcn.h>
#include <stdint.h>
#include <wchar.h>
Expand Down
4 changes: 4 additions & 0 deletions iconvdata/ibm933.c
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@
License along with the GNU C Library; if not, see
<http://www.gnu.org/licenses/>. */

/* IBM933 is designed for the representation of Korean using a stateful
EBCDIC encoding scheme. It is also known as CCSID 933 or CP933. See:
https://www-01.ibm.com/software/globalization/ccsid/ccsid933.html */

#include <dlfcn.h>
#include <stdint.h>
#include <wchar.h>
Expand Down
5 changes: 5 additions & 0 deletions iconvdata/ibm935.c
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,11 @@
License along with the GNU C Library; if not, see
<http://www.gnu.org/licenses/>. */

/* IBM935 is designed for the representation of Simplified Chinese
using a stateful EBCDIC encoding scheme. It is also known as
CCSID 935 or CP935. See:
https://www-01.ibm.com/software/globalization/ccsid/ccsid935.html */

#include <dlfcn.h>
#include <stdint.h>
#include <wchar.h>
Expand Down
5 changes: 5 additions & 0 deletions iconvdata/ibm937.c
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,11 @@
License along with the GNU C Library; if not, see
<http://www.gnu.org/licenses/>. */

/* IBM937 is designed for the representation of Traditional Chinese
using a stateful EBCDIC encoding scheme. It is also known as
CCSID 937 or CP937. See:
https://www-01.ibm.com/software/globalization/ccsid/ccsid937.html */

#include <dlfcn.h>
#include <stdint.h>
#include <wchar.h>
Expand Down
5 changes: 5 additions & 0 deletions iconvdata/ibm939.c
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,11 @@
License along with the GNU C Library; if not, see
<http://www.gnu.org/licenses/>. */

/* IBM939 is designed for the representation of Japanese Latin/Kanji
using a stateful EBCDIC encoding scheme. It is also known as
CCSID 939 or CP939. See:
https://www-01.ibm.com/software/globalization/ccsid/ccsid939.html */

#include <dlfcn.h>
#include <stdint.h>
#include <wchar.h>
Expand Down

0 comments on commit 4de3b51

Please sign in to comment.