License banners workaround

This commit is contained in:
rafagafe 2018-08-29 17:53:04 +02:00
parent 65a8d22861
commit 22b6651a30
5 changed files with 131 additions and 80 deletions

View File

@ -1,21 +1,31 @@
/* /*
* Developed by Rafa Garcia <rafagarcia77@gmail.com>
* <https://github.com/rafagafe/tiny-json>
* example-01.c is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by Licensed under the MIT License <http://opensource.org/licenses/MIT>.
* the Free Software Foundation, either version 3 of the License, or SPDX-License-Identifier: MIT
* (at your option) any later version. Copyright (c) 2013-2018 Rafa Garcia <rafagarcia77@gmail.com>.
*
* example-01.c is distributed in the hope that it will be useful, Permission is hereby granted, free of charge, to any person obtaining a copy
* but WITHOUT ANY WARRANTY; without even the implied warranty of of this software and associated documentation files (the "Software"), to deal
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the in the Software without restriction, including without limitation the rights
* GNU General Public License for more details. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* You should have received a copy of the GNU General Public License furnished to do so, subject to the following conditions:
* along with example-01.c. If not, see <http://www.gnu.org/licenses/>.
* The above copyright notice and this permission notice shall be included in all
*/ copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
*/
/* /*
* In this example the JSON library is used to analyze an object that some * In this example the JSON library is used to analyze an object that some

View File

@ -1,21 +1,31 @@
/* /*
* Developed by Rafa Garcia <rafagarcia77@gmail.com>
* <https://github.com/rafagafe/tiny-json>
* example-02.c is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by Licensed under the MIT License <http://opensource.org/licenses/MIT>.
* the Free Software Foundation, either version 3 of the License, or SPDX-License-Identifier: MIT
* (at your option) any later version. Copyright (c) 2013-2018 Rafa Garcia <rafagarcia77@gmail.com>.
*
* example-02.c is distributed in the hope that it will be useful, Permission is hereby granted, free of charge, to any person obtaining a copy
* but WITHOUT ANY WARRANTY; without even the implied warranty of of this software and associated documentation files (the "Software"), to deal
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the in the Software without restriction, including without limitation the rights
* GNU General Public License for more details. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* You should have received a copy of the GNU General Public License furnished to do so, subject to the following conditions:
* along with example-02.c. If not, see <http://www.gnu.org/licenses/>.
* The above copyright notice and this permission notice shall be included in all
*/ copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
*/
/* /*
* In this example the JSON library is used to scan an object that nothing is * In this example the JSON library is used to scan an object that nothing is

43
tests.c
View File

@ -1,20 +1,31 @@
/* /*
* Developed by Rafa Garcia <rafagarcia77@gmail.com>
* <https://github.com/rafagafe/tiny-json>
* tests.c is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by Licensed under the MIT License <http://opensource.org/licenses/MIT>.
* the Free Software Foundation, either version 3 of the License, or SPDX-License-Identifier: MIT
* (at your option) any later version. Copyright (c) 2013-2018 Rafa Garcia <rafagarcia77@gmail.com>.
*
* tiny-json.h is distributed in the hope that it will be useful, Permission is hereby granted, free of charge, to any person obtaining a copy
* but WITHOUT ANY WARRANTY; without even the implied warranty of of this software and associated documentation files (the "Software"), to deal
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the in the Software without restriction, including without limitation the rights
* GNU General Public License for more details. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* You should have received a copy of the GNU General Public License furnished to do so, subject to the following conditions:
* along with tests.c. If not, see <http://www.gnu.org/licenses/>.
* The above copyright notice and this permission notice shall be included in all
*/ copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
*/
#include <stdio.h> #include <stdio.h>
#include <string.h> #include <string.h>

View File

@ -1,21 +1,31 @@
/* /*
* Developed by Rafa Garcia <rafagarcia77@gmail.com>
* <https://github.com/rafagafe/tiny-json>
* tiny-json.c is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by Licensed under the MIT License <http://opensource.org/licenses/MIT>.
* the Free Software Foundation, either version 3 of the License, or SPDX-License-Identifier: MIT
* (at your option) any later version. Copyright (c) 2013-2018 Rafa Garcia <rafagarcia77@gmail.com>.
*
* tiny-json.c is distributed in the hope that it will be useful, Permission is hereby granted, free of charge, to any person obtaining a copy
* but WITHOUT ANY WARRANTY; without even the implied warranty of of this software and associated documentation files (the "Software"), to deal
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the in the Software without restriction, including without limitation the rights
* GNU General Public License for more details. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* You should have received a copy of the GNU General Public License furnished to do so, subject to the following conditions:
* along with tiny-json.c. If not, see <http://www.gnu.org/licenses/>.
* The above copyright notice and this permission notice shall be included in all
*/ copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
*/
#include <string.h> #include <string.h>
#include "tiny-json.h" #include "tiny-json.h"

View File

@ -1,21 +1,31 @@
/* /*
* Developed by Rafa Garcia <rafagarcia77@gmail.com>
* <https://github.com/rafagafe/tiny-json>
* tiny-json.h is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by Licensed under the MIT License <http://opensource.org/licenses/MIT>.
* the Free Software Foundation, either version 3 of the License, or SPDX-License-Identifier: MIT
* (at your option) any later version. Copyright (c) 2013-2018 Rafa Garcia <rafagarcia77@gmail.com>.
*
* tiny-json.h is distributed in the hope that it will be useful, Permission is hereby granted, free of charge, to any person obtaining a copy
* but WITHOUT ANY WARRANTY; without even the implied warranty of of this software and associated documentation files (the "Software"), to deal
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the in the Software without restriction, including without limitation the rights
* GNU General Public License for more details. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* You should have received a copy of the GNU General Public License furnished to do so, subject to the following conditions:
* along with tiny-json.h. If not, see <http://www.gnu.org/licenses/>.
* The above copyright notice and this permission notice shall be included in all
*/ copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
*/
#ifndef _TINY_JSON_H_ #ifndef _TINY_JSON_H_
#define _TINY_JSON_H_ #define _TINY_JSON_H_