-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathchksubmit.h
More file actions
97 lines (81 loc) · 2.34 KB
/
chksubmit.h
File metadata and controls
97 lines (81 loc) · 2.34 KB
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
/*
* chksubmit - check submission directory via chkentry -S
*
* "Because grammar and syntax alone do not make a complete language." :-)
*
* Copyright (c) 2025 by Cody Boone Ferguson and Landon Curt Noll.
* All Rights Reserved.
*
* Permission to use, copy, modify, and distribute this software and
* its documentation for any purpose and without fee is hereby granted,
* provided that the above copyright, this permission notice and text
* this comment, and the disclaimer below appear in all of the following:
*
* supporting documentation
* source copies
* source works derived from this source
* binaries derived from this source or from derived source
*
* THE AUTHORS DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
* ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
* AUTHORS BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY
* DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
* CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*
* This tool and the JSON parser were co-developed in 2022-2025 by Cody Boone
* Ferguson and Landon Curt Noll:
*
* @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." :-)
*
* The concept of the JSON semantics tables was developed by Landon Curt Noll.
*
* "Share and Enjoy!"
* -- Sirius Cybernetics Corporation Complaints Division, JSON spec department. :-)
*/
#if !defined(INCLUDE_CHKSUBMIT_H)
# define INCLUDE_CHKSUBMIT_H
/*
* dbg - info, debug, warning, error, and usage message facility
*/
#include "dbg/dbg.h"
/*
* jparse - the parser
*/
#include "jparse/jparse.h"
/*
* jparse/version - JSON parser API and tool version
*/
#include "jparse/version.h"
/*
* soup - some delicious IOCCC soup recipes :-)
*/
#include "soup/soup.h"
/*
* foo - bar
*/
#include "soup/foo.h"
/*
* soup/util - soup pots, stock etc. :-)
*/
#include "soup/util.h"
/*
* macros
*/
/*
* chksubmit tool basename
*/
#define CHKSUBMIT_BASENAME "chksubmit"
/*
* externals
*/
/*
* function prototypes
*/
#endif /* INCLUDE_CHKSUBMIT_H */