Fix copyright headers.

Add forgotten templates and fill in the information in places I had
forgotten. I hope I got the dates right (timezone issues).
This commit is contained in:
Bill Currie 2011-01-25 08:54:02 +09:00
parent 49b7c2d527
commit 7e914b8c53
10 changed files with 102 additions and 34 deletions

View file

@ -1,3 +1,34 @@
/*
qfprogs.h
Progs dumping, main header.
Copyright (C) 2002 Bill Currie <bill@taniwha.org>
Author: Bill Currie <bill@taniwha.org>
Date: 2002/05/13
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.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to:
Free Software Foundation, Inc.
59 Temple Place - Suite 330
Boston, MA 02111-1307, USA
$Id$
*/
#ifndef __qfprogs_h
#define __qfprogs_h

View file

@ -1,12 +1,12 @@
/*
#FILENAME#
disassemble.c
#DESCRIPTION#
Dump progs disassembly.
Copyright (C) 2001 #AUTHOR#
Copyright (C) 2002 Bill Currie <bill@taniwha.org>
Author: #AUTHOR#
Date: #DATE#
Author: Bill Currie <bill@taniwha.org>
Date: 2002/05/13
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License

View file

@ -1,12 +1,12 @@
/*
#FILENAME#
globals.c
#DESCRIPTION#
Dump progs globals information.
Copyright (C) 2001 #AUTHOR#
Copyright (C) 2002 Bill Currie <bill@taniwha.org>
Author: #AUTHOR#
Date: #DATE#
Author: Bill Currie <bill@taniwha.org>
Date: 2002/05/16
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License

View file

@ -1,12 +1,12 @@
/*
#FILENAME#
lines.c
#DESCRIPTION#
Dump line number information.
Copyright (C) 2001 #AUTHOR#
Copyright (C) 2002 Bill Currie <bill@taniwha.org>
Author: #AUTHOR#
Date: #DATE#
Author: Bill Currie <bill@taniwha.org>
Date: 2002/09/06
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License

View file

@ -1,12 +1,12 @@
/*
#FILENAME#
modules.c
#DESCRIPTION#
Module dumping.
Copyright (C) 2001 #AUTHOR#
Copyright (C) 2002 Bill Currie <bill@taniwha.org>
Author: #AUTHOR#
Date: #DATE#
Author: Bill Currie <bill@taniwha.org>
Date: 2002/08/19
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License

View file

@ -1,12 +1,12 @@
/*
#FILENAME#
qfprogs.c
#DESCRIPTION#
Progs dumping, main file.
Copyright (C) 2001 #AUTHOR#
Copyright (C) 2002 Bill Currie <bill@taniwha.org>
Author: #AUTHOR#
Date: #DATE#
Author: Bill Currie <bill@taniwha.org>
Date: 2002/05/13
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License

View file

@ -1,13 +1,13 @@
%{
/*
qc-parse.y
qp-parse.y
parser for quakec
parser for quakepascal
Copyright (C) 2001 Bill Currie <bill@taniwha.org>
Copyright (C) 2011 Bill Currie <bill@taniwha.org>
Author: Bill Currie <bill@taniwha.org>
Date: 2001/06/12
Date: 2011/01/06
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License

View file

@ -1,12 +1,12 @@
/*
#FILENAME#
strings.c
#DESCRIPTION#
Dump progs strings.
Copyright (C) 2001 #AUTHOR#
Copyright (C) 2002 Bill Currie <bill@taniwha.org>
Author: #AUTHOR#
Date: #DATE#
Author: Bill Currie <bill@taniwha.org>
Date: 2002/05/16
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License

View file

@ -4,9 +4,11 @@
structure support
Copyright (C) 2001 Bill Currie <bill@taniwha.org>
Copyright (C) 2011 Bill Currie <bill@taniwha.org>
Author: Bill Currie <bill@taniwha.org>
Date: 2001/12/08
Date: 2011/01/17
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License

View file

@ -1,3 +1,38 @@
/*
symtab.c
Symbol table management.
Copyright (C) 2011 Bill Currie <bill@taniwha.org>
Author: Bill Currie <bill@taniwha.org>
Date: 2011/01/05
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.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to:
Free Software Foundation, Inc.
59 Temple Place - Suite 330
Boston, MA 02111-1307, USA
*/
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
static __attribute__ ((used)) const char rcsid[] =
"$Id$";
#include <stdlib.h>
#include <string.h>