readbyte()
See IO#readbyte.
static VALUE strio_readbyte(VALUE self) { VALUE c = strio_getbyte(self); if (NIL_P(c)) rb_eof_error(); return c; }