Lines Matching defs:last_blank
171 copy_comment_wrap_text(int line_length, ssize_t *last_blank)
177 *last_blank = (ssize_t)com.len;
182 if (ind >= line_length && *last_blank != -1)
191 if (*last_blank == -1) { /* only a single word in this line */
198 const char *last_word = com.s + *last_blank + 1;
199 size_t last_word_len = com.len - (size_t)(*last_blank + 1);
200 com.len = (size_t)*last_blank;
210 *last_blank = -1;
215 copy_comment_wrap_newline(ssize_t *last_blank, bool seen_newline)
217 *last_blank = -1;
228 *last_blank = (int)com.len - 1;
279 ssize_t last_blank = -1; /* index of the last blank in 'com' */
286 if (!copy_comment_wrap_newline(&last_blank,
293 copy_comment_wrap_text(line_length, &last_blank);