method
dedent_string
ruby latest stable - Class:
Ripper
dedent_string(p1, p2)private
No documentation available.
static VALUE
parser_dedent_string(VALUE self, VALUE input, VALUE width)
{
int wid, col;
StringValue(input);
wid = NUM2UINT(width);
col = dedent_string(input, wid);
return INT2NUM(col);
}