- attempt to cleanup for debian compliance (proper copyright, etc)

This commit is contained in:
Mark Vejvoda
2012-10-30 06:48:12 +00:00
parent b4990de52e
commit b30909f90b
234 changed files with 2905 additions and 2303 deletions

View File

@@ -6,14 +6,16 @@
# change the variables as required (I build from my local system). Commented out # change the variables as required (I build from my local system). Commented out
# below for example are wget calls to get source and data from the official # below for example are wget calls to get source and data from the official
# sourceforge links # sourceforge links
# Originally written by Mark Vejvoda <mark_vejvoda@hotmail.com>
# Copyright (c) 2012 Mark Vejvoda under GNU GPL v3.0
# #
# Start changes here # Start changes here
# #
SOURCE_PACKAGE_VER=3.6.0.1 SOURCE_PACKAGE_VER=3.7.0.1
DATA_PACKAGE_VER=$SOURCE_PACKAGE_VER DATA_PACKAGE_VER=$SOURCE_PACKAGE_VER
SOURCE_PACKAGE_RPM_VER=3.6.0 SOURCE_PACKAGE_RPM_VER=3.7.0
DATA_PACKAGE_RPM_VER=$SOURCE_PACKAGE_RPM_VER DATA_PACKAGE_RPM_VER=$SOURCE_PACKAGE_RPM_VER
SOURCE_COPY_CMD="cp /media/dlinknas/games/MegaGlest/megaglest-source-$SOURCE_PACKAGE_VER.tar.xz ./" SOURCE_COPY_CMD="cp /media/dlinknas/games/MegaGlest/megaglest-source-$SOURCE_PACKAGE_VER.tar.xz ./"
@@ -78,6 +80,6 @@ sudo cp megaglest-data-$DATA_PACKAGE_RPM_VER.tar.bz2 /home/makerpm/rpmbuild/SOUR
# now build the binary and data rpms # now build the binary and data rpms
echo "building rpms..." echo "building rpms..."
su - makerpm -c "rpmdev-setuptree; cd rpmbuild/; tar xvf ../megaglest-rpm-meta.tar.bz2; cd SPECS/; rpmbuild -ba megaglest.spec; cd ../; cp RPMS/x86/*.rpm /media/dlinknas/games/MegaGlest/; $SOURCE_PUBLISH_CMD; mv SOURCES/megaglest-data-3.6.0.tar.bz2 ./; rm -f SOURCES/*; mv megaglest-data-3.6.0.tar.bz2 SOURCES/; rm -f SPECS/*; mv megaglest-data.spec SPECS/; cd SPECS/; rpmbuild -ba megaglest-data.spec; cd ../; $DATA_PUBLISH_CMD; rm -f SOURCES/*; rm -f SPECS/*;" su - makerpm -c "rpmdev-setuptree; cd rpmbuild/; tar xvf ../megaglest-rpm-meta.tar.bz2; cd SPECS/; rpmbuild -ba megaglest.spec; cd ../; cp RPMS/x86/*.rpm /media/dlinknas/games/MegaGlest/; $SOURCE_PUBLISH_CMD; mv SOURCES/megaglest-data-$SOURCE_PACKAGE_RPM_VER.tar.bz2 ./; rm -f SOURCES/*; mv megaglest-data-$SOURCE_PACKAGE_RPM_VER.tar.bz2 SOURCES/; rm -f SPECS/*; mv megaglest-data.spec SPECS/; cd SPECS/; rpmbuild -ba megaglest-data.spec; cd ../; $DATA_PUBLISH_CMD; rm -f SOURCES/*; rm -f SPECS/*;"
echo "DONE building rpms" echo "DONE building rpms"

View File

@@ -1,4 +1,8 @@
#!/bin/sh #!/bin/bash
# Use this script to gather MegaGlest performance stats
# ----------------------------------------------------------------------------
# Written by Mark Vejvoda <mark_vejvoda@hotmail.com>
# Copyright (c) 2012 Mark Vejvoda under GNU GPL v3.0+
echo 'Recording performnce stats...' echo 'Recording performnce stats...'

View File

@@ -4,6 +4,29 @@
* Please see the file LICENSE.txt in the source's root directory. * Please see the file LICENSE.txt in the source's root directory.
* *
* This file written by Steffen Pankratz. * This file written by Steffen Pankratz.
*
Copyright (c) 2006-2010 Ryan C. Gordon and others.
This software is provided 'as-is', without any express or implied warranty.
In no event will the authors be held liable for any damages arising from
the use of this software.
Permission is granted to anyone to use this software for any purpose,
including commercial applications, and to alter it and redistribute it
freely, subject to the following restrictions:
1. The origin of this software must not be misrepresented; you must not
claim that you wrote the original software. If you use this software in a
product, an acknowledgment in the product documentation would be
appreciated but is not required.
2. Altered source versions must be plainly marked as such, and must not be
misrepresented as being the original software.
3. This notice may not be removed or altered from any source distribution.
Ryan C. Gordon <icculus@icculus.org>
*
*/ */
#include "fileio.h" #include "fileio.h"

View File

@@ -4,6 +4,29 @@
* Please see the file LICENSE.txt in the source's root directory. * Please see the file LICENSE.txt in the source's root directory.
* *
* This file written by Steffen Pankratz. * This file written by Steffen Pankratz.
*
Copyright (c) 2006-2010 Ryan C. Gordon and others.
This software is provided 'as-is', without any express or implied warranty.
In no event will the authors be held liable for any damages arising from
the use of this software.
Permission is granted to anyone to use this software for any purpose,
including commercial applications, and to alter it and redistribute it
freely, subject to the following restrictions:
1. The origin of this software must not be misrepresented; you must not
claim that you wrote the original software. If you use this software in a
product, an acknowledgment in the product documentation would be
appreciated but is not required.
2. Altered source versions must be plainly marked as such, and must not be
misrepresented as being the original software.
3. This notice may not be removed or altered from any source distribution.
Ryan C. Gordon <icculus@icculus.org>
*
*/ */
#include "fileio.h" #include "fileio.h"

View File

@@ -4,6 +4,29 @@
* Please see the file LICENSE.txt in the source's root directory. * Please see the file LICENSE.txt in the source's root directory.
* *
* This file written by Ryan C. Gordon. * This file written by Ryan C. Gordon.
*
Copyright (c) 2006-2010 Ryan C. Gordon and others.
This software is provided 'as-is', without any express or implied warranty.
In no event will the authors be held liable for any damages arising from
the use of this software.
Permission is granted to anyone to use this software for any purpose,
including commercial applications, and to alter it and redistribute it
freely, subject to the following restrictions:
1. The origin of this software must not be misrepresented; you must not
claim that you wrote the original software. If you use this software in a
product, an acknowledgment in the product documentation would be
appreciated but is not required.
2. Altered source versions must be plainly marked as such, and must not be
misrepresented as being the original software.
3. This notice may not be removed or altered from any source distribution.
Ryan C. Gordon <icculus@icculus.org>
*
*/ */
// Specs for the tar format can be found here... // Specs for the tar format can be found here...

