Method deprecated or moved
This method is deprecated or moved on the latest stable version.
The last existing version (v1_9_3_125) is shown here.
These similar methods exist in v1_9_3_392:
readchar()
public
Show source
static VALUE
strio_readchar(VALUE self)
{
VALUE c = strio_getc(self);
if (NIL_P(c)) rb_eof_error();
return c;
}