printf(format_string [, obj, ...] ) → nilclick to toggle source
See IO#printf.
#define strio_printf rb_io_printf
puts(obj, ...) → nilclick to toggle source
See IO#puts.
#define strio_puts rb_io_puts
write_nonblock(p1, p2 = {})click to toggle source
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);
}