cleanup biolerplate comments, enable autogsdoc comments, cleanup some old RCS/CVS tags, fix emails

This commit is contained in:
Riccardo Mottola 2023-12-23 02:44:50 +01:00
parent 695b650d4a
commit 08858caf29
113 changed files with 223 additions and 156 deletions

View file

@ -1,11 +1,33 @@
/**
* NSJSONSerialization.m. This file provides an implementation of the JSON
* reading and writing APIs introduced with OS X 10.7.
*
* The parser is implemented as a simple recursive parser. The JSON is
* unambiguous, so this requires no read-ahead or backtracking. The source of
* data for the parse can be either a static JSON string or some JSON data.
*/
/** Implementation of class NSJSONSerialization
Copyright (C) 2011-2021 Free Software Foundation, Inc.
NSJSONSerialization.m. This file provides an implementation of the JSON
reading and writing APIs introduced with OS X 10.7.
The parser is implemented as a simple recursive parser. The JSON is
unambiguous, so this requires no read-ahead or backtracking. The source of
data for the parse can be either a static JSON string or some JSON data.
By: David Chisnall <github@theravensnest.org>
Date: Jul 2011
This file is part of the GNUstep Library.
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
This 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
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free
Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
Boston, MA 02110 USA.
*/
#import "common.h"
#import "Foundation/NSArray.h"