-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathjparse_main.h
57 lines (47 loc) · 1.13 KB
/
jparse_main.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
/*
* jparse_main - tool that parses a block of JSON input
*
* "Because specs w/o version numbers are forced to commit to their original design flaws." :-)
*
* This JSON parser was co-developed in 2022 by:
*
* @xexyl
* https://xexyl.net Cody Boone Ferguson
* https://ioccc.xexyl.net
* and:
* chongo (Landon Curt Noll, http://www.isthe.com/chongo/index.html) /\oo/\
*
* "Because sometimes even the IOCCC Judges need some help." :-)
*
* "Share and Enjoy!"
* -- Sirius Cybernetics Corporation Complaints Division, JSON spec department. :-)
*/
#if !defined(INCLUDE_JPARSE_MAIN_H)
# define INCLUDE_JPARSE_MAIN_H
/*
* dbg - info, debug, warning, error, and usage message facility
*/
#if defined(INTERNAL_INCLUDE)
#include "../dbg/dbg.h"
#elif defined(INTERNAL_INCLUDE_2)
#include "dbg/dbg.h"
#else
#include <dbg.h>
#endif
/*
* util - common utility functions for the JSON parser
*/
#include "util.h"
/*
* jparse - JSON parser
*/
#include "jparse.h"
/*
* version - JSON parser API and tool version
*/
#include "version.h"
/*
* jparse tool basename
*/
#define JPARSE_BASENAME "jparse"
#endif /* INCLUDE_JPARSE_MAIN_H */