apple2ix/src/json_parse_private.h
Aaron Culliney 01b25527fe Add JSON serialization and tests
- Encourage use of opaque reference rather than internal struct
2016-03-04 23:31:15 -08:00

19 lines
362 B
C

/*
* Apple // emulator for *ix
*
* This software package is subject to the GNU General Public License
* version 3 or later (your choice) as published by the Free Software
* Foundation.
*
* Copyright 2015-2016 Aaron Culliney
*
*/
typedef struct JSON_s {
size_t jsonLen;
char *jsonString;
int numTokens;
jsmntok_t *jsonTokens;
} JSON_s;