Module: IO::generic_writable

Included in:
StringIO
Defined in:
stringio.c

Instance Method Summary collapse

Instance Method Details

#<<Object

#printfObject

#putsObject

#syswriteObject

#write_nonblockObject



1382
1383
1384
1385
1386
1387
1388
1389
# File 'stringio.c', line 1382

static VALUE
strio_syswrite_nonblock(int argc, VALUE *argv, VALUE self)
{
    VALUE str;

    rb_scan_args(argc, argv, "10:", &str, NULL);
    return strio_syswrite(self, str);
}