Home | History | Annotate | Download | only in utils

Lines Matching refs:column

66 static void word_wrap(int indent, int *column, char *msg)
70 if (*column + wlen > LINE_LEN) {
72 *column = indent;
75 *column += wlen + 1;
89 int column;
129 column = 8;
130 word_wrap(8, &column, event->desc);
132 word_wrap(8, &column, buf);
144 column = 14;
145 word_wrap(14, &column, event->unit->um[j].desc);