aboutsummaryrefslogtreecommitdiffstats
path: root/transcode_data.h
diff options
context:
space:
mode:
authorakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-09-04 15:46:18 +0000
committerakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-09-04 15:46:18 +0000
commitf549f1ae3269fbf5567eafbef8855bcd0062e27d (patch)
treec39a97fb2eae771682602ef61aa9cb5c8985d663 /transcode_data.h
parenta50b307900892347c8267aa9c112ab73c4754baf (diff)
downloadruby-f549f1ae3269fbf5567eafbef8855bcd0062e27d.tar.gz
* transcode_data.h (rb_transcoder): rename fields:
from_encoding -> src_encoding, to_encoding -> dst_encoding. * transcode.c: follow the renaming. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@19142 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'transcode_data.h')
-rw-r--r--transcode_data.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/transcode_data.h b/transcode_data.h
index ee30fe7faa..8729b3b4e9 100644
--- a/transcode_data.h
+++ b/transcode_data.h
@@ -63,8 +63,8 @@ typedef struct rb_transcoder rb_transcoder;
/* static structure, one per supported encoding pair */
struct rb_transcoder {
- const char *from_encoding;
- const char *to_encoding;
+ const char *src_encoding;
+ const char *dst_encoding;
unsigned int conv_tree_start;
const unsigned char *byte_array;
unsigned int byte_array_length;