View File

@@ -4,6 +4,29 @@
* Please see the file LICENSE.txt in the source's root directory. * Please see the file LICENSE.txt in the source's root directory.
* *
* This file written by Ryan C. Gordon. * This file written by Ryan C. Gordon.
*
Copyright (c) 2006-2010 Ryan C. Gordon and others.
This software is provided 'as-is', without any express or implied warranty.
In no event will the authors be held liable for any damages arising from
the use of this software.
Permission is granted to anyone to use this software for any purpose,
including commercial applications, and to alter it and redistribute it
freely, subject to the following restrictions:
1. The origin of this software must not be misrepresented; you must not
claim that you wrote the original software. If you use this software in a
product, an acknowledgment in the product documentation would be
appreciated but is not required.
2. Altered source versions must be plainly marked as such, and must not be
misrepresented as being the original software.
3. This notice may not be removed or altered from any source distribution.
Ryan C. Gordon <icculus@icculus.org>
*
*/ */
#include "fileio.h" #include "fileio.h"

View File

@@ -4,6 +4,29 @@
* Please see the file LICENSE.txt in the source's root directory. * Please see the file LICENSE.txt in the source's root directory.
* *
* This file written by Ryan C. Gordon. * This file written by Ryan C. Gordon.
Copyright (c) 2006-2010 Ryan C. Gordon and others.
This software is provided 'as-is', without any express or implied warranty.
In no event will the authors be held liable for any damages arising from
the use of this software.
Permission is granted to anyone to use this software for any purpose,
including commercial applications, and to alter it and redistribute it
freely, subject to the following restrictions:
1. The origin of this software must not be misrepresented; you must not
claim that you wrote the original software. If you use this software in a
product, an acknowledgment in the product documentation would be
appreciated but is not required.
2. Altered source versions must be plainly marked as such, and must not be
misrepresented as being the original software.
3. This notice may not be removed or altered from any source distribution.
Ryan C. Gordon <icculus@icculus.org>
*/ */
#include "fileio.h" #include "fileio.h"

View File

@@ -4,6 +4,29 @@
* Please see the file LICENSE.txt in the source's root directory. * Please see the file LICENSE.txt in the source's root directory.
* *
* This file written by Ryan C. Gordon. * This file written by Ryan C. Gordon.
*
Copyright (c) 2006-2010 Ryan C. Gordon and others.
This software is provided 'as-is', without any express or implied warranty.
In no event will the authors be held liable for any damages arising from
the use of this software.
Permission is granted to anyone to use this software for any purpose,
including commercial applications, and to alter it and redistribute it
freely, subject to the following restrictions:
1. The origin of this software must not be misrepresented; you must not
claim that you wrote the original software. If you use this software in a
product, an acknowledgment in the product documentation would be
appreciated but is not required.
2. Altered source versions must be plainly marked as such, and must not be
misrepresented as being the original software.
3. This notice may not be removed or altered from any source distribution.
Ryan C. Gordon <icculus@icculus.org>
*
*/ */
/* /*

View File

@@ -4,6 +4,29 @@
* Please see the file LICENSE.txt in the source's root directory. * Please see the file LICENSE.txt in the source's root directory.
* *
* This file written by Ryan C. Gordon. * This file written by Ryan C. Gordon.
*
Copyright (c) 2006-2010 Ryan C. Gordon and others.
This software is provided 'as-is', without any express or implied warranty.
In no event will the authors be held liable for any damages arising from
the use of this software.
Permission is granted to anyone to use this software for any purpose,
including commercial applications, and to alter it and redistribute it
freely, subject to the following restrictions:
1. The origin of this software must not be misrepresented; you must not
claim that you wrote the original software. If you use this software in a
product, an acknowledgment in the product documentation would be
appreciated but is not required.
2. Altered source versions must be plainly marked as such, and must not be
misrepresented as being the original software.
3. This notice may not be removed or altered from any source distribution.
Ryan C. Gordon <icculus@icculus.org>
*/ */
#include "universal.h" #include "universal.h"

View File

@@ -4,6 +4,29 @@
* Please see the file LICENSE.txt in the source's root directory. * Please see the file LICENSE.txt in the source's root directory.
* *
* This file written by Ryan C. Gordon. * This file written by Ryan C. Gordon.
*
Copyright (c) 2006-2010 Ryan C. Gordon and others.
This software is provided 'as-is', without any express or implied warranty.
In no event will the authors be held liable for any damages arising from
the use of this software.
Permission is granted to anyone to use this software for any purpose,
including commercial applications, and to alter it and redistribute it
freely, subject to the following restrictions:
1. The origin of this software must not be misrepresented; you must not
claim that you wrote the original software. If you use this software in a
product, an acknowledgment in the product documentation would be
appreciated but is not required.
2. Altered source versions must be plainly marked as such, and must not be
misrepresented as being the original software.
3. This notice may not be removed or altered from any source distribution.
Ryan C. Gordon <icculus@icculus.org>
*
*/ */
#include "universal.h" #include "universal.h"

View File

@@ -4,6 +4,29 @@
* Please see the file LICENSE.txt in the source's root directory. * Please see the file LICENSE.txt in the source's root directory.
* *
* This file written by Ryan C. Gordon. * This file written by Ryan C. Gordon.
*
Copyright (c) 2006-2010 Ryan C. Gordon and others.
This software is provided 'as-is', without any express or implied warranty.
In no event will the authors be held liable for any damages arising from
the use of this software.
Permission is granted to anyone to use this software for any purpose,
including commercial applications, and to alter it and redistribute it
freely, subject to the following restrictions:
1. The origin of this software must not be misrepresented; you must not
claim that you wrote the original software. If you use this software in a
product, an acknowledgment in the product documentation would be
appreciated but is not required.
2. Altered source versions must be plainly marked as such, and must not be
misrepresented as being the original software.
3. This notice may not be removed or altered from any source distribution.
Ryan C. Gordon <icculus@icculus.org>
*
*/ */
#include "fileio.h" #include "fileio.h"

View File

@@ -4,6 +4,29 @@
* Please see the file LICENSE.txt in the source's root directory. * Please see the file LICENSE.txt in the source's root directory.
* *
* This file written by Ryan C. Gordon. * This file written by Ryan C. Gordon.
*
Copyright (c) 2006-2010 Ryan C. Gordon and others.
This software is provided 'as-is', without any express or implied warranty.
In no event will the authors be held liable for any damages arising from
the use of this software.
Permission is granted to anyone to use this software for any purpose,
including commercial applications, and to alter it and redistribute it
freely, subject to the following restrictions:
1. The origin of this software must not be misrepresented; you must not
claim that you wrote the original software. If you use this software in a
product, an acknowledgment in the product documentation would be
appreciated but is not required.
2. Altered source versions must be plainly marked as such, and must not be
misrepresented as being the original software.
3. This notice may not be removed or altered from any source distribution.
Ryan C. Gordon <icculus@icculus.org>
*
*/ */
#ifndef _INCL_FILEIO_H_ #ifndef _INCL_FILEIO_H_

