ref: d9367f7452f9117ce3a7f7649966cb42a2c33995
parent: a2cb3337c3f559fc65d3122d649386c797fbc949
author: giles <giles@ded80894-8fb9-0310-811b-c03f3676ab4d>
date: Sun Jun 10 03:09:18 EDT 2001
added copyright statements to the source files git-svn-id: http://svn.ghostscript.com/jbig2dec/trunk@21 ded80894-8fb9-0310-811b-c03f3676ab4d
--- a/jbig2_arith.c
+++ b/jbig2_arith.c
@@ -1,3 +1,16 @@
+/*
+ jbig2dec
+
+ Copyright (c) 2001 artofcode LLC.
+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+
+ $Id: jbig2_arith.c,v 1.5 2001/06/10 07:09:18 giles Exp $
+*/
+
#include <stdio.h>
#include <stdlib.h>
--- a/jbig2_arith.h
+++ b/jbig2_arith.h
@@ -1,3 +1,16 @@
+/*
+ jbig2dec
+
+ Copyright (c) 2001 artofcode LLC.
+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+
+ $Id: jbig2_arith.h,v 1.3 2001/06/10 07:09:18 giles Exp $
+*/
+
typedef struct _Jbig2ArithState Jbig2ArithState;
/* An arithmetic coding context is stored as a single byte, with the
--- a/jbig2_huffman.c
+++ b/jbig2_huffman.c
@@ -1,3 +1,16 @@
+/*
+ jbig2dec
+
+ Copyright (c) 2001 artofcode LLC.
+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+
+ $Id: jbig2_huffman.c,v 1.3 2001/06/10 07:09:18 giles Exp $
+*/
+
/* Huffman table decoding procedures */
#include <stdlib.h>
--- a/jbig2_huffman.h
+++ b/jbig2_huffman.h
@@ -1,3 +1,16 @@
+/*
+ jbig2dec
+
+ Copyright (c) 2001 artofcode LLC.
+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+
+ $Id: jbig2_huffman.h,v 1.2 2001/06/10 07:09:18 giles Exp $
+*/
+
typedef struct _Jbig2HuffmanState Jbig2HuffmanState;
typedef struct _Jbig2HuffmanTable Jbig2HuffmanTable;
typedef struct _Jbig2HuffmanParams Jbig2HuffmanParams;
--- a/jbig2dec.c
+++ b/jbig2dec.c
@@ -1,3 +1,16 @@
+/*
+ jbig2dec
+
+ Copyright (c) 2001 artofcode LLC.
+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+
+ $Id: jbig2dec.c,v 1.3 2001/06/10 07:09:18 giles Exp $
+*/
+
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
--- a/jbig2dec.h
+++ b/jbig2dec.h
@@ -1,3 +1,16 @@
+/*
+ jbig2dec
+
+ Copyright (c) 2001 artofcode LLC.
+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+
+ $Id: jbig2dec.h,v 1.2 2001/06/10 07:09:18 giles Exp $
+*/
+
typedef unsigned char byte;
typedef int bool;
typedef unsigned int uint32;