Is there a way to convince GNU indent to break long comment and change it to multiline comment? Something like this:
// Very long comment, longer than 80 characters. Just imagine that.
To this:
/*
* Very long comment, longer than 80 characters. Just
* imagine that.
*/
I know that formatting second one can be done simply by '-cdb -sc', but I don't know how to ensure line break and comment type change. Is it even possible?