View File

@@ -4,6 +4,29 @@
* Please see the file LICENSE.txt in the source's root directory. * Please see the file LICENSE.txt in the source's root directory.
* *
* This file written by Ryan C. Gordon. * This file written by Ryan C. Gordon.
*
Copyright (c) 2006-2010 Ryan C. Gordon and others.
This software is provided 'as-is', without any express or implied warranty.
In no event will the authors be held liable for any damages arising from
the use of this software.
Permission is granted to anyone to use this software for any purpose,
including commercial applications, and to alter it and redistribute it
freely, subject to the following restrictions:
1. The origin of this software must not be misrepresented; you must not
claim that you wrote the original software. If you use this software in a
product, an acknowledgment in the product documentation would be
appreciated but is not required.
2. Altered source versions must be plainly marked as such, and must not be
misrepresented as being the original software.
3. This notice may not be removed or altered from any source distribution.
Ryan C. Gordon <icculus@icculus.org>
*
*/ */
#include "gui.h" #include "gui.h"

View File

@@ -4,6 +4,29 @@
* Please see the file LICENSE.txt in the source's root directory. * Please see the file LICENSE.txt in the source's root directory.
* *
* This file written by Ryan C. Gordon. * This file written by Ryan C. Gordon.
*
Copyright (c) 2006-2010 Ryan C. Gordon and others.
This software is provided 'as-is', without any express or implied warranty.
In no event will the authors be held liable for any damages arising from
the use of this software.
Permission is granted to anyone to use this software for any purpose,
including commercial applications, and to alter it and redistribute it
freely, subject to the following restrictions:
1. The origin of this software must not be misrepresented; you must not
claim that you wrote the original software. If you use this software in a
product, an acknowledgment in the product documentation would be
appreciated but is not required.
2. Altered source versions must be plainly marked as such, and must not be
misrepresented as being the original software.
3. This notice may not be removed or altered from any source distribution.
Ryan C. Gordon <icculus@icculus.org>
*
*/ */
#ifndef _INCL_GUI_H_ #ifndef _INCL_GUI_H_

View File

@@ -4,6 +4,28 @@
* Please see the file LICENSE.txt in the source's root directory. * Please see the file LICENSE.txt in the source's root directory.
* *
* This file written by Ryan C. Gordon. * This file written by Ryan C. Gordon.
Copyright (c) 2006-2010 Ryan C. Gordon and others.
This software is provided 'as-is', without any express or implied warranty.
In no event will the authors be held liable for any damages arising from
the use of this software.
Permission is granted to anyone to use this software for any purpose,
including commercial applications, and to alter it and redistribute it
freely, subject to the following restrictions:
1. The origin of this software must not be misrepresented; you must not
claim that you wrote the original software. If you use this software in a
product, an acknowledgment in the product documentation would be
appreciated but is not required.
2. Altered source versions must be plainly marked as such, and must not be
misrepresented as being the original software.
3. This notice may not be removed or altered from any source distribution.
Ryan C. Gordon <icculus@icculus.org>
*/ */
#if !SUPPORT_GUI_COCOA #if !SUPPORT_GUI_COCOA

View File

@@ -4,6 +4,29 @@
* Please see the file LICENSE.txt in the source's root directory. * Please see the file LICENSE.txt in the source's root directory.
* *
* This file written by Ryan C. Gordon. * This file written by Ryan C. Gordon.
*
Copyright (c) 2006-2010 Ryan C. Gordon and others.
This software is provided 'as-is', without any express or implied warranty.
In no event will the authors be held liable for any damages arising from
the use of this software.
Permission is granted to anyone to use this software for any purpose,
including commercial applications, and to alter it and redistribute it
freely, subject to the following restrictions:
1. The origin of this software must not be misrepresented; you must not
claim that you wrote the original software. If you use this software in a
product, an acknowledgment in the product documentation would be
appreciated but is not required.
2. Altered source versions must be plainly marked as such, and must not be
misrepresented as being the original software.
3. This notice may not be removed or altered from any source distribution.
Ryan C. Gordon <icculus@icculus.org>
*
*/ */
// Not only does GTK+ 2.x _look_ better than 1.x, it offers a lot of basic // Not only does GTK+ 2.x _look_ better than 1.x, it offers a lot of basic

View File

@@ -4,6 +4,29 @@
* Please see the file LICENSE.txt in the source's root directory. * Please see the file LICENSE.txt in the source's root directory.
* *
* This file written by Ryan C. Gordon. * This file written by Ryan C. Gordon.
*
Copyright (c) 2006-2010 Ryan C. Gordon and others.
This software is provided 'as-is', without any express or implied warranty.
In no event will the authors be held liable for any damages arising from
the use of this software.
Permission is granted to anyone to use this software for any purpose,
including commercial applications, and to alter it and redistribute it
freely, subject to the following restrictions:
1. The origin of this software must not be misrepresented; you must not
claim that you wrote the original software. If you use this software in a
product, an acknowledgment in the product documentation would be
appreciated but is not required.
2. Altered source versions must be plainly marked as such, and must not be
misrepresented as being the original software.
3. This notice may not be removed or altered from any source distribution.
Ryan C. Gordon <icculus@icculus.org>
*
*/ */
#if !SUPPORT_GUI_NCURSES #if !SUPPORT_GUI_NCURSES

View File

@@ -4,6 +4,29 @@
* Please see the file LICENSE.txt in the source's root directory. * Please see the file LICENSE.txt in the source's root directory.
* *
* This file written by Ryan C. Gordon. * This file written by Ryan C. Gordon.
*
Copyright (c) 2006-2010 Ryan C. Gordon and others.
This software is provided 'as-is', without any express or implied warranty.
In no event will the authors be held liable for any damages arising from
the use of this software.
Permission is granted to anyone to use this software for any purpose,
including commercial applications, and to alter it and redistribute it
freely, subject to the following restrictions:
1. The origin of this software must not be misrepresented; you must not
claim that you wrote the original software. If you use this software in a
product, an acknowledgment in the product documentation would be
appreciated but is not required.
2. Altered source versions must be plainly marked as such, and must not be
misrepresented as being the original software.
3. This notice may not be removed or altered from any source distribution.
Ryan C. Gordon <icculus@icculus.org>
*/ */
#if !SUPPORT_GUI_STDIO #if !SUPPORT_GUI_STDIO

View File

