Lines Matching defs:divider
68 static size_t line_width; /* width of a line (two columns and divider) */
372 /* Subtract column divider and divide by two. */
631 * Takes two strings, separated by a column divider. NULL strings are
632 * treated as empty columns. If the divider is the ` ' character, the
634 * string must be NULL. When the second column is NULL, the divider
635 * does not print the trailing space following the divider character.
640 println(const char *s1, const char divider, const char *s2)
657 if (divider == ' ' && !s2) {
663 * Print column divider. If there is no second column, we don't
667 printf(" %c\n", divider);
670 printf(" %c ", divider);
823 * `(' divider. This matches GNU sdiff, but I
892 enqueue(char *left, char divider, char *right)
899 diffp->div = divider;
995 /* Remember the divider. */
1037 errx(2, "invalid divider: %c", divc);