indent_func_proto_param

Same as indent_func_call_param, but for function prototypes.

Possible values are true and false, default false.

Examples

true

Before:

int booFunct(int fp,
        int sp);

code after:

int booFunct(int fp,
    int sp);

false

Before:

int booFunct(int fp,
        int sp);

code after:

int booFunct(int fp,
             int sp);

See also