169489Sbostic // -*- C++ -*- 269489Sbostic /* Copyright (C) 1989, 1990, 1991, 1992 Free Software Foundation, Inc. 369489Sbostic Written by James Clark (jjc@jclark.com) 469489Sbostic 569489Sbostic This file is part of groff. 669489Sbostic 769489Sbostic groff is free software; you can redistribute it and/or modify it under 869489Sbostic the terms of the GNU General Public License as published by the Free 969489Sbostic Software Foundation; either version 2, or (at your option) any later 1069489Sbostic version. 1169489Sbostic 1269489Sbostic groff is distributed in the hope that it will be useful, but WITHOUT ANY 1369489Sbostic WARRANTY; without even the implied warranty of MERCHANTABILITY or 1469489Sbostic FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License 1569489Sbostic for more details. 1669489Sbostic 1769489Sbostic You should have received a copy of the GNU General Public License along 1869489Sbostic with groff; see the file COPYING. If not, write to the Free Software 1969489Sbostic Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ 2069489Sbostic 2169489Sbostic #include <stdio.h> 2269489Sbostic #include <string.h> 2369489Sbostic #include <ctype.h> 2469489Sbostic #include <stdlib.h> 2569489Sbostic #include <stddef.h> 26*69501Sbostic #include <unistd.h> 2769489Sbostic #include <errno.h> 2869489Sbostic #include <assert.h> 2969489Sbostic #include <math.h> 3069489Sbostic #include "errarg.h" 3169489Sbostic #include "error.h" 3269489Sbostic #include "font.h" 3369489Sbostic #include "printer.h" 3469489Sbostic #include "lib.h" 3569489Sbostic 3669489Sbostic void do_file(const char *); 3769489Sbostic extern printer *pr; 38