Adopt standard GPL header.

This commit is contained in:
Marcio T 2022-03-08 06:57:14 -07:00
parent b6fa1cad7a
commit 4793ffc0d8
2 changed files with 32 additions and 26 deletions

View File

@ -1,16 +1,19 @@
/************************************************************ /****************************************************************************
* Common Libraries (c) 1994 Marcio Teixeira *
pstring.c * *
* This program is free software: you can redistribute it and/or modify *
AUTHOR: Marcio Luis Teixeira * it under the terms of the GNU General Public License as published by *
CREATED: 9/17/94 * the Free Software Foundation, either version 3 of the License, or *
* (at your option) any later version. *
LAST REVISION: 11/25/21 * *
* This program is distributed in the hope that it will be useful, *
(c) 1994-1995 by Marcio Luis Teixeira. * but WITHOUT ANY WARRANTY; without even the implied warranty of *
All rights reserved. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
*************************************************************/ * *
* To view a copy of the GNU General Public License, go to the following *
* location: <http://www.gnu.org/licenses/>. *
****************************************************************************/
#include "pstring.h" #include "pstring.h"
#include <ctype.h> #include <ctype.h>

View File

@ -1,16 +1,19 @@
/************************************************************ /****************************************************************************
* Common Libraries (c) 1994 Marcio Teixeira *
pstring.h * *
* This program is free software: you can redistribute it and/or modify *
AUTHOR: Marcio Luis Teixeira * it under the terms of the GNU General Public License as published by *
CREATED: 9/17/94 * the Free Software Foundation, either version 3 of the License, or *
* (at your option) any later version. *
LAST REVISION: 11/25/21 * *
* This program is distributed in the hope that it will be useful, *
(c) 1994-1995 by Marcio Luis Teixeira. * but WITHOUT ANY WARRANTY; without even the implied warranty of *
All rights reserved. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
*************************************************************/ * *
* To view a copy of the GNU General Public License, go to the following *
* location: <http://www.gnu.org/licenses/>. *
****************************************************************************/
short pstrlen( unsigned char *str ); short pstrlen( unsigned char *str );
void psetlen( unsigned char *str, short len ); void psetlen( unsigned char *str, short len );