Differences From Artifact [57caefd874]:
- File
src/OFString+JSONParsing.m
— part of check-in
[627511b032]
at
2020-11-14 12:23:55
on branch trunk
— Rename of_malloc and of_calloc
The new names should be more accurate. (user: js, size: 13089) [annotate] [blame] [check-ins using] [more...]
To Artifact [87dbebe87e]:
- File src/OFString+JSONParsing.m — part of check-in [d3fb77eb9c] at 2020-12-20 13:49:13 on branch trunk — Clean up a few defines (user: js, size: 13148) [annotate] [blame] [check-ins using] [more...]
| ︙ | ︙ | |||
27 28 29 30 31 32 33 34 35 36 37 38 39 40 |
#import "OFString+JSONParsing.h"
#import "OFArray.h"
#import "OFDictionary.h"
#import "OFNumber.h"
#import "OFNull.h"
#import "OFInvalidJSONException.h"
int _OFString_JSONParsing_reference;
static id nextObject(const char **pointer, const char *stop, size_t *line,
size_t depthLimit);
static void
| > > > > | 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 |
#import "OFString+JSONParsing.h"
#import "OFArray.h"
#import "OFDictionary.h"
#import "OFNumber.h"
#import "OFNull.h"
#import "OFInvalidJSONException.h"
#ifndef INFINITY
# define INFINITY __builtin_inf()
#endif
int _OFString_JSONParsing_reference;
static id nextObject(const char **pointer, const char *stop, size_t *line,
size_t depthLimit);
static void
|
| ︙ | ︙ |