~ubuntu-branches/ubuntu/quantal/ruby1.9.1/quantal

« back to all changes in this revision

Viewing changes to transdb.h

  • Committer: Bazaar Package Importer
  • Author(s): Lucas Nussbaum
  • Date: 2011-09-24 19:16:17 UTC
  • mfrom: (1.1.8 upstream) (13.1.7 experimental)
  • Revision ID: james.westby@ubuntu.com-20110924191617-o1qz4rcmqjot8zuy
Tags: 1.9.3~rc1-1
* New upstream release: 1.9.3 RC1.
  + Includes load.c fixes. Closes: #639959.
* Upload to unstable.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
rb_declare_transcoder("Big5", "UTF-8", "big5");
2
2
rb_declare_transcoder("UTF-8", "Big5", "big5");
 
3
rb_declare_transcoder("CP950", "UTF-8", "big5");
 
4
rb_declare_transcoder("UTF-8", "CP950", "big5");
3
5
rb_declare_transcoder("Big5-HKSCS", "UTF-8", "big5");
4
6
rb_declare_transcoder("UTF-8", "Big5-HKSCS", "big5");
 
7
rb_declare_transcoder("CP951", "UTF-8", "big5");
 
8
rb_declare_transcoder("UTF-8", "CP951", "big5");
5
9
rb_declare_transcoder("Big5-UAO", "UTF-8", "big5");
6
10
rb_declare_transcoder("UTF-8", "Big5-UAO", "big5");
7
11
rb_declare_transcoder("GB2312", "UTF-8", "chinese");
119
123
rb_declare_transcoder("UTF-8", "IBM437", "single_byte");
120
124
rb_declare_transcoder("IBM775", "UTF-8", "single_byte");
121
125
rb_declare_transcoder("UTF-8", "IBM775", "single_byte");
 
126
rb_declare_transcoder("IBM737", "UTF-8", "single_byte");
 
127
rb_declare_transcoder("UTF-8", "IBM737", "single_byte");
122
128
rb_declare_transcoder("IBM852", "UTF-8", "single_byte");
123
129
rb_declare_transcoder("UTF-8", "IBM852", "single_byte");
124
130
rb_declare_transcoder("IBM855", "UTF-8", "single_byte");
177
183
rb_declare_transcoder("UTF-8", "UTF-32BE", "utf_16_32");
178
184
rb_declare_transcoder("UTF-32LE", "UTF-8", "utf_16_32");
179
185
rb_declare_transcoder("UTF-8", "UTF-32LE", "utf_16_32");
 
186
rb_declare_transcoder("UTF-16", "UTF-8", "utf_16_32");
 
187
rb_declare_transcoder("UTF-32", "UTF-8", "utf_16_32");
 
188
rb_declare_transcoder("UTF-8", "UTF-16", "utf_16_32");
 
189
rb_declare_transcoder("UTF-8", "UTF-32", "utf_16_32");