@@ -4,6 +4,29 @@
* Please see the file LICENSE.txt in the source's root directory. * Please see the file LICENSE.txt in the source's root directory.
* *
* This file written by Ryan C. Gordon. * This file written by Ryan C. Gordon.
*
Copyright (c) 2006-2010 Ryan C. Gordon and others.
This software is provided 'as-is', without any express or implied warranty.
In no event will the authors be held liable for any damages arising from
the use of this software.
Permission is granted to anyone to use this software for any purpose,
including commercial applications, and to alter it and redistribute it
freely, subject to the following restrictions:
1. The origin of this software must not be misrepresented; you must not
claim that you wrote the original software. If you use this software in a
product, an acknowledgment in the product documentation would be
appreciated but is not required.
2. Altered source versions must be plainly marked as such, and must not be
misrepresented as being the original software.
3. This notice may not be removed or altered from any source distribution.
Ryan C. Gordon <icculus@icculus.org>
*
*/ */
#if !SUPPORT_GUI_WWW #if !SUPPORT_GUI_WWW

View File

@@ -1,3 +1,27 @@
/*
Copyright (c) 2006-2010 Ryan C. Gordon and others.
This software is provided 'as-is', without any express or implied warranty.
In no event will the authors be held liable for any damages arising from
the use of this software.
Permission is granted to anyone to use this software for any purpose,
including commercial applications, and to alter it and redistribute it
freely, subject to the following restrictions:
1. The origin of this software must not be misrepresented; you must not
claim that you wrote the original software. If you use this software in a
product, an acknowledgment in the product documentation would be
appreciated but is not required.
2. Altered source versions must be plainly marked as such, and must not be
misrepresented as being the original software.
3. This notice may not be removed or altered from any source distribution.
Ryan C. Gordon <icculus@icculus.org>
*/
static struct fetcherr _ftp_errlist[] = { static struct fetcherr _ftp_errlist[] = {
{ 110, FETCH_OK, "Restart marker reply" }, { 110, FETCH_OK, "Restart marker reply" },
{ 120, FETCH_TEMP, "Service ready in a few minutes" }, { 120, FETCH_TEMP, "Service ready in a few minutes" },

View File

@@ -1,3 +1,27 @@
/*
Copyright (c) 2006-2010 Ryan C. Gordon and others.
This software is provided 'as-is', without any express or implied warranty.
In no event will the authors be held liable for any damages arising from
the use of this software.
Permission is granted to anyone to use this software for any purpose,
including commercial applications, and to alter it and redistribute it
freely, subject to the following restrictions:
1. The origin of this software must not be misrepresented; you must not
claim that you wrote the original software. If you use this software in a
product, an acknowledgment in the product documentation would be
appreciated but is not required.
2. Altered source versions must be plainly marked as such, and must not be
misrepresented as being the original software.
3. This notice may not be removed or altered from any source distribution.
Ryan C. Gordon <icculus@icculus.org>
*/
static struct fetcherr _http_errlist[] = { static struct fetcherr _http_errlist[] = {
{ 100, FETCH_OK, "Continue" }, { 100, FETCH_OK, "Continue" },
{ 101, FETCH_OK, "Switching Protocols" }, { 101, FETCH_OK, "Switching Protocols" },

View File

@@ -1,3 +1,27 @@
/*
Copyright (c) 2006-2010 Ryan C. Gordon and others.
This software is provided 'as-is', without any express or implied warranty.
In no event will the authors be held liable for any damages arising from
the use of this software.
Permission is granted to anyone to use this software for any purpose,
including commercial applications, and to alter it and redistribute it
freely, subject to the following restrictions:
1. The origin of this software must not be misrepresented; you must not
claim that you wrote the original software. If you use this software in a
product, an acknowledgment in the product documentation would be
appreciated but is not required.
2. Altered source versions must be plainly marked as such, and must not be
misrepresented as being the original software.
3. This notice may not be removed or altered from any source distribution.
Ryan C. Gordon <icculus@icculus.org>
*/
#ifndef _INCL_MOJOSETUP_LIBFETCH_H_ #ifndef _INCL_MOJOSETUP_LIBFETCH_H_
#define _INCL_MOJOSETUP_LIBFETCH_H_ #define _INCL_MOJOSETUP_LIBFETCH_H_

View File

@@ -1,25 +0,0 @@
#!/bin/sh
echo "static struct fetcherr _http_errlist[] = {" > httperr.h
cat http.errors \
| grep -v ^# \
| sort \
| while read NUM CAT STRING; do \
echo " { ${NUM}, FETCH_${CAT}, \"${STRING}\" },"; \
done >> httperr.h
echo " { -1, FETCH_UNKNOWN, \"Unknown HTTP error\" }" >> httperr.h
echo "};" >> httperr.h
echo >> httpderr.h
echo "static struct fetcherr _ftp_errlist[] = {" > ftperr.h
cat ftp.errors \
| grep -v ^# \
| sort \
| while read NUM CAT STRING; do \
echo " { ${NUM}, FETCH_${CAT}, \"${STRING}\" },"; \
done >> ftperr.h
echo " { -1, FETCH_UNKNOWN, \"Unknown FTP error\" }" >> ftperr.h
echo "};" >> ftperr.h
echo >> ftperr.h

View File

@@ -21,6 +21,11 @@
*/ */
/* /*
//
// Copyright 2012 Lasse Collin
// Public Domain
//
* Author: Lasse Collin * Author: Lasse Collin
* *
* This file has been put into the public domain. * This file has been put into the public domain.

View File

@@ -3,6 +3,11 @@
* \brief Data types and functions used in many places in liblzma API * \brief Data types and functions used in many places in liblzma API
*/ */
//
// Copyright 2012 Lasse Collin and Igor Pavlov
// Public Domain
//
/* /*
* Author: Lasse Collin * Author: Lasse Collin
* *

View File

@@ -3,6 +3,11 @@
* \brief Branch/Call/Jump conversion filters * \brief Branch/Call/Jump conversion filters
*/ */
//
// Copyright 2012 Lasse Collin and Igor Pavlov
// Public Domain
//
/* /*
* Author: Lasse Collin * Author: Lasse Collin
* *

View File

@@ -3,6 +3,11 @@
* \brief .xz Block handling * \brief .xz Block handling
*/ */
//
// Copyright 2012 Lasse Collin and Igor Pavlov
// Public Domain
//
/* /*
* Author: Lasse Collin * Author: Lasse Collin
* *

View File

@@ -3,6 +3,11 @@
* \brief Integrity checks * \brief Integrity checks
*/ */
//
// Copyright 2012 Lasse Collin and Igor Pavlov
// Public Domain
//
/* /*
* Author: Lasse Collin * Author: Lasse Collin
* *

View File

@@ -3,6 +3,11 @@
* \brief File formats * \brief File formats
*/ */
//
// Copyright 2012 Lasse Collin and Igor Pavlov
// Public Domain
//
/* /*
* Author: Lasse Collin * Author: Lasse Collin
* *

View File

@@ -3,6 +3,11 @@
* \brief Delta filter * \brief Delta filter
*/ */
//
// Copyright 2012 Lasse Collin and Igor Pavlov
// Public Domain
//
/* /*
* Author: Lasse Collin * Author: Lasse Collin
* *

View File

@@ -3,6 +3,11 @@
* \brief Common filter related types and functions * \brief Common filter related types and functions
*/ */
//
// Copyright 2012 Lasse Collin and Igor Pavlov
// Public Domain
//
/* /*
* Author: Lasse Collin * Author: Lasse Collin
* *

View File

@@ -20,6 +20,11 @@
* the syscalls if they return EINTR. * the syscalls if they return EINTR.
*/ */
//
// Copyright 2012 Lasse Collin and Igor Pavlov
// Public Domain
//
/* /*
* Author: Lasse Collin * Author: Lasse Collin
* *

View File

@@ -3,6 +3,11 @@
* \brief Handling of .xz Index and related information * \brief Handling of .xz Index and related information
*/ */
//
// Copyright 2012 Lasse Collin and Igor Pavlov
// Public Domain
//
/* /*
* Author: Lasse Collin * Author: Lasse Collin
* *

View File

@@ -6,6 +6,11 @@
* Index of arbitrary size. * Index of arbitrary size.
*/ */
//
// Copyright 2012 Lasse Collin and Igor Pavlov
// Public Domain
//
/* /*
* Author: Lasse Collin * Author: Lasse Collin
* *

View File

@@ -3,6 +3,11 @@
* \brief LZMA1 and LZMA2 filters * \brief LZMA1 and LZMA2 filters
*/ */
//
// Copyright 2012 Lasse Collin and Igor Pavlov
// Public Domain
//
/* /*
* Author: Lasse Collin * Author: Lasse Collin
* *

View File

@@ -3,6 +3,11 @@
* \brief .xz Stream Header and Stream Footer encoder and decoder * \brief .xz Stream Header and Stream Footer encoder and decoder
*/ */
//
// Copyright 2012 Lasse Collin and Igor Pavlov
// Public Domain
//
/* /*
* Author: Lasse Collin * Author: Lasse Collin
* *

View File

@@ -3,6 +3,11 @@
* \brief Version number * \brief Version number
*/ */
//
// Copyright 2012 Lasse Collin and Igor Pavlov
// Public Domain
//
/* /*
* Author: Lasse Collin * Author: Lasse Collin
* *

View File

@@ -15,6 +15,11 @@
*/ */
/* /*
//
// Copyright 2012 Lasse Collin and Igor Pavlov
// Public Domain
//
* Author: Lasse Collin * Author: Lasse Collin
* *
* This file has been put into the public domain. * This file has been put into the public domain.

View File

@@ -3,6 +3,11 @@
/// \file check.c /// \file check.c
/// \brief Single API to access different integrity checks /// \brief Single API to access different integrity checks
// //
//
// Copyright 2012 Lasse Collin
// Public Domain
//
// Author: Lasse Collin // Author: Lasse Collin
// //
// This file has been put into the public domain. // This file has been put into the public domain.

View File

@@ -3,6 +3,11 @@
/// \file check.h /// \file check.h
/// \brief Internal API to different integrity check functions /// \brief Internal API to different integrity check functions
// //
//
// Copyright 2012 Lasse Collin
// Public Domain
//
// Author: Lasse Collin // Author: Lasse Collin
// //
// This file has been put into the public domain. // This file has been put into the public domain.

View File

@@ -3,6 +3,11 @@
/// \file crc_macros.h /// \file crc_macros.h
/// \brief Some endian-dependent macros for CRC32 and CRC64 /// \brief Some endian-dependent macros for CRC32 and CRC64
// //
//
// Copyright 2012 Lasse Collin
// Public Domain
//
// Author: Lasse Collin // Author: Lasse Collin
// //
// This file has been put into the public domain. // This file has been put into the public domain.

View File

@@ -3,6 +3,11 @@
/// \file alone_decoder.c /// \file alone_decoder.c
/// \brief Decoder for LZMA_Alone files /// \brief Decoder for LZMA_Alone files
// //
//
// Copyright 2012 Lasse Collin
// Public Domain
//
// Author: Lasse Collin // Author: Lasse Collin
// //
// This file has been put into the public domain. // This file has been put into the public domain.

View File

@@ -3,6 +3,11 @@
/// \file alone_decoder.h /// \file alone_decoder.h
/// \brief Decoder for LZMA_Alone files /// \brief Decoder for LZMA_Alone files
// //
//
// Copyright 2012 Lasse Collin
// Public Domain
//
// Author: Lasse Collin // Author: Lasse Collin
// //
// This file has been put into the public domain. // This file has been put into the public domain.

View File

@@ -3,6 +3,11 @@
/// \file block_decoder.c /// \file block_decoder.c
/// \brief Decodes .xz Blocks /// \brief Decodes .xz Blocks
// //
//
// Copyright 2012 Lasse Collin
// Public Domain
//
// Author: Lasse Collin // Author: Lasse Collin
// //
// This file has been put into the public domain. // This file has been put into the public domain.

View File

@@ -3,6 +3,11 @@
/// \file block_decoder.h /// \file block_decoder.h
/// \brief Decodes .xz Blocks /// \brief Decodes .xz Blocks
// //
//
// Copyright 2012 Lasse Collin
// Public Domain
//
// Author: Lasse Collin // Author: Lasse Collin
// //
// This file has been put into the public domain. // This file has been put into the public domain.

View File

@@ -3,6 +3,11 @@
/// \file block_header_decoder.c /// \file block_header_decoder.c
/// \brief Decodes Block Header from .xz files /// \brief Decodes Block Header from .xz files
// //
//
// Copyright 2012 Lasse Collin
// Public Domain
//
// Author: Lasse Collin // Author: Lasse Collin
// //
// This file has been put into the public domain. // This file has been put into the public domain.

View File

@@ -3,6 +3,11 @@
/// \file block_header.c /// \file block_header.c
/// \brief Utility functions to handle lzma_block /// \brief Utility functions to handle lzma_block
// //
//
// Copyright 2012 Lasse Collin
// Public Domain
//
// Author: Lasse Collin // Author: Lasse Collin
// //
// This file has been put into the public domain. // This file has been put into the public domain.

View File

@@ -3,6 +3,11 @@
/// \file common.h /// \file common.h
/// \brief Common functions needed in many places in liblzma /// \brief Common functions needed in many places in liblzma
// //
//
// Copyright 2012 Lasse Collin
// Public Domain
//
// Author: Lasse Collin // Author: Lasse Collin
// //
// This file has been put into the public domain. // This file has been put into the public domain.

View File

@@ -3,6 +3,11 @@
/// \file common.h /// \file common.h
/// \brief Definitions common to the whole liblzma library /// \brief Definitions common to the whole liblzma library
// //
//
// Copyright 2012 Lasse Collin
// Public Domain
//
// Author: Lasse Collin // Author: Lasse Collin
// //
// This file has been put into the public domain. // This file has been put into the public domain.

View File

@@ -3,6 +3,11 @@
/// \file easy_decoder_memusage.c /// \file easy_decoder_memusage.c
/// \brief Decoder memory usage calculation to match easy encoder presets /// \brief Decoder memory usage calculation to match easy encoder presets
// //
//
// Copyright 2012 Lasse Collin
// Public Domain
//
// Author: Lasse Collin // Author: Lasse Collin
// //
// This file has been put into the public domain. // This file has been put into the public domain.

View File

@@ -3,6 +3,11 @@
/// \file easy_preset.c /// \file easy_preset.c
/// \brief Preset handling for easy encoder and decoder /// \brief Preset handling for easy encoder and decoder
// //
//
// Copyright 2012 Lasse Collin
// Public Domain
//
// Author: Lasse Collin // Author: Lasse Collin
// //
// This file has been put into the public domain. // This file has been put into the public domain.

View File

@@ -3,6 +3,11 @@
/// \file easy_preset.h /// \file easy_preset.h
/// \brief Preset handling for easy encoder and decoder /// \brief Preset handling for easy encoder and decoder
// //
//
// Copyright 2012 Lasse Collin
// Public Domain
//
// Author: Lasse Collin // Author: Lasse Collin
// //
// This file has been put into the public domain. // This file has been put into the public domain.

View File

@@ -3,6 +3,11 @@
/// \file filter_buffer_decoder.c /// \file filter_buffer_decoder.c
/// \brief Single-call raw decoding /// \brief Single-call raw decoding
// //
//
// Copyright 2012 Lasse Collin
// Public Domain
//
// Author: Lasse Collin // Author: Lasse Collin
// //
// This file has been put into the public domain. // This file has been put into the public domain.

View File

@@ -3,6 +3,11 @@
/// \file filter_common.c /// \file filter_common.c
/// \brief Filter-specific stuff common for both encoder and decoder /// \brief Filter-specific stuff common for both encoder and decoder
// //
//
// Copyright 2012 Lasse Collin
// Public Domain
//
// Author: Lasse Collin // Author: Lasse Collin
// //
// This file has been put into the public domain. // This file has been put into the public domain.

View File

@@ -3,6 +3,11 @@
/// \file filter_common.c /// \file filter_common.c
/// \brief Filter-specific stuff common for both encoder and decoder /// \brief Filter-specific stuff common for both encoder and decoder
// //
//
// Copyright 2012 Lasse Collin
// Public Domain
//
// Author: Lasse Collin // Author: Lasse Collin
// //
// This file has been put into the public domain. // This file has been put into the public domain.

View File

@@ -3,6 +3,11 @@
/// \file filter_decoder.c /// \file filter_decoder.c
/// \brief Filter ID mapping to filter-specific functions /// \brief Filter ID mapping to filter-specific functions
// //
//
// Copyright 2012 Lasse Collin
// Public Domain
//
// Author: Lasse Collin // Author: Lasse Collin
// //
// This file has been put into the public domain. // This file has been put into the public domain.

View File

@@ -3,6 +3,11 @@
/// \file filter_decoder.c /// \file filter_decoder.c
/// \brief Filter ID mapping to filter-specific functions /// \brief Filter ID mapping to filter-specific functions
// //
//
// Copyright 2012 Lasse Collin
// Public Domain
//
// Author: Lasse Collin // Author: Lasse Collin
// //
// This file has been put into the public domain. // This file has been put into the public domain.

View File

@@ -3,6 +3,11 @@
/// \file filter_flags_decoder.c /// \file filter_flags_decoder.c
/// \brief Decodes a Filter Flags field /// \brief Decodes a Filter Flags field
// //
//
// Copyright 2012 Lasse Collin
// Public Domain
//
// Author: Lasse Collin // Author: Lasse Collin
// //
// This file has been put into the public domain. // This file has been put into the public domain.

View File

@@ -3,6 +3,11 @@
/// \file index.c /// \file index.c
/// \brief Handling of .xz Indexes and some other Stream information /// \brief Handling of .xz Indexes and some other Stream information
// //
//
// Copyright 2012 Lasse Collin
// Public Domain
//
// Author: Lasse Collin // Author: Lasse Collin
// //
// This file has been put into the public domain. // This file has been put into the public domain.

View File

@@ -3,6 +3,11 @@
/// \file index.h /// \file index.h
/// \brief Handling of Index /// \brief Handling of Index
// //
//
// Copyright 2012 Lasse Collin
// Public Domain
//
// Author: Lasse Collin // Author: Lasse Collin
// //
// This file has been put into the public domain. // This file has been put into the public domain.

View File

@@ -3,6 +3,11 @@
/// \file index_decoder.c /// \file index_decoder.c
/// \brief Decodes the Index field /// \brief Decodes the Index field
// //
//
// Copyright 2012 Lasse Collin
// Public Domain
//
// Author: Lasse Collin // Author: Lasse Collin
// //
// This file has been put into the public domain. // This file has been put into the public domain.

View File

@@ -3,6 +3,11 @@
/// \file index_hash.c /// \file index_hash.c
/// \brief Validates Index by using a hash function /// \brief Validates Index by using a hash function
// //
//
// Copyright 2012 Lasse Collin
// Public Domain
//
// Author: Lasse Collin // Author: Lasse Collin
// //
// This file has been put into the public domain. // This file has been put into the public domain.

View File

@@ -3,6 +3,11 @@
/// \file mythread.h /// \file mythread.h
/// \brief Wrappers for threads /// \brief Wrappers for threads
// //
//
// Copyright 2012 Lasse Collin
// Public Domain
//
// Author: Lasse Collin // Author: Lasse Collin
// //
// This file has been put into the public domain. // This file has been put into the public domain.

View File

@@ -3,6 +3,11 @@
/// \file stream_decoder.c /// \file stream_decoder.c
/// \brief Decodes .xz Streams /// \brief Decodes .xz Streams
// //
//
// Copyright 2012 Lasse Collin
// Public Domain
//
// Author: Lasse Collin // Author: Lasse Collin
// //
// This file has been put into the public domain. // This file has been put into the public domain.

View File

@@ -3,6 +3,11 @@
/// \file stream_decoder.h /// \file stream_decoder.h
/// \brief Decodes .xz Streams /// \brief Decodes .xz Streams
// //
//
// Copyright 2012 Lasse Collin
// Public Domain
//
// Author: Lasse Collin // Author: Lasse Collin
// //
// This file has been put into the public domain. // This file has been put into the public domain.

View File

@@ -3,6 +3,11 @@
/// \file stream_flags_common.c /// \file stream_flags_common.c
/// \brief Common stuff for Stream flags coders /// \brief Common stuff for Stream flags coders
// //
//
// Copyright 2012 Lasse Collin
// Public Domain
//
// Author: Lasse Collin // Author: Lasse Collin
// //
// This file has been put into the public domain. // This file has been put into the public domain.

View File

@@ -3,6 +3,11 @@
/// \file stream_flags_common.h /// \file stream_flags_common.h
/// \brief Common stuff for Stream flags coders /// \brief Common stuff for Stream flags coders
// //
//
// Copyright 2012 Lasse Collin
// Public Domain
//
// Author: Lasse Collin // Author: Lasse Collin
// //
// This file has been put into the public domain. // This file has been put into the public domain.

View File

@@ -3,6 +3,11 @@
/// \file stream_flags_decoder.c /// \file stream_flags_decoder.c
/// \brief Decodes Stream Header and Stream Footer from .xz files /// \brief Decodes Stream Header and Stream Footer from .xz files
// //
//
// Copyright 2012 Lasse Collin
// Public Domain
//
// Author: Lasse Collin // Author: Lasse Collin
// //
// This file has been put into the public domain. // This file has been put into the public domain.

View File

@@ -6,6 +6,11 @@
/// This file is used also by the lzma command line tool, that's why this /// This file is used also by the lzma command line tool, that's why this
/// file is separate from common.h. /// file is separate from common.h.
// //
//
// Copyright 2012 Lasse Collin
// Public Domain
//
// Author: Lasse Collin // Author: Lasse Collin
// //
// This file has been put into the public domain. // This file has been put into the public domain.

View File

@@ -3,6 +3,11 @@
/// \file tuklib_common.h /// \file tuklib_common.h
/// \brief Common definitions for tuklib modules /// \brief Common definitions for tuklib modules
// //
//
// Copyright 2012 Lasse Collin
// Public Domain
//
// Author: Lasse Collin // Author: Lasse Collin
// //
// This file has been put into the public domain. // This file has been put into the public domain.

View File

@@ -5,3 +5,8 @@
# include <inttypes.h> # include <inttypes.h>
# include <limits.h> # include <limits.h>
#endif #endif
//
// Copyright 2012 Lasse Collin and Joachim Henke
// Public Domain
//

View File

@@ -30,6 +30,11 @@
/// The above bit scan operations return 0-31. If num is zero, /// The above bit scan operations return 0-31. If num is zero,
/// the result is undefined. /// the result is undefined.
// //
//
// Copyright 2012 Lasse Collin and Joachim Henke
// Public Domain
//
// Authors: Lasse Collin // Authors: Lasse Collin
// Joachim Henke // Joachim Henke
// //

View File

@@ -3,6 +3,10 @@
/// \file vli_decoder.c /// \file vli_decoder.c
/// \brief Decodes variable-length integers /// \brief Decodes variable-length integers
// //
//
// Copyright 2012 Lasse Collin
// Public Domain
//
// Author: Lasse Collin // Author: Lasse Collin
// //
// This file has been put into the public domain. // This file has been put into the public domain.

View File

@@ -3,6 +3,9 @@
/// \file vli_size.c /// \file vli_size.c
/// \brief Calculates the encoded size of a variable-length integer /// \brief Calculates the encoded size of a variable-length integer
// //
// Copyright 2012 Lasse Collin
// Public Domain
//
// Author: Lasse Collin // Author: Lasse Collin
// //
// This file has been put into the public domain. // This file has been put into the public domain.

View File

@@ -3,6 +3,11 @@
/// \file delta_common.c /// \file delta_common.c
/// \brief Common stuff for Delta encoder and decoder /// \brief Common stuff for Delta encoder and decoder
// //
//
// Copyright 2012 Lasse Collin
// Public Domain
//
// Author: Lasse Collin // Author: Lasse Collin
// //
// This file has been put into the public domain. // This file has been put into the public domain.

View File

@@ -3,6 +3,11 @@
/// \file delta_common.h /// \file delta_common.h
/// \brief Common stuff for Delta encoder and decoder /// \brief Common stuff for Delta encoder and decoder
// //
//
// Copyright 2012 Lasse Collin
// Public Domain
//
// Author: Lasse Collin // Author: Lasse Collin
// //
// This file has been put into the public domain. // This file has been put into the public domain.

View File

@@ -3,6 +3,11 @@
/// \file delta_decoder.c /// \file delta_decoder.c
/// \brief Delta filter decoder /// \brief Delta filter decoder
// //
//
// Copyright 2012 Lasse Collin
// Public Domain
//
// Author: Lasse Collin // Author: Lasse Collin
// //
// This file has been put into the public domain. // This file has been put into the public domain.

View File

@@ -3,6 +3,11 @@
/// \file delta_decoder.h /// \file delta_decoder.h
/// \brief Delta filter decoder /// \brief Delta filter decoder
// //
//
// Copyright 2012 Lasse Collin
// Public Domain
//
// Author: Lasse Collin // Author: Lasse Collin
// //
// This file has been put into the public domain. // This file has been put into the public domain.

View File

@@ -3,6 +3,11 @@
/// \file delta_private.h /// \file delta_private.h
/// \brief Private common stuff for Delta encoder and decoder /// \brief Private common stuff for Delta encoder and decoder
// //
//
// Copyright 2012 Lasse Collin
// Public Domain
//
// Author: Lasse Collin // Author: Lasse Collin
// //
// This file has been put into the public domain. // This file has been put into the public domain.

View File

@@ -3,6 +3,11 @@
/// \file lz_decoder.c /// \file lz_decoder.c
/// \brief LZ out window /// \brief LZ out window
/// ///
//
// Copyright 2012 Lasse Collin and Igor Pavlov
// Public Domain
//
// Authors: Igor Pavlov // Authors: Igor Pavlov
// Lasse Collin // Lasse Collin
// //

View File

@@ -3,6 +3,11 @@
/// \file lz_decoder.h /// \file lz_decoder.h
/// \brief LZ out window /// \brief LZ out window
/// ///
//
// Copyright 2012 Lasse Collin and Igor Pavlov
// Public Domain
//
// Authors: Igor Pavlov // Authors: Igor Pavlov
// Lasse Collin // Lasse Collin
// //

View File

@@ -2,7 +2,11 @@
// //
/// \file lzma2_decoder.c /// \file lzma2_decoder.c
/// \brief LZMA2 decoder /// \brief LZMA2 decoder
/// //
// Copyright 2012 Igor Pavlov and Lasse Collin
// Public Domain
//
// Authors: Igor Pavlov // Authors: Igor Pavlov
// Lasse Collin // Lasse Collin
// //

View File

@@ -2,7 +2,10 @@
// //
/// \file lzma2_decoder.h /// \file lzma2_decoder.h
/// \brief LZMA2 decoder /// \brief LZMA2 decoder
/// //
// Copyright 2012 Igor Pavlov and Lasse Collin
// Public Domain
//
// Authors: Igor Pavlov // Authors: Igor Pavlov
// Lasse Collin // Lasse Collin
// //

View File

@@ -3,6 +3,10 @@
/// \file lzma_common.h /// \file lzma_common.h
/// \brief Private definitions common to LZMA encoder and decoder /// \brief Private definitions common to LZMA encoder and decoder
/// ///
//
// Copyright 2012 Igor Pavlov and Lasse Collin
// Public Domain
//
// Authors: Igor Pavlov // Authors: Igor Pavlov
// Lasse Collin // Lasse Collin
// //

View File

@@ -3,6 +3,10 @@
/// \file lzma_decoder.c /// \file lzma_decoder.c
/// \brief LZMA decoder /// \brief LZMA decoder
/// ///
//
// Copyright 2012 Igor Pavlov and Lasse Collin
// Public Domain
//
// Authors: Igor Pavlov // Authors: Igor Pavlov
// Lasse Collin // Lasse Collin
// //

View File

@@ -3,6 +3,10 @@
/// \file lzma_decoder.h /// \file lzma_decoder.h
/// \brief LZMA decoder API /// \brief LZMA decoder API
/// ///
//
// Copyright 2012 Igor Pavlov and Lasse Collin
// Public Domain
//
// Authors: Igor Pavlov // Authors: Igor Pavlov
// Lasse Collin // Lasse Collin
// //

View File

@@ -3,6 +3,10 @@
/// \file lzma_encoder_presets.c /// \file lzma_encoder_presets.c
/// \brief Encoder presets /// \brief Encoder presets
// //
//
// Copyright 2012 Lasse Collin
// Public Domain
//
// Author: Lasse Collin // Author: Lasse Collin
// //
// This file has been put into the public domain. // This file has been put into the public domain.

View File

@@ -3,6 +3,11 @@
/// \file range_common.h /// \file range_common.h
/// \brief Common things for range encoder and decoder /// \brief Common things for range encoder and decoder
/// ///
//
// Copyright 2012 Lasse Collin and Igor Pavlov
// Public Domain
//
// Authors: Igor Pavlov // Authors: Igor Pavlov
// Lasse Collin // Lasse Collin
// //

View File

@@ -3,6 +3,11 @@
/// \file range_decoder.h /// \file range_decoder.h
/// \brief Range Decoder /// \brief Range Decoder
/// ///
//
// Copyright 2012 Lasse Collin and Igor Pavlov
// Public Domain
//
// Authors: Igor Pavlov // Authors: Igor Pavlov
// Lasse Collin // Lasse Collin
// //

View File

@@ -3,6 +3,11 @@
/// \file range_encoder.h /// \file range_encoder.h
/// \brief Range Encoder /// \brief Range Encoder
/// ///
//
// Copyright 2012 Lasse Collin and Igor Pavlov
// Public Domain
//
// Authors: Igor Pavlov // Authors: Igor Pavlov
// Lasse Collin // Lasse Collin
// //

View File

@@ -3,6 +3,11 @@
/// \file arm.c /// \file arm.c
/// \brief Filter for ARM binaries /// \brief Filter for ARM binaries
/// ///
//
// Copyright 2012 Lasse Collin and Igor Pavlov
// Public Domain
//
// Authors: Igor Pavlov // Authors: Igor Pavlov
// Lasse Collin // Lasse Collin
// //

View File

@@ -3,6 +3,11 @@
/// \file armthumb.c /// \file armthumb.c
/// \brief Filter for ARM-Thumb binaries /// \brief Filter for ARM-Thumb binaries
/// ///
//
// Copyright 2012 Lasse Collin and Igor Pavlov
// Public Domain
//
// Authors: Igor Pavlov // Authors: Igor Pavlov
// Lasse Collin // Lasse Collin
// //

View File

@@ -3,6 +3,11 @@
/// \file ia64.c /// \file ia64.c
/// \brief Filter for IA64 (Itanium) binaries /// \brief Filter for IA64 (Itanium) binaries
/// ///
//
// Copyright 2012 Lasse Collin and Igor Pavlov
// Public Domain
//
// Authors: Igor Pavlov // Authors: Igor Pavlov
// Lasse Collin // Lasse Collin
// //

View File

@@ -3,6 +3,11 @@
/// \file powerpc.c /// \file powerpc.c
/// \brief Filter for PowerPC (big endian) binaries /// \brief Filter for PowerPC (big endian) binaries
/// ///
//
// Copyright 2012 Lasse Collin and Igor Pavlov
// Public Domain
//
// Authors: Igor Pavlov // Authors: Igor Pavlov
// Lasse Collin // Lasse Collin
// //

View File

@@ -6,6 +6,11 @@
/// Simple filters don't change the size of the data i.e. number of bytes /// Simple filters don't change the size of the data i.e. number of bytes
/// in equals the number of bytes out. /// in equals the number of bytes out.
// //
//
// Copyright 2012 Lasse Collin
// Public Domain
//
// Author: Lasse Collin // Author: Lasse Collin
// //
// This file has been put into the public domain. // This file has been put into the public domain.

View File

@@ -3,6 +3,11 @@
/// \file simple_coder.h /// \file simple_coder.h
/// \brief Wrapper for simple filters /// \brief Wrapper for simple filters
// //
//
// Copyright 2012 Lasse Collin
// Public Domain
//
// Author: Lasse Collin // Author: Lasse Collin
// //
// This file has been put into the public domain. // This file has been put into the public domain.

View File

@@ -3,6 +3,11 @@
/// \file simple_decoder.c /// \file simple_decoder.c
/// \brief Properties decoder for simple filters /// \brief Properties decoder for simple filters
// //
//
// Copyright 2012 Lasse Collin
// Public Domain
//
// Author: Lasse Collin // Author: Lasse Collin
// //
// This file has been put into the public domain. // This file has been put into the public domain.

View File

@@ -3,6 +3,11 @@
/// \file simple_decoder.h /// \file simple_decoder.h
/// \brief Properties decoder for simple filters /// \brief Properties decoder for simple filters
// //
//
// Copyright 2012 Lasse Collin
// Public Domain
//
// Author: Lasse Collin // Author: Lasse Collin
// //
// This file has been put into the public domain. // This file has been put into the public domain.

View File

@@ -3,6 +3,11 @@
/// \file simple_private.h /// \file simple_private.h
/// \brief Private definitions for so called simple filters /// \brief Private definitions for so called simple filters
// //
//
// Copyright 2012 Lasse Collin
// Public Domain
//
// Author: Lasse Collin // Author: Lasse Collin
// //
// This file has been put into the public domain. // This file has been put into the public domain.

View File

@@ -3,6 +3,11 @@
/// \file sparc.c /// \file sparc.c
/// \brief Filter for SPARC binaries /// \brief Filter for SPARC binaries
/// ///
//
// Copyright 2012 Lasse Collin and Igor Pavlov
// Public Domain
//
// Authors: Igor Pavlov // Authors: Igor Pavlov
// Lasse Collin // Lasse Collin
// //

Some files were not shown because too many files have changed in this diff Show More