mirror of
https://github.com/mauiaaron/apple2.git
synced 2025-01-14 03:30:53 +00:00
01b25527fe
- Encourage use of opaque reference rather than internal struct
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;
|
|
|