c-lineup-topmost-intro-cont

c-lineup-topmost-intro-cont is a compiled Lisp function in `cc-align.el'.

(c-lineup-topmost-intro-cont LANGELEM)

Line up declaration continuation lines zero or one indentation step.
For lines in the "header" of a definition, zero is used. For other
lines, `c-basic-offset' is added to the indentation. E.g.:

int
neg (int i) <- c-lineup-topmost-intro-cont
{
return -i;
}

struct
larch <- c-lineup-topmost-intro-cont
{
double height;
}
the_larch, <- c-lineup-topmost-intro-cont
another_larch; <- c-lineup-topmost-intro-cont
<--> c-basic-offset

struct larch
the_larch, <- c-lineup-topmost-intro-cont
another_larch; <- c-lineup-topmost-intro-cont

(This function is mainly provided to mimic the behavior of CC Mode
5.28 and earlier where this case wasn't handled consistently so that
these lines could be analyzed as either topmost-intro-cont or
statement-cont.)

Works with: topmost-intro-cont.