method

dedent_string

v2_5_5 - Show latest stable - Class: Ripper
dedent_string(p1, p2)
public

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);
}