/** * call-seq: * Rev::Buffer#prepend(data) -> String * * Prepend the given data to the beginning of the buffer */ static VALUE Rev_Buffer_prepend(VALUE self, VALUE data) { struct buffer *buf; Data_Get_Struct(self, struct buffer, buf); data = rb_convert_type(data, T_STRING, "String", "to_str"); buffer_prepend(buf, RSTRING_PTR(data), RSTRING_LEN(data)); return data; }