mirror of
https://gitea.psi.ch/ELOG/mxml.git
synced 2026-09-09 01:23:22 +00:00
Added GPL v3 according to Debian Policy Manual, thanks to Roger Kalt
This commit is contained in:
parent
6be847204e
commit
15c5f5c676
17
mxml.c
17
mxml.c
@ -2,6 +2,7 @@
|
|||||||
|
|
||||||
Name: mxml.c
|
Name: mxml.c
|
||||||
Created by: Stefan Ritt
|
Created by: Stefan Ritt
|
||||||
|
Copyright 2000 + Stefan Ritt
|
||||||
|
|
||||||
Contents: Midas XML Library
|
Contents: Midas XML Library
|
||||||
|
|
||||||
@ -35,6 +36,22 @@
|
|||||||
functions is availabe to retrieve attributes and values from nodes
|
functions is availabe to retrieve attributes and values from nodes
|
||||||
in the tree and for manipulating nodes, like replacing, adding and
|
in the tree and for manipulating nodes, like replacing, adding and
|
||||||
deleting nodes.
|
deleting nodes.
|
||||||
|
|
||||||
|
|
||||||
|
This file is part of MIDAS XML Library.
|
||||||
|
|
||||||
|
MIDAS XML Library 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 3 of the License, or
|
||||||
|
(at your option) any later version.
|
||||||
|
|
||||||
|
MIDAS XML Library 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 MIDAS XML Library. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
\********************************************************************/
|
\********************************************************************/
|
||||||
|
|
||||||
|
|||||||
16
mxml.h
16
mxml.h
@ -2,8 +2,24 @@
|
|||||||
|
|
||||||
Name: mxml.h
|
Name: mxml.h
|
||||||
Created by: Stefan Ritt
|
Created by: Stefan Ritt
|
||||||
|
Copyright 2000 + Stefan Ritt
|
||||||
|
|
||||||
Contents: Header file for mxml.c
|
Contents: Header file for mxml.c
|
||||||
|
|
||||||
|
This file is part of MIDAS XML Library.
|
||||||
|
|
||||||
|
MIDAS XML Library 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 3 of the License, or
|
||||||
|
(at your option) any later version.
|
||||||
|
|
||||||
|
MIDAS XML Library 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 MIDAS XML Library. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
\********************************************************************/
|
\********************************************************************/
|
||||||
|
|
||||||
|
|||||||
17
strlcpy.c
17
strlcpy.c
@ -2,10 +2,27 @@
|
|||||||
|
|
||||||
Name: strlcpy.c
|
Name: strlcpy.c
|
||||||
Created by: Stefan Ritt
|
Created by: Stefan Ritt
|
||||||
|
Copyright 2000 + Stefan Ritt
|
||||||
|
|
||||||
Contents: Contains strlcpy and strlcat which are versions of
|
Contents: Contains strlcpy and strlcat which are versions of
|
||||||
strcpy and strcat, but which avoid buffer overflows
|
strcpy and strcat, but which avoid buffer overflows
|
||||||
|
|
||||||
|
|
||||||
|
This file is part of MIDAS XML Library.
|
||||||
|
|
||||||
|
MIDAS XML Library 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 3 of the License, or
|
||||||
|
(at your option) any later version.
|
||||||
|
|
||||||
|
MIDAS XML Library 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 MIDAS XML Library. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
\********************************************************************/
|
\********************************************************************/
|
||||||
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
|
|||||||
16
strlcpy.h
16
strlcpy.h
@ -2,8 +2,24 @@
|
|||||||
|
|
||||||
Name: strlcpy.h
|
Name: strlcpy.h
|
||||||
Created by: Stefan Ritt
|
Created by: Stefan Ritt
|
||||||
|
Copyright 2000 + Stefan Ritt
|
||||||
|
|
||||||
Contents: Header file for strlcpy.c
|
Contents: Header file for strlcpy.c
|
||||||
|
|
||||||
|
This file is part of MIDAS XML Library.
|
||||||
|
|
||||||
|
MIDAS XML Library 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 3 of the License, or
|
||||||
|
(at your option) any later version.
|
||||||
|
|
||||||
|
MIDAS XML Library 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 MIDAS XML Library. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
\********************************************************************/
|
\********************************************************************/
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user