Method: Zlib::ZStream#data_type
- Defined in:
- ext/zlib/zlib.c
#data_type ⇒ Object
Guesses the type of the data which have been inputed into the stream. The returned value is either BINARY, ASCII, or UNKNOWN.
1483 1484 1485 1486 1487 |
# File 'ext/zlib/zlib.c', line 1483
static VALUE
rb_zstream_data_type(VALUE obj)
{
return INT2FIX(get_zstream(obj)->stream.data_type);
}
|