diff options
| author | akr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-09-03 16:31:14 +0000 |
|---|---|---|
| committer | akr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-09-03 16:31:14 +0000 |
| commit | f9ff9dfdcb9930730c0174bd6cbc35e4e3bdce75 (patch) | |
| tree | 4e810524256dc53ec8dfdff57b11aa2b6d0b068b | |
| parent | 222d223d058104515d550a6737bae1741457c282 (diff) | |
| download | ruby-f9ff9dfdcb9930730c0174bd6cbc35e4e3bdce75.tar.gz ruby-f9ff9dfdcb9930730c0174bd6cbc35e4e3bdce75.tar.xz ruby-f9ff9dfdcb9930730c0174bd6cbc35e4e3bdce75.zip | |
comment updated.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@19107 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
| -rw-r--r-- | transcode_data.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/transcode_data.h b/transcode_data.h index 8442355a5..bf1b6df8e 100644 --- a/transcode_data.h +++ b/transcode_data.h @@ -79,8 +79,8 @@ struct rb_transcoder { int max_output; rb_transcoder_stateful_type_t stateful_type; size_t state_size; - int (*state_init_func)(void*); /* 0:success !=0:failure(errno) */ - int (*state_fini_func)(void*); /* 0:success !=0:failure(errno) */ + int (*state_init_func)(void*); /* ret==0:success ret!=0:failure(errno) */ + int (*state_fini_func)(void*); /* ret==0:success ret!=0:failure(errno) */ VALUE (*func_ii)(void*, VALUE); /* info -> info */ VALUE (*func_si)(void*, const unsigned char*, size_t); /* start -> info */ int (*func_io)(void*, VALUE, const unsigned char*); /* info -> output */ |
