1*69489Sbostic // -*- C++ -*- 2*69489Sbostic /* Copyright (C) 1989, 1990, 1991, 1992 Free Software Foundation, Inc. 3*69489Sbostic Written by James Clark (jjc@jclark.com) 4*69489Sbostic 5*69489Sbostic This file is part of groff. 6*69489Sbostic 7*69489Sbostic groff is free software; you can redistribute it and/or modify it under 8*69489Sbostic the terms of the GNU General Public License as published by the Free 9*69489Sbostic Software Foundation; either version 2, or (at your option) any later 10*69489Sbostic version. 11*69489Sbostic 12*69489Sbostic groff is distributed in the hope that it will be useful, but WITHOUT ANY 13*69489Sbostic WARRANTY; without even the implied warranty of MERCHANTABILITY or 14*69489Sbostic FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License 15*69489Sbostic for more details. 16*69489Sbostic 17*69489Sbostic You should have received a copy of the GNU General Public License along 18*69489Sbostic with groff; see the file COPYING. If not, write to the Free Software 19*69489Sbostic Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ 20*69489Sbostic 21*69489Sbostic #include <stdio.h> 22*69489Sbostic #include <string.h> 23*69489Sbostic #include <ctype.h> 24*69489Sbostic #include <stdlib.h> 25*69489Sbostic #include <stddef.h> 26*69489Sbostic #include <errno.h> 27*69489Sbostic #include <assert.h> 28*69489Sbostic #include <math.h> 29*69489Sbostic #include "errarg.h" 30*69489Sbostic #include "error.h" 31*69489Sbostic #include "font.h" 32*69489Sbostic #include "printer.h" 33*69489Sbostic #include "lib.h" 34*69489Sbostic 35*69489Sbostic void do_file(const char *); 36*69489Sbostic extern printer *pr; 37