mirror of
https://github.com/mauiaaron/apple2.git
synced 2025-02-09 18:31:03 +00:00
19 lines
362 B
C
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;
|
||
|
|