col.c (43d665c0d143b6b82163b8648b487fa0c65c3d4e) col.c (50d6b258b2511b2b1c3ee6195d9e9d17d49e04fd)
1/*-
2 * Copyright (c) 1990, 1993, 1994
3 * The Regents of the University of California. All rights reserved.
4 *
5 * This code is derived from software contributed to Berkeley by
6 * Michael Rendell of the Memorial University of Newfoundland.
7 *
8 * Redistribution and use in source and binary forms, with or without

--- 85 unchanged lines hidden (view full) ---

94};
95
96LINE *alloc_line __P((void));
97void dowarn __P((int));
98void flush_line __P((LINE *));
99void flush_lines __P((int));
100void flush_blanks __P((void));
101void free_line __P((LINE *));
1/*-
2 * Copyright (c) 1990, 1993, 1994
3 * The Regents of the University of California. All rights reserved.
4 *
5 * This code is derived from software contributed to Berkeley by
6 * Michael Rendell of the Memorial University of Newfoundland.
7 *
8 * Redistribution and use in source and binary forms, with or without

--- 85 unchanged lines hidden (view full) ---

94};
95
96LINE *alloc_line __P((void));
97void dowarn __P((int));
98void flush_line __P((LINE *));
99void flush_lines __P((int));
100void flush_blanks __P((void));
101void free_line __P((LINE *));
102int main __P((int, char **));
102void usage __P((void));
103void wrerr __P((void));
104void *xmalloc __P((void *, size_t));
105
106CSET last_set; /* char_set of last char printed */
107LINE *lines;
108int compress_spaces; /* if doing space -> tab conversion */
109int fine; /* if `fine' resolution (half lines) */

--- 442 unchanged lines hidden ---
103void usage __P((void));
104void wrerr __P((void));
105void *xmalloc __P((void *, size_t));
106
107CSET last_set; /* char_set of last char printed */
108LINE *lines;
109int compress_spaces; /* if doing space -> tab conversion */
110int fine; /* if `fine' resolution (half lines) */

--- 442 unchanged lines hidden ---