= private = protected
ungetc(p1)
See Zlib::GzipReader documentation for a description.
/* * See Zlib::GzipReader documentation for a description. */ static VALUE rb_gzreader_ungetc(obj, ch) VALUE obj, ch; { struct gzfile *gz = get_gzfile(obj); gzfile_ungetc(gz, NUM2CHR(ch)); return Qnil; }