mirror of
				https://github.com/ruby/ruby.git
				synced 2022-11-09 12:17:21 -05:00 
			
		
		
		
	test/ruby/test_transcode.rb: Fixed encoding name to the correct one in the IANA registry (IBM037) and added an alias (ebcdic-cp-us) git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@53124 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
		
			
				
	
	
		
			11 lines
		
	
	
	
		
			353 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
	
		
			353 B
		
	
	
	
		
			C
		
	
	
	
	
	
#include "regenc.h"
 | 
						|
/* dummy for unsupported, non-ascii-based encoding */
 | 
						|
ENC_DUMMY("IBM037");
 | 
						|
ENC_ALIAS("ebcdic-cp-us", "IBM037");
 | 
						|
 | 
						|
/* we start with just defining a single EBCDIC encoding,
 | 
						|
 * hopefully the most widely used one.
 | 
						|
 *
 | 
						|
 * See http://www.iana.org/assignments/character-sets/character-sets.xhtml
 | 
						|
 *     http://tools.ietf.org/html/rfc1345
 | 
						|
 */
 |