Fri, 21 Feb 2003 08:49:11 +0000
GPL.
parser.y | file | annotate | diff | revisions | |
scanner.l | file | annotate | diff | revisions |
1.1 diff -r 9bd354b83e16 -r 6eddf63aa517 parser.y 1.2 --- a/parser.y Thu Feb 20 12:44:17 2003 +0000 1.3 +++ b/parser.y Fri Feb 21 08:49:11 2003 +0000 1.4 @@ -1,3 +1,28 @@ 1.5 +/* 1.6 + * t2p: Create a PDF file from the contents of one or more TIFF 1.7 + * bilevel image files. The images in the resulting PDF file 1.8 + * will be compressed using ITU-T T.6 (G4) fax encoding. 1.9 + * 1.10 + * Parser 1.11 + * $Id: parser.y,v 1.17 2003/02/21 00:49:11 eric Exp $ 1.12 + * Copyright 2001, 2002, 2003 Eric Smith <eric@brouhaha.com> 1.13 + * 1.14 + * This program is free software; you can redistribute it and/or modify 1.15 + * it under the terms of the GNU General Public License version 2 as 1.16 + * published by the Free Software Foundation. Note that permission is 1.17 + * not granted to redistribute this program under the terms of any 1.18 + * other version of the General Public License. 1.19 + * 1.20 + * This program is distributed in the hope that it will be useful, 1.21 + * but WITHOUT ANY WARRANTY; without even the implied warranty of 1.22 + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 1.23 + * GNU General Public License for more details. 1.24 + * 1.25 + * You should have received a copy of the GNU General Public License 1.26 + * along with this program; if not, write to the Free Software 1.27 + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA 1.28 +*/ 1.29 + 1.30 %{ 1.31 #include <stdbool.h> 1.32 #include <stdint.h>
2.1 diff -r 9bd354b83e16 -r 6eddf63aa517 scanner.l 2.2 --- a/scanner.l Thu Feb 20 12:44:17 2003 +0000 2.3 +++ b/scanner.l Fri Feb 21 08:49:11 2003 +0000 2.4 @@ -1,5 +1,26 @@ 2.5 /* 2.6 -$Id: scanner.l,v 1.16 2002/08/25 22:02:31 eric Exp $ 2.7 + * t2p: Create a PDF file from the contents of one or more TIFF 2.8 + * bilevel image files. The images in the resulting PDF file 2.9 + * will be compressed using ITU-T T.6 (G4) fax encoding. 2.10 + * 2.11 + * Lexical analyzer 2.12 + * $Id: scanner.l,v 1.17 2003/02/21 00:49:11 eric Exp $ 2.13 + * Copyright 2001, 2002, 2003 Eric Smith <eric@brouhaha.com> 2.14 + * 2.15 + * This program is free software; you can redistribute it and/or modify 2.16 + * it under the terms of the GNU General Public License version 2 as 2.17 + * published by the Free Software Foundation. Note that permission is 2.18 + * not granted to redistribute this program under the terms of any 2.19 + * other version of the General Public License. 2.20 + * 2.21 + * This program is distributed in the hope that it will be useful, 2.22 + * but WITHOUT ANY WARRANTY; without even the implied warranty of 2.23 + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 2.24 + * GNU General Public License for more details. 2.25 + * 2.26 + * You should have received a copy of the GNU General Public License 2.27 + * along with this program; if not, write to the Free Software 2.28 + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA 2.29 */ 2.30 2.31 %option case-insensitive