git.fiddlerwoaroof.com
Browse code

Initial commit: README, .gitignore, cl-autowrap spec files and source tree

Fernando Borretti authored on 21/09/2013 23:54:43
Showing 23 changed files
1 1
new file mode 100755
... ...
@@ -0,0 +1,8 @@
1
+*.fasl
2
+*.dx32fsl
3
+*.dx64fsl
4
+*.lx32fsl
5
+*.lx64fsl
6
+*.x86f
7
+*~
8
+.#*
0 9
\ No newline at end of file
1 10
new file mode 100755
... ...
@@ -0,0 +1,26 @@
1
+`cl-yaml` is a [libyaml](http://pyyaml.org/wiki/LibYAML)-based YAML parser for Common Lisp.
2
+
3
+# Usage
4
+
5
+```lisp
6
+YAML> (yaml:parse #p"network/hosts.yaml")
7
+{"name" => "Your New Jekyll Site", "markdown" => "redcarpet", "pygments" => "true"}
8
+YAML> (yaml:parse "{arch: x86-64, cc: clang, user: eudoxia}")
9
+{"arch" => "x86-64", "cc" => "clang", "user" => "eudoxia"}
10
+```
11
+
12
+[Hash table syntax](http://frank.kank.net/essays/hash.html) is used in the examples. I recommend at least using its hash table printer because the default is basically useless.
13
+
14
+# Installation
15
+
16
+You need `libyaml` for this to work.
17
+
18
+# License
19
+
20
+Copyright (C) 2013 Fernando Borretti
21
+
22
+Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
23
+
24
+The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
25
+
26
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
0 27
new file mode 100755
... ...
@@ -0,0 +1,28 @@
1
+(defsystem cl-yaml
2
+  :version "0.1"
3
+  :author "Fernando Borretti"
4
+  :license "MIT"
5
+  :depends-on (:cffi
6
+               :cl-autowrap
7
+               :split-sequence)
8
+  :serial t
9
+  :components ((:module "src"
10
+                :serial t
11
+                :components
12
+                ((:file "yaml")
13
+                 (:file "cl-yaml")))
14
+               (:module "spec"))
15
+  :description ""
16
+  :long-description
17
+  #.(with-open-file (stream (merge-pathnames
18
+                             #p"README.md"
19
+                             (or *load-pathname* *compile-file-pathname*))
20
+                            :if-does-not-exist nil
21
+                            :direction :input)
22
+      (when stream
23
+        (let ((seq (make-array (file-length stream)
24
+                               :element-type 'character
25
+                               :fill-pointer t)))
26
+          (setf (fill-pointer seq) (read-sequence seq stream))
27
+          seq)))
28
+  :in-order-to ((test-op (load-op cl-yaml-test))))
0 29
new file mode 100755
... ...
@@ -0,0 +1,652 @@
1
+/* /usr/include/time.h:86:10 */
2
+#define __clockid_t_defined 1
3
+
4
+/* /usr/include/stdio.h:56:10 */
5
+#define __FILE_defined 1
6
+
7
+/* /usr/include/time.h:98:10 */
8
+#define __timer_t_defined 1
9
+
10
+/* /usr/include/time.h:114:10 */
11
+#define __timespec_defined 1
12
+
13
+/* /usr/include/features.h:261:10 */
14
+#define __USE_XOPEN2K8 1
15
+
16
+/* /usr/include/features.h:336:10 */
17
+#define __USE_FORTIFY_LEVEL 0
18
+
19
+/* /usr/include/bits/stdio_lim.h:24:10 */
20
+#define TMP_MAX 238328
21
+
22
+/* /usr/include/_G_config.h:48:9 */
23
+#define _G_HAVE_MMAP 1
24
+
25
+/* /usr/include/bits/stdio_lim.h:25:10 */
26
+#define FILENAME_MAX 4096
27
+
28
+/* /usr/include/features.h:313:10 */
29
+#define __USE_SVID 1
30
+
31
+/* /usr/include/features.h:309:10 */
32
+#define __USE_BSD 1
33
+
34
+/* /usr/include/stdio.h:26:10 */
35
+#define _STDIO_H 1
36
+
37
+/* /usr/include/features.h:317:10 */
38
+#define __USE_ATFILE 1
39
+
40
+/* /usr/include/features.h:305:10 */
41
+#define __USE_MISC 1
42
+
43
+/* /usr/include/bits/stdio_lim.h:37:10 */
44
+#define FOPEN_MAX 16
45
+
46
+/* /usr/include/features.h:223:10 */
47
+#define _POSIX_SOURCE 1
48
+
49
+/* /usr/include/features.h:188:10 */
50
+#define _BSD_SOURCE 1
51
+
52
+/* /usr/include/bits/stdio_lim.h:23:10 */
53
+#define L_tmpnam 20
54
+
55
+/* /usr/include/stdio.h:66:10 */
56
+#define ____FILE_defined 1
57
+
58
+/* /usr/include/_G_config.h:5:9 */
59
+#define _G_config_h 1
60
+
61
+/* /usr/include/time.h:69:10 */
62
+#define __time_t_defined 1
63
+
64
+/* /usr/include/features.h:133:9 */
65
+#define __USE_ANSI 1
66
+
67
+/* /usr/include/bits/waitstatus.h:59:9 */
68
+#define __WCOREFLAG 0x80
69
+
70
+/* /usr/include/bits/waitstatus.h:58:9 */
71
+#define __W_CONTINUED 0xffff
72
+
73
+/* /usr/include/bits/stdio_lim.h:28:11 */
74
+#define L_ctermid 9
75
+
76
+/* /usr/include/time.h:53:10 */
77
+#define __clock_t_defined 1
78
+
79
+/* /usr/include/wchar.h:80:10 */
80
+#define ____mbstate_t_defined 1
81
+
82
+/* /usr/include/endian.h:32:9 */
83
+#define __BIG_ENDIAN 4321
84
+
85
+/* /usr/include/endian.h:31:9 */
86
+#define __LITTLE_ENDIAN 1234
87
+
88
+/* /usr/include/endian.h:33:9 */
89
+#define __PDP_ENDIAN 3412
90
+
91
+/* /usr/include/endian.h:19:9 */
92
+#define _ENDIAN_H 1
93
+
94
+/* /usr/include/bits/waitflags.h:30:9 */
95
+#define WEXITED 4
96
+
97
+/* /usr/include/bits/waitflags.h:29:9 */
98
+#define WSTOPPED 2
99
+
100
+/* /usr/include/bits/waitflags.h:26:9 */
101
+#define WUNTRACED 2
102
+
103
+/* /usr/include/bits/waitflags.h:25:9 */
104
+#define WNOHANG 1
105
+
106
+/* /usr/include/bits/waitflags.h:37:9 */
107
+#define __WCLONE 0x80000000
108
+
109
+/* /usr/include/bits/waitflags.h:36:9 */
110
+#define __WALL 0x40000000
111
+
112
+/* /usr/include/bits/waitflags.h:32:9 */
113
+#define WNOWAIT 0x01000000
114
+
115
+/* /usr/include/bits/waitflags.h:31:9 */
116
+#define WCONTINUED 8
117
+
118
+/* /usr/include/features.h:241:10 */
119
+#define __USE_POSIX2 1
120
+
121
+/* /usr/include/bits/waitflags.h:34:9 */
122
+#define __WNOTHREAD 0x20000000
123
+
124
+/* /usr/include/features.h:245:10 */
125
+#define __USE_POSIX199309 1
126
+
127
+/* /usr/include/features.h:237:10 */
128
+#define __USE_POSIX 1
129
+
130
+/* /usr/include/features.h:257:10 */
131
+#define __USE_ISOC99 1
132
+
133
+/* /usr/include/features.h:255:10 */
134
+#define __USE_ISOC95 1
135
+
136
+/* /usr/include/features.h:19:9 */
137
+#define _FEATURES_H 1
138
+
139
+/* /usr/include/bits/pthreadtypes.h:47:10 */
140
+#define __SIZEOF_PTHREAD_MUTEX_T 24
141
+
142
+/* /usr/include/bits/pthreadtypes.h:50:10 */
143
+#define __SIZEOF_PTHREAD_CONDATTR_T 4
144
+
145
+/* /usr/include/features.h:253:10 */
146
+#define __USE_XOPEN2K 1
147
+
148
+/* /usr/include/bits/pthreadtypes.h:46:10 */
149
+#define __SIZEOF_PTHREAD_ATTR_T 36
150
+
151
+/* /usr/include/features.h:249:10 */
152
+#define __USE_POSIX199506 1
153
+
154
+/* /usr/include/bits/time.h:25:11 */
155
+#define _STRUCT_TIMEVAL 1
156
+
157
+/* /usr/include/bits/pthreadtypes.h:49:10 */
158
+#define __SIZEOF_PTHREAD_COND_T 48
159
+
160
+/* /usr/include/bits/pthreadtypes.h:48:10 */
161
+#define __SIZEOF_PTHREAD_MUTEXATTR_T 4
162
+
163
+/* /usr/include/bits/pthreadtypes.h:51:10 */
164
+#define __SIZEOF_PTHREAD_RWLOCK_T 32
165
+
166
+/* /usr/include/bits/pthreadtypes.h:52:10 */
167
+#define __SIZEOF_PTHREAD_RWLOCKATTR_T 8
168
+
169
+/* /usr/include/sys/sysmacros.h:21:9 */
170
+#define _SYS_SYSMACROS_H 1
171
+
172
+/* /usr/include/xlocale.h:21:9 */
173
+#define _XLOCALE_H 1
174
+
175
+/* /usr/include/bits/pthreadtypes.h:53:10 */
176
+#define __SIZEOF_PTHREAD_BARRIER_T 20
177
+
178
+/* /usr/include/stdlib.h:37:9 */
179
+#define _STDLIB_H 1
180
+
181
+/* /usr/include/bits/typesizes.h:86:9 */
182
+#define __FD_SETSIZE 1024
183
+
184
+/* /usr/include/bits/wordsize.h:6:10 */
185
+#define __WORDSIZE 32
186
+
187
+/* /usr/include/string.h:23:9 */
188
+#define _STRING_H 1
189
+
190
+/* /usr/include/bits/pthreadtypes.h:19:9 */
191
+#define _BITS_PTHREADTYPES_H 1
192
+
193
+/* /usr/include/features.h:233:10 */
194
+#define __USE_POSIX_IMPLICITLY 1
195
+
196
+/* /usr/include/features.h:189:10 */
197
+#define _SVID_SOURCE 1
198
+
199
+/* /usr/include/features.h:231:11 */
200
+#define _POSIX_C_SOURCE 200809L
201
+
202
+/* /usr/include/stdc-predef.h:19:9 */
203
+#define _STDC_PREDEF_H 1
204
+
205
+/* /usr/include/bits/sigset.h:21:10 */
206
+#define _SIGSET_H_types 1
207
+
208
+/* /usr/include/features.h:263:10 */
209
+#define _ATFILE_SOURCE 1
210
+
211
+/* /usr/include/features.h:354:9 */
212
+#define __GLIBC__ 2
213
+
214
+/* /usr/include/features.h:355:9 */
215
+#define __GLIBC_MINOR__ 17
216
+
217
+/* /usr/include/stdc-predef.h:37:9 */
218
+#define __STDC_NO_THREADS__ 1
219
+
220
+/* /usr/include/features.h:350:9 */
221
+#define __GNU_LIBRARY__ 6
222
+
223
+/* /usr/include/bits/predefs.h:28:9 */
224
+#define __STDC_IEC_559_COMPLEX__ 1
225
+
226
+/* /usr/include/stdc-predef.h:34:9 */
227
+#define __STDC_ISO_10646__ 201103L
228
+
229
+/* /usr/include/bits/typesizes.h:24:9 */
230
+#define _BITS_TYPESIZES_H 1
231
+
232
+/* /usr/include/bits/predefs.h:27:9 */
233
+#define __STDC_IEC_559__ 1
234
+
235
+/* /usr/include/sys/cdefs.h:20:9 */
236
+#define _SYS_CDEFS_H 1
237
+
238
+/* /usr/include/features.h:365:10 */
239
+#define __GLIBC_HAVE_LONG_LONG 1
240
+
241
+/* /usr/include/stdlib.h:128:9 */
242
+#define RAND_MAX 2147483647
243
+
244
+/* /usr/include/bits/select.h:30:11 */
245
+#define __FD_ZERO_STOS "stosl"
246
+
247
+/* /usr/include/stdlib.h:133:9 */
248
+#define EXIT_FAILURE 1
249
+
250
+/* /usr/include/libio.h:84:9 */
251
+#define _IOS_NOREPLACE 64
252
+
253
+/* /usr/include/sys/types.h:211:9 */
254
+#define __BIT_TYPES_DEFINED__ 1
255
+
256
+/* /usr/include/sys/select.h:22:9 */
257
+#define _SYS_SELECT_H 1
258
+
259
+/* /usr/include/stdlib.h:134:9 */
260
+#define EXIT_SUCCESS 0
261
+
262
+/* /usr/include/alloca.h:19:9 */
263
+#define _ALLOCA_H 1
264
+
265
+/* /usr/include/bits/pthreadtypes.h:70:10 */
266
+#define __have_pthread_attr_t 1
267
+
268
+/* /usr/include/_G_config.h:56:9 */
269
+#define _G_BUFSIZ 8192
270
+
271
+/* /usr/include/stdlib.h:110:10 */
272
+#define __ldiv_t_defined 1
273
+
274
+/* /usr/include/libio.h:82:9 */
275
+#define _IOS_TRUNC 16
276
+
277
+/* /usr/include/_G_config.h:51:9 */
278
+#define _G_IO_IO_FILE_VERSION 0x20001
279
+
280
+/* /usr/include/bits/sigset.h:27:10 */
281
+#define _SIGSET_NWORDS (1024/(8*sizeof(unsignedlongint)))
282
+
283
+/* /usr/include/stdlib.h:122:10 */
284
+#define __lldiv_t_defined 1
285
+
286
+/* /usr/include/bits/pthreadtypes.h:54:10 */
287
+#define __SIZEOF_PTHREAD_BARRIERATTR_T 4
288
+
289
+/* /usr/include/_G_config.h:49:9 */
290
+#define _G_HAVE_MREMAP 1
291
+
292
+/* /usr/include/libio.h:99:9 */
293
+#define _IO_NO_WRITES 8
294
+
295
+/* /usr/include/libio.h:63:10 */
296
+#define EOF (-1)
297
+
298
+/* /usr/include/libio.h:93:9 */
299
+#define _IO_MAGIC 0xFBAD0000
300
+
301
+/* /usr/include/libio.h:97:9 */
302
+#define _IO_UNBUFFERED 2
303
+
304
+/* /usr/include/libio.h:94:9 */
305
+#define _OLD_STDIO_MAGIC 0xFABC0000
306
+
307
+/* /usr/include/libio.h:100:9 */
308
+#define _IO_EOF_SEEN 0x10
309
+
310
+/* /usr/include/libio.h:98:9 */
311
+#define _IO_NO_READS 4
312
+
313
+/* /usr/include/libio.h:103:9 */
314
+#define _IO_LINKED 0x80
315
+
316
+/* /usr/include/libio.h:104:9 */
317
+#define _IO_IN_BACKUP 0x100
318
+
319
+/* /usr/include/libio.h:105:9 */
320
+#define _IO_LINE_BUF 0x200
321
+
322
+/* /usr/include/libio.h:80:9 */
323
+#define _IOS_ATEND 4
324
+
325
+/* /usr/include/libio.h:101:9 */
326
+#define _IO_ERR_SEEN 0x20
327
+
328
+/* /usr/include/libio.h:81:9 */
329
+#define _IOS_APPEND 8
330
+
331
+/* /usr/include/libio.h:85:9 */
332
+#define _IOS_BIN 128
333
+
334
+/* /usr/include/libio.h:102:9 */
335
+#define _IO_DELETE_DONT_CLOSE 0x40
336
+
337
+/* /usr/include/libio.h:60:9 */
338
+#define _IO_UNIFIED_JUMPTABLES 1
339
+
340
+/* /usr/include/libio.h:78:9 */
341
+#define _IOS_INPUT 1
342
+
343
+/* /usr/include/libio.h:79:9 */
344
+#define _IOS_OUTPUT 2
345
+
346
+/* /usr/include/libio.h:83:9 */
347
+#define _IOS_NOCREATE 32
348
+
349
+/* /usr/include/libio.h:96:9 */
350
+#define _IO_USER_BUF 1
351
+
352
+/* /usr/include/libio.h:109:9 */
353
+#define _IO_IS_FILEBUF 0x2000
354
+
355
+/* /usr/include/stdio.h:121:9 */
356
+#define _IOLBF 1
357
+
358
+/* /usr/include/libio.h:108:9 */
359
+#define _IO_IS_APPENDING 0x1000
360
+
361
+/* /usr/include/stdio.h:120:9 */
362
+#define _IOFBF 0
363
+
364
+/* /usr/include/libio.h:106:9 */
365
+#define _IO_TIED_PUT_GET 0x400
366
+
367
+/* /usr/include/libio.h:95:9 */
368
+#define _IO_MAGIC_MASK 0xFFFF0000
369
+
370
+/* /usr/include/libio.h:107:9 */
371
+#define _IO_CURRENTLY_PUTTING 0x800
372
+
373
+/* /usr/include/stdio.h:151:10 */
374
+#define P_tmpdir "/tmp"
375
+
376
+/* /usr/include/libio.h:113:9 */
377
+#define _IO_FLAGS2_MMAP 1
378
+
379
+/* /usr/include/stdio.h:142:9 */
380
+#define SEEK_END 2
381
+
382
+/* /usr/include/libio.h:114:9 */
383
+#define _IO_FLAGS2_NOTCANCEL 2
384
+
385
+/* /usr/include/libio.h:110:9 */
386
+#define _IO_BAD_SEEN 0x4000
387
+
388
+/* /usr/include/stdio.h:141:9 */
389
+#define SEEK_CUR 1
390
+
391
+/* /usr/include/libio.h:111:9 */
392
+#define _IO_USER_LOCK 0x8000
393
+
394
+/* /usr/include/stdio.h:122:9 */
395
+#define _IONBF 2
396
+
397
+/* /usr/include/libio.h:127:9 */
398
+#define _IO_LEFT 02
399
+
400
+/* /usr/include/libio.h:129:9 */
401
+#define _IO_INTERNAL 010
402
+
403
+/* /usr/include/libio.h:128:9 */
404
+#define _IO_RIGHT 04
405
+
406
+/* /usr/include/libio.h:118:9 */
407
+#define _IO_FLAGS2_USER_WBUF 8
408
+
409
+/* /usr/include/libio.h:126:9 */
410
+#define _IO_SKIPWS 01
411
+
412
+/* /usr/include/stdio.h:140:9 */
413
+#define SEEK_SET 0
414
+
415
+/* /usr/include/libio.h:132:9 */
416
+#define _IO_HEX 0100
417
+
418
+/* /usr/include/libio.h:134:9 */
419
+#define _IO_SHOWPOINT 0400
420
+
421
+/* /usr/include/libio.h:133:9 */
422
+#define _IO_SHOWBASE 0200
423
+
424
+/* /usr/include/libio.h:130:9 */
425
+#define _IO_DEC 020
426
+
427
+/* /usr/include/libio.h:131:9 */
428
+#define _IO_OCT 040
429
+
430
+/* /usr/include/libio.h:138:9 */
431
+#define _IO_FIXED 010000
432
+
433
+/* /usr/include/libio.h:137:9 */
434
+#define _IO_SCIENTIFIC 04000
435
+
436
+/* /usr/include/libio.h:136:9 */
437
+#define _IO_SHOWPOS 02000
438
+
439
+/* /usr/include/libio.h:135:9 */
440
+#define _IO_UPPERCASE 01000
441
+
442
+/* /usr/include/libio.h:141:9 */
443
+#define _IO_DONT_CLOSE 0100000
444
+
445
+/* /usr/include/libio.h:142:9 */
446
+#define _IO_BOOLALPHA 0200000
447
+
448
+/* /usr/include/libio.h:140:9 */
449
+#define _IO_STDIO 040000
450
+
451
+/* /usr/include/libio.h:139:9 */
452
+#define _IO_UNITBUF 020000
453
+
454
+/* /usr/include/sys/select.h:59:9 */
455
+#define __NFDBITS (8*(int)sizeof(__fd_mask))
456
+
457
+/* /usr/include/sys/types.h:23:9 */
458
+#define _SYS_TYPES_H 1
459
+
460
+/* /usr/include/bits/byteswap.h:24:9 */
461
+#define _BITS_BYTESWAP_H 1
462
+
463
+/* /usr/include/bits/types.h:24:9 */
464
+#define _BITS_TYPES_H 1
465
+
466
+/* /usr/include/yaml.h:669:9 */
467
+#define YAML_STR_TAG "tag:yaml.org,2002:str"
468
+
469
+/* /usr/include/yaml.h:665:9 */
470
+#define YAML_NULL_TAG "tag:yaml.org,2002:null"
471
+
472
+/* /usr/include/yaml.h:667:9 */
473
+#define YAML_BOOL_TAG "tag:yaml.org,2002:bool"
474
+
475
+/* /usr/include/yaml.h:673:9 */
476
+#define YAML_FLOAT_TAG "tag:yaml.org,2002:float"
477
+
478
+/* /usr/include/yaml.h:671:9 */
479
+#define YAML_INT_TAG "tag:yaml.org,2002:int"
480
+
481
+/* /usr/include/yaml.h:678:9 */
482
+#define YAML_SEQ_TAG "tag:yaml.org,2002:seq"
483
+
484
+/* /usr/include/yaml.h:675:9 */
485
+#define YAML_TIMESTAMP_TAG "tag:yaml.org,2002:timestamp"
486
+
487
+/* /usr/include/yaml.h:680:9 */
488
+#define YAML_MAP_TAG "tag:yaml.org,2002:map"
489
+
490
+const __int128_t __c2ffi___clockid_t_defined = __clockid_t_defined;
491
+const __int128_t __c2ffi___FILE_defined = __FILE_defined;
492
+const __int128_t __c2ffi___timer_t_defined = __timer_t_defined;
493
+const __int128_t __c2ffi___timespec_defined = __timespec_defined;
494
+const __int128_t __c2ffi___USE_XOPEN2K8 = __USE_XOPEN2K8;
495
+const __int128_t __c2ffi___USE_FORTIFY_LEVEL = __USE_FORTIFY_LEVEL;
496
+const __int128_t __c2ffi_TMP_MAX = TMP_MAX;
497
+const __int128_t __c2ffi__G_HAVE_MMAP = _G_HAVE_MMAP;
498
+const __int128_t __c2ffi_FILENAME_MAX = FILENAME_MAX;
499
+const __int128_t __c2ffi___USE_SVID = __USE_SVID;
500
+const __int128_t __c2ffi___USE_BSD = __USE_BSD;
501
+const __int128_t __c2ffi__STDIO_H = _STDIO_H;
502
+const __int128_t __c2ffi___USE_ATFILE = __USE_ATFILE;
503
+const __int128_t __c2ffi___USE_MISC = __USE_MISC;
504
+const __int128_t __c2ffi_FOPEN_MAX = FOPEN_MAX;
505
+const __int128_t __c2ffi__POSIX_SOURCE = _POSIX_SOURCE;
506
+const __int128_t __c2ffi__BSD_SOURCE = _BSD_SOURCE;
507
+const __int128_t __c2ffi_L_tmpnam = L_tmpnam;
508
+const __int128_t __c2ffi_____FILE_defined = ____FILE_defined;
509
+const __int128_t __c2ffi__G_config_h = _G_config_h;
510
+const __int128_t __c2ffi___time_t_defined = __time_t_defined;
511
+const __int128_t __c2ffi___USE_ANSI = __USE_ANSI;
512
+const __int128_t __c2ffi___WCOREFLAG = __WCOREFLAG;
513
+const __int128_t __c2ffi___W_CONTINUED = __W_CONTINUED;
514
+const __int128_t __c2ffi_L_ctermid = L_ctermid;
515
+const __int128_t __c2ffi___clock_t_defined = __clock_t_defined;
516
+const __int128_t __c2ffi_____mbstate_t_defined = ____mbstate_t_defined;
517
+const __int128_t __c2ffi___BIG_ENDIAN = __BIG_ENDIAN;
518
+const __int128_t __c2ffi___LITTLE_ENDIAN = __LITTLE_ENDIAN;
519
+const __int128_t __c2ffi___PDP_ENDIAN = __PDP_ENDIAN;
520
+const __int128_t __c2ffi__ENDIAN_H = _ENDIAN_H;
521
+const __int128_t __c2ffi_WEXITED = WEXITED;
522
+const __int128_t __c2ffi_WSTOPPED = WSTOPPED;
523
+const __int128_t __c2ffi_WUNTRACED = WUNTRACED;
524
+const __int128_t __c2ffi_WNOHANG = WNOHANG;
525
+const __int128_t __c2ffi___WCLONE = __WCLONE;
526
+const __int128_t __c2ffi___WALL = __WALL;
527
+const __int128_t __c2ffi_WNOWAIT = WNOWAIT;
528
+const __int128_t __c2ffi_WCONTINUED = WCONTINUED;
529
+const __int128_t __c2ffi___USE_POSIX2 = __USE_POSIX2;
530
+const __int128_t __c2ffi___WNOTHREAD = __WNOTHREAD;
531
+const __int128_t __c2ffi___USE_POSIX199309 = __USE_POSIX199309;
532
+const __int128_t __c2ffi___USE_POSIX = __USE_POSIX;
533
+const __int128_t __c2ffi___USE_ISOC99 = __USE_ISOC99;
534
+const __int128_t __c2ffi___USE_ISOC95 = __USE_ISOC95;
535
+const __int128_t __c2ffi__FEATURES_H = _FEATURES_H;
536
+const __int128_t __c2ffi___SIZEOF_PTHREAD_MUTEX_T = __SIZEOF_PTHREAD_MUTEX_T;
537
+const __int128_t __c2ffi___SIZEOF_PTHREAD_CONDATTR_T = __SIZEOF_PTHREAD_CONDATTR_T;
538
+const __int128_t __c2ffi___USE_XOPEN2K = __USE_XOPEN2K;
539
+const __int128_t __c2ffi___SIZEOF_PTHREAD_ATTR_T = __SIZEOF_PTHREAD_ATTR_T;
540
+const __int128_t __c2ffi___USE_POSIX199506 = __USE_POSIX199506;
541
+const __int128_t __c2ffi__STRUCT_TIMEVAL = _STRUCT_TIMEVAL;
542
+const __int128_t __c2ffi___SIZEOF_PTHREAD_COND_T = __SIZEOF_PTHREAD_COND_T;
543
+const __int128_t __c2ffi___SIZEOF_PTHREAD_MUTEXATTR_T = __SIZEOF_PTHREAD_MUTEXATTR_T;
544
+const __int128_t __c2ffi___SIZEOF_PTHREAD_RWLOCK_T = __SIZEOF_PTHREAD_RWLOCK_T;
545
+const __int128_t __c2ffi___SIZEOF_PTHREAD_RWLOCKATTR_T = __SIZEOF_PTHREAD_RWLOCKATTR_T;
546
+const __int128_t __c2ffi__SYS_SYSMACROS_H = _SYS_SYSMACROS_H;
547
+const __int128_t __c2ffi__XLOCALE_H = _XLOCALE_H;
548
+const __int128_t __c2ffi___SIZEOF_PTHREAD_BARRIER_T = __SIZEOF_PTHREAD_BARRIER_T;
549
+const __int128_t __c2ffi__STDLIB_H = _STDLIB_H;
550
+const __int128_t __c2ffi___FD_SETSIZE = __FD_SETSIZE;
551
+const __int128_t __c2ffi___WORDSIZE = __WORDSIZE;
552
+const __int128_t __c2ffi__STRING_H = _STRING_H;
553
+const __int128_t __c2ffi__BITS_PTHREADTYPES_H = _BITS_PTHREADTYPES_H;
554
+const __int128_t __c2ffi___USE_POSIX_IMPLICITLY = __USE_POSIX_IMPLICITLY;
555
+const __int128_t __c2ffi__SVID_SOURCE = _SVID_SOURCE;
556
+const __int128_t __c2ffi__POSIX_C_SOURCE = _POSIX_C_SOURCE;
557
+const __int128_t __c2ffi__STDC_PREDEF_H = _STDC_PREDEF_H;
558
+const __int128_t __c2ffi__SIGSET_H_types = _SIGSET_H_types;
559
+const __int128_t __c2ffi__ATFILE_SOURCE = _ATFILE_SOURCE;
560
+const __int128_t __c2ffi___GLIBC__ = __GLIBC__;
561
+const __int128_t __c2ffi___GLIBC_MINOR__ = __GLIBC_MINOR__;
562
+const __int128_t __c2ffi___STDC_NO_THREADS__ = __STDC_NO_THREADS__;
563
+const __int128_t __c2ffi___GNU_LIBRARY__ = __GNU_LIBRARY__;
564
+const __int128_t __c2ffi___STDC_IEC_559_COMPLEX__ = __STDC_IEC_559_COMPLEX__;
565
+const __int128_t __c2ffi___STDC_ISO_10646__ = __STDC_ISO_10646__;
566
+const __int128_t __c2ffi__BITS_TYPESIZES_H = _BITS_TYPESIZES_H;
567
+const __int128_t __c2ffi___STDC_IEC_559__ = __STDC_IEC_559__;
568
+const __int128_t __c2ffi__SYS_CDEFS_H = _SYS_CDEFS_H;
569
+const __int128_t __c2ffi___GLIBC_HAVE_LONG_LONG = __GLIBC_HAVE_LONG_LONG;
570
+const __int128_t __c2ffi_RAND_MAX = RAND_MAX;
571
+const char* __c2ffi___FD_ZERO_STOS = __FD_ZERO_STOS;
572
+const __int128_t __c2ffi_EXIT_FAILURE = EXIT_FAILURE;
573
+const __int128_t __c2ffi__IOS_NOREPLACE = _IOS_NOREPLACE;
574
+const __int128_t __c2ffi___BIT_TYPES_DEFINED__ = __BIT_TYPES_DEFINED__;
575
+const __int128_t __c2ffi__SYS_SELECT_H = _SYS_SELECT_H;
576
+const __int128_t __c2ffi_EXIT_SUCCESS = EXIT_SUCCESS;
577
+const __int128_t __c2ffi__ALLOCA_H = _ALLOCA_H;
578
+const __int128_t __c2ffi___have_pthread_attr_t = __have_pthread_attr_t;
579
+const __int128_t __c2ffi__G_BUFSIZ = _G_BUFSIZ;
580
+const __int128_t __c2ffi___ldiv_t_defined = __ldiv_t_defined;
581
+const __int128_t __c2ffi__IOS_TRUNC = _IOS_TRUNC;
582
+const __int128_t __c2ffi__G_IO_IO_FILE_VERSION = _G_IO_IO_FILE_VERSION;
583
+const __int128_t __c2ffi__SIGSET_NWORDS = _SIGSET_NWORDS;
584
+const __int128_t __c2ffi___lldiv_t_defined = __lldiv_t_defined;
585
+const __int128_t __c2ffi___SIZEOF_PTHREAD_BARRIERATTR_T = __SIZEOF_PTHREAD_BARRIERATTR_T;
586
+const __int128_t __c2ffi__G_HAVE_MREMAP = _G_HAVE_MREMAP;
587
+const __int128_t __c2ffi__IO_NO_WRITES = _IO_NO_WRITES;
588
+const __int128_t __c2ffi_EOF = EOF;
589
+const __int128_t __c2ffi__IO_MAGIC = _IO_MAGIC;
590
+const __int128_t __c2ffi__IO_UNBUFFERED = _IO_UNBUFFERED;
591
+const __int128_t __c2ffi__OLD_STDIO_MAGIC = _OLD_STDIO_MAGIC;
592
+const __int128_t __c2ffi__IO_EOF_SEEN = _IO_EOF_SEEN;
593
+const __int128_t __c2ffi__IO_NO_READS = _IO_NO_READS;
594
+const __int128_t __c2ffi__IO_LINKED = _IO_LINKED;
595
+const __int128_t __c2ffi__IO_IN_BACKUP = _IO_IN_BACKUP;
596
+const __int128_t __c2ffi__IO_LINE_BUF = _IO_LINE_BUF;
597
+const __int128_t __c2ffi__IOS_ATEND = _IOS_ATEND;
598
+const __int128_t __c2ffi__IO_ERR_SEEN = _IO_ERR_SEEN;
599
+const __int128_t __c2ffi__IOS_APPEND = _IOS_APPEND;
600
+const __int128_t __c2ffi__IOS_BIN = _IOS_BIN;
601
+const __int128_t __c2ffi__IO_DELETE_DONT_CLOSE = _IO_DELETE_DONT_CLOSE;
602
+const __int128_t __c2ffi__IO_UNIFIED_JUMPTABLES = _IO_UNIFIED_JUMPTABLES;
603
+const __int128_t __c2ffi__IOS_INPUT = _IOS_INPUT;
604
+const __int128_t __c2ffi__IOS_OUTPUT = _IOS_OUTPUT;
605
+const __int128_t __c2ffi__IOS_NOCREATE = _IOS_NOCREATE;
606
+const __int128_t __c2ffi__IO_USER_BUF = _IO_USER_BUF;
607
+const __int128_t __c2ffi__IO_IS_FILEBUF = _IO_IS_FILEBUF;
608
+const __int128_t __c2ffi__IOLBF = _IOLBF;
609
+const __int128_t __c2ffi__IO_IS_APPENDING = _IO_IS_APPENDING;
610
+const __int128_t __c2ffi__IOFBF = _IOFBF;
611
+const __int128_t __c2ffi__IO_TIED_PUT_GET = _IO_TIED_PUT_GET;
612
+const __int128_t __c2ffi__IO_MAGIC_MASK = _IO_MAGIC_MASK;
613
+const __int128_t __c2ffi__IO_CURRENTLY_PUTTING = _IO_CURRENTLY_PUTTING;
614
+const char* __c2ffi_P_tmpdir = P_tmpdir;
615
+const __int128_t __c2ffi__IO_FLAGS2_MMAP = _IO_FLAGS2_MMAP;
616
+const __int128_t __c2ffi_SEEK_END = SEEK_END;
617
+const __int128_t __c2ffi__IO_FLAGS2_NOTCANCEL = _IO_FLAGS2_NOTCANCEL;
618
+const __int128_t __c2ffi__IO_BAD_SEEN = _IO_BAD_SEEN;
619
+const __int128_t __c2ffi_SEEK_CUR = SEEK_CUR;
620
+const __int128_t __c2ffi__IO_USER_LOCK = _IO_USER_LOCK;
621
+const __int128_t __c2ffi__IONBF = _IONBF;
622
+const __int128_t __c2ffi__IO_LEFT = _IO_LEFT;
623
+const __int128_t __c2ffi__IO_INTERNAL = _IO_INTERNAL;
624
+const __int128_t __c2ffi__IO_RIGHT = _IO_RIGHT;
625
+const __int128_t __c2ffi__IO_FLAGS2_USER_WBUF = _IO_FLAGS2_USER_WBUF;
626
+const __int128_t __c2ffi__IO_SKIPWS = _IO_SKIPWS;
627
+const __int128_t __c2ffi_SEEK_SET = SEEK_SET;
628
+const __int128_t __c2ffi__IO_HEX = _IO_HEX;
629
+const __int128_t __c2ffi__IO_SHOWPOINT = _IO_SHOWPOINT;
630
+const __int128_t __c2ffi__IO_SHOWBASE = _IO_SHOWBASE;
631
+const __int128_t __c2ffi__IO_DEC = _IO_DEC;
632
+const __int128_t __c2ffi__IO_OCT = _IO_OCT;
633
+const __int128_t __c2ffi__IO_FIXED = _IO_FIXED;
634
+const __int128_t __c2ffi__IO_SCIENTIFIC = _IO_SCIENTIFIC;
635
+const __int128_t __c2ffi__IO_SHOWPOS = _IO_SHOWPOS;
636
+const __int128_t __c2ffi__IO_UPPERCASE = _IO_UPPERCASE;
637
+const __int128_t __c2ffi__IO_DONT_CLOSE = _IO_DONT_CLOSE;
638
+const __int128_t __c2ffi__IO_BOOLALPHA = _IO_BOOLALPHA;
639
+const __int128_t __c2ffi__IO_STDIO = _IO_STDIO;
640
+const __int128_t __c2ffi__IO_UNITBUF = _IO_UNITBUF;
641
+const __int128_t __c2ffi___NFDBITS = __NFDBITS;
642
+const __int128_t __c2ffi__SYS_TYPES_H = _SYS_TYPES_H;
643
+const __int128_t __c2ffi__BITS_BYTESWAP_H = _BITS_BYTESWAP_H;
644
+const __int128_t __c2ffi__BITS_TYPES_H = _BITS_TYPES_H;
645
+const char* __c2ffi_YAML_STR_TAG = YAML_STR_TAG;
646
+const char* __c2ffi_YAML_NULL_TAG = YAML_NULL_TAG;
647
+const char* __c2ffi_YAML_BOOL_TAG = YAML_BOOL_TAG;
648
+const char* __c2ffi_YAML_FLOAT_TAG = YAML_FLOAT_TAG;
649
+const char* __c2ffi_YAML_INT_TAG = YAML_INT_TAG;
650
+const char* __c2ffi_YAML_SEQ_TAG = YAML_SEQ_TAG;
651
+const char* __c2ffi_YAML_TIMESTAMP_TAG = YAML_TIMESTAMP_TAG;
652
+const char* __c2ffi_YAML_MAP_TAG = YAML_MAP_TAG;
0 653
new file mode 100755
... ...
@@ -0,0 +1,165 @@
1
+[
2
+{ "tag": "const", "name": "__clockid_t_defined", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-apple-darwin9.h:490:18", "type": { "tag": ":int" } },
3
+{ "tag": "const", "name": "__FILE_defined", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-apple-darwin9.h:491:18", "type": { "tag": ":int" } },
4
+{ "tag": "const", "name": "__timer_t_defined", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-apple-darwin9.h:492:18", "type": { "tag": ":int" } },
5
+{ "tag": "const", "name": "__timespec_defined", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-apple-darwin9.h:493:18", "type": { "tag": ":int" } },
6
+{ "tag": "const", "name": "__USE_XOPEN2K8", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-apple-darwin9.h:494:18", "type": { "tag": ":int" } },
7
+{ "tag": "const", "name": "__USE_FORTIFY_LEVEL", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-apple-darwin9.h:495:18", "type": { "tag": ":int" } },
8
+{ "tag": "const", "name": "TMP_MAX", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-apple-darwin9.h:496:18", "type": { "tag": ":int" } },
9
+{ "tag": "const", "name": "_G_HAVE_MMAP", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-apple-darwin9.h:497:18", "type": { "tag": ":int" } },
10
+{ "tag": "const", "name": "FILENAME_MAX", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-apple-darwin9.h:498:18", "type": { "tag": ":int" } },
11
+{ "tag": "const", "name": "__USE_SVID", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-apple-darwin9.h:499:18", "type": { "tag": ":int" } },
12
+{ "tag": "const", "name": "__USE_BSD", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-apple-darwin9.h:500:18", "type": { "tag": ":int" } },
13
+{ "tag": "const", "name": "_STDIO_H", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-apple-darwin9.h:501:18", "type": { "tag": ":int" } },
14
+{ "tag": "const", "name": "__USE_ATFILE", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-apple-darwin9.h:502:18", "type": { "tag": ":int" } },
15
+{ "tag": "const", "name": "__USE_MISC", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-apple-darwin9.h:503:18", "type": { "tag": ":int" } },
16
+{ "tag": "const", "name": "FOPEN_MAX", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-apple-darwin9.h:504:18", "type": { "tag": ":int" } },
17
+{ "tag": "const", "name": "_POSIX_SOURCE", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-apple-darwin9.h:505:18", "type": { "tag": ":int" } },
18
+{ "tag": "const", "name": "_BSD_SOURCE", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-apple-darwin9.h:506:18", "type": { "tag": ":int" } },
19
+{ "tag": "const", "name": "L_tmpnam", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-apple-darwin9.h:507:18", "type": { "tag": ":int" } },
20
+{ "tag": "const", "name": "____FILE_defined", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-apple-darwin9.h:508:18", "type": { "tag": ":int" } },
21
+{ "tag": "const", "name": "_G_config_h", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-apple-darwin9.h:509:18", "type": { "tag": ":int" } },
22
+{ "tag": "const", "name": "__time_t_defined", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-apple-darwin9.h:510:18", "type": { "tag": ":int" } },
23
+{ "tag": "const", "name": "__USE_ANSI", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-apple-darwin9.h:511:18", "type": { "tag": ":int" } },
24
+{ "tag": "const", "name": "__WCOREFLAG", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-apple-darwin9.h:512:18", "type": { "tag": ":int" } },
25
+{ "tag": "const", "name": "__W_CONTINUED", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-apple-darwin9.h:513:18", "type": { "tag": ":int" } },
26
+{ "tag": "const", "name": "L_ctermid", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-apple-darwin9.h:514:18", "type": { "tag": ":int" } },
27
+{ "tag": "const", "name": "__clock_t_defined", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-apple-darwin9.h:515:18", "type": { "tag": ":int" } },
28
+{ "tag": "const", "name": "____mbstate_t_defined", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-apple-darwin9.h:516:18", "type": { "tag": ":int" } },
29
+{ "tag": "const", "name": "__BIG_ENDIAN", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-apple-darwin9.h:517:18", "type": { "tag": ":int" } },
30
+{ "tag": "const", "name": "__LITTLE_ENDIAN", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-apple-darwin9.h:518:18", "type": { "tag": ":int" } },
31
+{ "tag": "const", "name": "__PDP_ENDIAN", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-apple-darwin9.h:519:18", "type": { "tag": ":int" } },
32
+{ "tag": "const", "name": "_ENDIAN_H", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-apple-darwin9.h:520:18", "type": { "tag": ":int" } },
33
+{ "tag": "const", "name": "WEXITED", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-apple-darwin9.h:521:18", "type": { "tag": ":int" } },
34
+{ "tag": "const", "name": "WSTOPPED", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-apple-darwin9.h:522:18", "type": { "tag": ":int" } },
35
+{ "tag": "const", "name": "WUNTRACED", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-apple-darwin9.h:523:18", "type": { "tag": ":int" } },
36
+{ "tag": "const", "name": "WNOHANG", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-apple-darwin9.h:524:18", "type": { "tag": ":int" } },
37
+{ "tag": "const", "name": "__WCLONE", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-apple-darwin9.h:525:18", "type": { "tag": ":int" } },
38
+{ "tag": "const", "name": "__WALL", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-apple-darwin9.h:526:18", "type": { "tag": ":int" } },
39
+{ "tag": "const", "name": "WNOWAIT", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-apple-darwin9.h:527:18", "type": { "tag": ":int" } },
40
+{ "tag": "const", "name": "WCONTINUED", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-apple-darwin9.h:528:18", "type": { "tag": ":int" } },
41
+{ "tag": "const", "name": "__USE_POSIX2", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-apple-darwin9.h:529:18", "type": { "tag": ":int" } },
42
+{ "tag": "const", "name": "__WNOTHREAD", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-apple-darwin9.h:530:18", "type": { "tag": ":int" } },
43
+{ "tag": "const", "name": "__USE_POSIX199309", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-apple-darwin9.h:531:18", "type": { "tag": ":int" } },
44
+{ "tag": "const", "name": "__USE_POSIX", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-apple-darwin9.h:532:18", "type": { "tag": ":int" } },
45
+{ "tag": "const", "name": "__USE_ISOC99", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-apple-darwin9.h:533:18", "type": { "tag": ":int" } },
46
+{ "tag": "const", "name": "__USE_ISOC95", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-apple-darwin9.h:534:18", "type": { "tag": ":int" } },
47
+{ "tag": "const", "name": "_FEATURES_H", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-apple-darwin9.h:535:18", "type": { "tag": ":int" } },
48
+{ "tag": "const", "name": "__SIZEOF_PTHREAD_MUTEX_T", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-apple-darwin9.h:536:18", "type": { "tag": ":int" } },
49
+{ "tag": "const", "name": "__SIZEOF_PTHREAD_CONDATTR_T", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-apple-darwin9.h:537:18", "type": { "tag": ":int" } },
50
+{ "tag": "const", "name": "__USE_XOPEN2K", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-apple-darwin9.h:538:18", "type": { "tag": ":int" } },
51
+{ "tag": "const", "name": "__SIZEOF_PTHREAD_ATTR_T", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-apple-darwin9.h:539:18", "type": { "tag": ":int" } },
52
+{ "tag": "const", "name": "__USE_POSIX199506", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-apple-darwin9.h:540:18", "type": { "tag": ":int" } },
53
+{ "tag": "const", "name": "_STRUCT_TIMEVAL", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-apple-darwin9.h:541:18", "type": { "tag": ":int" } },
54
+{ "tag": "const", "name": "__SIZEOF_PTHREAD_COND_T", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-apple-darwin9.h:542:18", "type": { "tag": ":int" } },
55
+{ "tag": "const", "name": "__SIZEOF_PTHREAD_MUTEXATTR_T", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-apple-darwin9.h:543:18", "type": { "tag": ":int" } },
56
+{ "tag": "const", "name": "__SIZEOF_PTHREAD_RWLOCK_T", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-apple-darwin9.h:544:18", "type": { "tag": ":int" } },
57
+{ "tag": "const", "name": "__SIZEOF_PTHREAD_RWLOCKATTR_T", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-apple-darwin9.h:545:18", "type": { "tag": ":int" } },
58
+{ "tag": "const", "name": "_SYS_SYSMACROS_H", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-apple-darwin9.h:546:18", "type": { "tag": ":int" } },
59
+{ "tag": "const", "name": "_XLOCALE_H", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-apple-darwin9.h:547:18", "type": { "tag": ":int" } },
60
+{ "tag": "const", "name": "__SIZEOF_PTHREAD_BARRIER_T", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-apple-darwin9.h:548:18", "type": { "tag": ":int" } },
61
+{ "tag": "const", "name": "_STDLIB_H", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-apple-darwin9.h:549:18", "type": { "tag": ":int" } },
62
+{ "tag": "const", "name": "__FD_SETSIZE", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-apple-darwin9.h:550:18", "type": { "tag": ":int" } },
63
+{ "tag": "const", "name": "__WORDSIZE", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-apple-darwin9.h:551:18", "type": { "tag": ":int" } },
64
+{ "tag": "const", "name": "_STRING_H", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-apple-darwin9.h:552:18", "type": { "tag": ":int" } },
65
+{ "tag": "const", "name": "_BITS_PTHREADTYPES_H", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-apple-darwin9.h:553:18", "type": { "tag": ":int" } },
66
+{ "tag": "const", "name": "__USE_POSIX_IMPLICITLY", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-apple-darwin9.h:554:18", "type": { "tag": ":int" } },
67
+{ "tag": "const", "name": "_SVID_SOURCE", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-apple-darwin9.h:555:18", "type": { "tag": ":int" } },
68
+{ "tag": "const", "name": "_POSIX_C_SOURCE", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-apple-darwin9.h:556:18", "type": { "tag": ":int" } },
69
+{ "tag": "const", "name": "_STDC_PREDEF_H", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-apple-darwin9.h:557:18", "type": { "tag": ":int" } },
70
+{ "tag": "const", "name": "_SIGSET_H_types", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-apple-darwin9.h:558:18", "type": { "tag": ":int" } },
71
+{ "tag": "const", "name": "_ATFILE_SOURCE", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-apple-darwin9.h:559:18", "type": { "tag": ":int" } },
72
+{ "tag": "const", "name": "__GLIBC__", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-apple-darwin9.h:560:18", "type": { "tag": ":int" } },
73
+{ "tag": "const", "name": "__GLIBC_MINOR__", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-apple-darwin9.h:561:18", "type": { "tag": ":int" } },
74
+{ "tag": "const", "name": "__STDC_NO_THREADS__", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-apple-darwin9.h:562:18", "type": { "tag": ":int" } },
75
+{ "tag": "const", "name": "__GNU_LIBRARY__", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-apple-darwin9.h:563:18", "type": { "tag": ":int" } },
76
+{ "tag": "const", "name": "__STDC_IEC_559_COMPLEX__", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-apple-darwin9.h:564:18", "type": { "tag": ":int" } },
77
+{ "tag": "const", "name": "__STDC_ISO_10646__", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-apple-darwin9.h:565:18", "type": { "tag": ":int" } },
78
+{ "tag": "const", "name": "_BITS_TYPESIZES_H", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-apple-darwin9.h:566:18", "type": { "tag": ":int" } },
79
+{ "tag": "const", "name": "__STDC_IEC_559__", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-apple-darwin9.h:567:18", "type": { "tag": ":int" } },
80
+{ "tag": "const", "name": "_SYS_CDEFS_H", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-apple-darwin9.h:568:18", "type": { "tag": ":int" } },
81
+{ "tag": "const", "name": "__GLIBC_HAVE_LONG_LONG", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-apple-darwin9.h:569:18", "type": { "tag": ":int" } },
82
+{ "tag": "const", "name": "RAND_MAX", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-apple-darwin9.h:570:18", "type": { "tag": ":int" } },
83
+{ "tag": "const", "name": "__FD_ZERO_STOS", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-apple-darwin9.h:571:13", "type": { "tag": ":pointer", "type": { "tag": ":char" } }, "value": "stosl" },
84
+{ "tag": "const", "name": "EXIT_FAILURE", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-apple-darwin9.h:572:18", "type": { "tag": ":int" } },
85
+{ "tag": "const", "name": "_IOS_NOREPLACE", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-apple-darwin9.h:573:18", "type": { "tag": ":int" } },
86
+{ "tag": "const", "name": "__BIT_TYPES_DEFINED__", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-apple-darwin9.h:574:18", "type": { "tag": ":int" } },
87
+{ "tag": "const", "name": "_SYS_SELECT_H", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-apple-darwin9.h:575:18", "type": { "tag": ":int" } },
88
+{ "tag": "const", "name": "EXIT_SUCCESS", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-apple-darwin9.h:576:18", "type": { "tag": ":int" } },
89
+{ "tag": "const", "name": "_ALLOCA_H", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-apple-darwin9.h:577:18", "type": { "tag": ":int" } },
90
+{ "tag": "const", "name": "__have_pthread_attr_t", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-apple-darwin9.h:578:18", "type": { "tag": ":int" } },
91
+{ "tag": "const", "name": "_G_BUFSIZ", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-apple-darwin9.h:579:18", "type": { "tag": ":int" } },
92
+{ "tag": "const", "name": "__ldiv_t_defined", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-apple-darwin9.h:580:18", "type": { "tag": ":int" } },
93
+{ "tag": "const", "name": "_IOS_TRUNC", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-apple-darwin9.h:581:18", "type": { "tag": ":int" } },
94
+{ "tag": "const", "name": "_G_IO_IO_FILE_VERSION", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-apple-darwin9.h:582:18", "type": { "tag": ":int" } },
95
+{ "tag": "const", "name": "_SIGSET_NWORDS", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-apple-darwin9.h:583:18", "type": { "tag": ":int" } },
96
+{ "tag": "const", "name": "__lldiv_t_defined", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-apple-darwin9.h:584:18", "type": { "tag": ":int" } },
97
+{ "tag": "const", "name": "__SIZEOF_PTHREAD_BARRIERATTR_T", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-apple-darwin9.h:585:18", "type": { "tag": ":int" } },
98
+{ "tag": "const", "name": "_G_HAVE_MREMAP", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-apple-darwin9.h:586:18", "type": { "tag": ":int" } },
99
+{ "tag": "const", "name": "_IO_NO_WRITES", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-apple-darwin9.h:587:18", "type": { "tag": ":int" } },
100
+{ "tag": "const", "name": "EOF", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-apple-darwin9.h:588:18", "type": { "tag": ":int" } },
101
+{ "tag": "const", "name": "_IO_MAGIC", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-apple-darwin9.h:589:18", "type": { "tag": ":int" } },
102
+{ "tag": "const", "name": "_IO_UNBUFFERED", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-apple-darwin9.h:590:18", "type": { "tag": ":int" } },
103
+{ "tag": "const", "name": "_OLD_STDIO_MAGIC", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-apple-darwin9.h:591:18", "type": { "tag": ":int" } },
104
+{ "tag": "const", "name": "_IO_EOF_SEEN", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-apple-darwin9.h:592:18", "type": { "tag": ":int" } },
105
+{ "tag": "const", "name": "_IO_NO_READS", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-apple-darwin9.h:593:18", "type": { "tag": ":int" } },
106
+{ "tag": "const", "name": "_IO_LINKED", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-apple-darwin9.h:594:18", "type": { "tag": ":int" } },
107
+{ "tag": "const", "name": "_IO_IN_BACKUP", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-apple-darwin9.h:595:18", "type": { "tag": ":int" } },
108
+{ "tag": "const", "name": "_IO_LINE_BUF", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-apple-darwin9.h:596:18", "type": { "tag": ":int" } },
109
+{ "tag": "const", "name": "_IOS_ATEND", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-apple-darwin9.h:597:18", "type": { "tag": ":int" } },
110
+{ "tag": "const", "name": "_IO_ERR_SEEN", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-apple-darwin9.h:598:18", "type": { "tag": ":int" } },
111
+{ "tag": "const", "name": "_IOS_APPEND", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-apple-darwin9.h:599:18", "type": { "tag": ":int" } },
112
+{ "tag": "const", "name": "_IOS_BIN", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-apple-darwin9.h:600:18", "type": { "tag": ":int" } },
113
+{ "tag": "const", "name": "_IO_DELETE_DONT_CLOSE", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-apple-darwin9.h:601:18", "type": { "tag": ":int" } },
114
+{ "tag": "const", "name": "_IO_UNIFIED_JUMPTABLES", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-apple-darwin9.h:602:18", "type": { "tag": ":int" } },
115
+{ "tag": "const", "name": "_IOS_INPUT", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-apple-darwin9.h:603:18", "type": { "tag": ":int" } },
116
+{ "tag": "const", "name": "_IOS_OUTPUT", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-apple-darwin9.h:604:18", "type": { "tag": ":int" } },
117
+{ "tag": "const", "name": "_IOS_NOCREATE", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-apple-darwin9.h:605:18", "type": { "tag": ":int" } },
118
+{ "tag": "const", "name": "_IO_USER_BUF", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-apple-darwin9.h:606:18", "type": { "tag": ":int" } },
119
+{ "tag": "const", "name": "_IO_IS_FILEBUF", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-apple-darwin9.h:607:18", "type": { "tag": ":int" } },
120
+{ "tag": "const", "name": "_IOLBF", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-apple-darwin9.h:608:18", "type": { "tag": ":int" } },
121
+{ "tag": "const", "name": "_IO_IS_APPENDING", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-apple-darwin9.h:609:18", "type": { "tag": ":int" } },
122
+{ "tag": "const", "name": "_IOFBF", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-apple-darwin9.h:610:18", "type": { "tag": ":int" } },
123
+{ "tag": "const", "name": "_IO_TIED_PUT_GET", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-apple-darwin9.h:611:18", "type": { "tag": ":int" } },
124
+{ "tag": "const", "name": "_IO_MAGIC_MASK", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-apple-darwin9.h:612:18", "type": { "tag": ":int" } },
125
+{ "tag": "const", "name": "_IO_CURRENTLY_PUTTING", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-apple-darwin9.h:613:18", "type": { "tag": ":int" } },
126
+{ "tag": "const", "name": "P_tmpdir", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-apple-darwin9.h:614:13", "type": { "tag": ":pointer", "type": { "tag": ":char" } }, "value": "/tmp" },
127
+{ "tag": "const", "name": "_IO_FLAGS2_MMAP", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-apple-darwin9.h:615:18", "type": { "tag": ":int" } },
128
+{ "tag": "const", "name": "SEEK_END", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-apple-darwin9.h:616:18", "type": { "tag": ":int" } },
129
+{ "tag": "const", "name": "_IO_FLAGS2_NOTCANCEL", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-apple-darwin9.h:617:18", "type": { "tag": ":int" } },
130
+{ "tag": "const", "name": "_IO_BAD_SEEN", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-apple-darwin9.h:618:18", "type": { "tag": ":int" } },
131
+{ "tag": "const", "name": "SEEK_CUR", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-apple-darwin9.h:619:18", "type": { "tag": ":int" } },
132
+{ "tag": "const", "name": "_IO_USER_LOCK", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-apple-darwin9.h:620:18", "type": { "tag": ":int" } },
133
+{ "tag": "const", "name": "_IONBF", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-apple-darwin9.h:621:18", "type": { "tag": ":int" } },
134
+{ "tag": "const", "name": "_IO_LEFT", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-apple-darwin9.h:622:18", "type": { "tag": ":int" } },
135
+{ "tag": "const", "name": "_IO_INTERNAL", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-apple-darwin9.h:623:18", "type": { "tag": ":int" } },
136
+{ "tag": "const", "name": "_IO_RIGHT", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-apple-darwin9.h:624:18", "type": { "tag": ":int" } },
137
+{ "tag": "const", "name": "_IO_FLAGS2_USER_WBUF", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-apple-darwin9.h:625:18", "type": { "tag": ":int" } },
138
+{ "tag": "const", "name": "_IO_SKIPWS", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-apple-darwin9.h:626:18", "type": { "tag": ":int" } },
139
+{ "tag": "const", "name": "SEEK_SET", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-apple-darwin9.h:627:18", "type": { "tag": ":int" } },
140
+{ "tag": "const", "name": "_IO_HEX", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-apple-darwin9.h:628:18", "type": { "tag": ":int" } },
141
+{ "tag": "const", "name": "_IO_SHOWPOINT", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-apple-darwin9.h:629:18", "type": { "tag": ":int" } },
142
+{ "tag": "const", "name": "_IO_SHOWBASE", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-apple-darwin9.h:630:18", "type": { "tag": ":int" } },
143
+{ "tag": "const", "name": "_IO_DEC", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-apple-darwin9.h:631:18", "type": { "tag": ":int" } },
144
+{ "tag": "const", "name": "_IO_OCT", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-apple-darwin9.h:632:18", "type": { "tag": ":int" } },
145
+{ "tag": "const", "name": "_IO_FIXED", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-apple-darwin9.h:633:18", "type": { "tag": ":int" } },
146
+{ "tag": "const", "name": "_IO_SCIENTIFIC", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-apple-darwin9.h:634:18", "type": { "tag": ":int" } },
147
+{ "tag": "const", "name": "_IO_SHOWPOS", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-apple-darwin9.h:635:18", "type": { "tag": ":int" } },
148
+{ "tag": "const", "name": "_IO_UPPERCASE", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-apple-darwin9.h:636:18", "type": { "tag": ":int" } },
149
+{ "tag": "const", "name": "_IO_DONT_CLOSE", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-apple-darwin9.h:637:18", "type": { "tag": ":int" } },
150
+{ "tag": "const", "name": "_IO_BOOLALPHA", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-apple-darwin9.h:638:18", "type": { "tag": ":int" } },
151
+{ "tag": "const", "name": "_IO_STDIO", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-apple-darwin9.h:639:18", "type": { "tag": ":int" } },
152
+{ "tag": "const", "name": "_IO_UNITBUF", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-apple-darwin9.h:640:18", "type": { "tag": ":int" } },
153
+{ "tag": "const", "name": "__NFDBITS", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-apple-darwin9.h:641:18", "type": { "tag": ":int" } },
154
+{ "tag": "const", "name": "_SYS_TYPES_H", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-apple-darwin9.h:642:18", "type": { "tag": ":int" } },
155
+{ "tag": "const", "name": "_BITS_BYTESWAP_H", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-apple-darwin9.h:643:18", "type": { "tag": ":int" } },
156
+{ "tag": "const", "name": "_BITS_TYPES_H", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-apple-darwin9.h:644:18", "type": { "tag": ":int" } },
157
+{ "tag": "const", "name": "YAML_STR_TAG", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-apple-darwin9.h:645:13", "type": { "tag": ":pointer", "type": { "tag": ":char" } }, "value": "tag:yaml.org,2002:str" },
158
+{ "tag": "const", "name": "YAML_NULL_TAG", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-apple-darwin9.h:646:13", "type": { "tag": ":pointer", "type": { "tag": ":char" } }, "value": "tag:yaml.org,2002:null" },
159
+{ "tag": "const", "name": "YAML_BOOL_TAG", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-apple-darwin9.h:647:13", "type": { "tag": ":pointer", "type": { "tag": ":char" } }, "value": "tag:yaml.org,2002:bool" },
160
+{ "tag": "const", "name": "YAML_FLOAT_TAG", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-apple-darwin9.h:648:13", "type": { "tag": ":pointer", "type": { "tag": ":char" } }, "value": "tag:yaml.org,2002:float" },
161
+{ "tag": "const", "name": "YAML_INT_TAG", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-apple-darwin9.h:649:13", "type": { "tag": ":pointer", "type": { "tag": ":char" } }, "value": "tag:yaml.org,2002:int" },
162
+{ "tag": "const", "name": "YAML_SEQ_TAG", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-apple-darwin9.h:650:13", "type": { "tag": ":pointer", "type": { "tag": ":char" } }, "value": "tag:yaml.org,2002:seq" },
163
+{ "tag": "const", "name": "YAML_TIMESTAMP_TAG", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-apple-darwin9.h:651:13", "type": { "tag": ":pointer", "type": { "tag": ":char" } }, "value": "tag:yaml.org,2002:timestamp" },
164
+{ "tag": "const", "name": "YAML_MAP_TAG", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-apple-darwin9.h:652:13", "type": { "tag": ":pointer", "type": { "tag": ":char" } }, "value": "tag:yaml.org,2002:map" }
165
+]
0 166
new file mode 100755
... ...
@@ -0,0 +1,515 @@
1
+[
2
+{ "tag": "typedef", "name": "size_t", "location": "/usr/include/stddef.h:213:23", "type": { "tag": ":unsigned-long" } },
3
+{ "tag": "typedef", "name": "wchar_t", "location": "/usr/include/stddef.h:325:24", "type": { "tag": ":int" } },
4
+{ "tag": "typedef", "name": "__u_char", "location": "/usr/include/bits/types.h:30:23", "type": { "tag": ":unsigned-char" } },
5
+{ "tag": "typedef", "name": "__u_short", "location": "/usr/include/bits/types.h:31:28", "type": { "tag": ":unsigned-short" } },
6
+{ "tag": "typedef", "name": "__u_int", "location": "/usr/include/bits/types.h:32:22", "type": { "tag": ":unsigned-int" } },
7
+{ "tag": "typedef", "name": "__u_long", "location": "/usr/include/bits/types.h:33:27", "type": { "tag": ":unsigned-long" } },
8
+{ "tag": "typedef", "name": "__int8_t", "location": "/usr/include/bits/types.h:36:21", "type": { "tag": ":signed-char" } },
9
+{ "tag": "typedef", "name": "__uint8_t", "location": "/usr/include/bits/types.h:37:23", "type": { "tag": ":unsigned-char" } },
10
+{ "tag": "typedef", "name": "__int16_t", "location": "/usr/include/bits/types.h:38:26", "type": { "tag": ":short" } },
11
+{ "tag": "typedef", "name": "__uint16_t", "location": "/usr/include/bits/types.h:39:28", "type": { "tag": ":unsigned-short" } },
12
+{ "tag": "typedef", "name": "__int32_t", "location": "/usr/include/bits/types.h:40:20", "type": { "tag": ":int" } },
13
+{ "tag": "typedef", "name": "__uint32_t", "location": "/usr/include/bits/types.h:41:22", "type": { "tag": ":unsigned-int" } },
14
+{ "tag": "typedef", "name": "__int64_t", "location": "/usr/include/bits/types.h:46:44", "type": { "tag": ":long-long" } },
15
+{ "tag": "typedef", "name": "__uint64_t", "location": "/usr/include/bits/types.h:47:46", "type": { "tag": ":unsigned-long-long" } },
16
+{ "tag": "typedef", "name": "__quad_t", "location": "/usr/include/bits/types.h:55:37", "type": { "tag": ":long-long" } },
17
+{ "tag": "typedef", "name": "__u_quad_t", "location": "/usr/include/bits/types.h:56:46", "type": { "tag": ":unsigned-long-long" } },
18
+{ "tag": "typedef", "name": "__dev_t", "location": "/usr/include/bits/types.h:133:25", "type": { "tag": "__u_quad_t" } },
19
+{ "tag": "typedef", "name": "__uid_t", "location": "/usr/include/bits/types.h:134:25", "type": { "tag": ":unsigned-int" } },
20
+{ "tag": "typedef", "name": "__gid_t", "location": "/usr/include/bits/types.h:135:25", "type": { "tag": ":unsigned-int" } },
21
+{ "tag": "typedef", "name": "__ino_t", "location": "/usr/include/bits/types.h:136:25", "type": { "tag": ":unsigned-long" } },
22
+{ "tag": "typedef", "name": "__ino64_t", "location": "/usr/include/bits/types.h:137:27", "type": { "tag": "__u_quad_t" } },
23
+{ "tag": "typedef", "name": "__mode_t", "location": "/usr/include/bits/types.h:138:26", "type": { "tag": ":unsigned-int" } },
24
+{ "tag": "typedef", "name": "__nlink_t", "location": "/usr/include/bits/types.h:139:27", "type": { "tag": ":unsigned-int" } },
25
+{ "tag": "typedef", "name": "__off_t", "location": "/usr/include/bits/types.h:140:25", "type": { "tag": ":long" } },
26
+{ "tag": "typedef", "name": "__off64_t", "location": "/usr/include/bits/types.h:141:27", "type": { "tag": "__quad_t" } },
27
+{ "tag": "typedef", "name": "__pid_t", "location": "/usr/include/bits/types.h:142:25", "type": { "tag": ":int" } },
28
+{ "tag": "typedef", "name": "__fsid_t", "location": "/usr/include/bits/types.h:143:26", "type": { "tag": "struct", "name": "", "id": 1, "location": "/usr/include/bits/types.h:143:12 <Spelling=/usr/include/bits/typesizes.h:72:24>", "bit-size": 64, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "__val", "bit-offset": 0, "bit-size": 64, "bit-alignment": 32, "type": { "tag": ":array", "type": { "tag": ":int" }, "size": 2 } }] } },
29
+{ "tag": "typedef", "name": "__clock_t", "location": "/usr/include/bits/types.h:144:27", "type": { "tag": ":long" } },
30
+{ "tag": "typedef", "name": "__rlim_t", "location": "/usr/include/bits/types.h:145:26", "type": { "tag": ":unsigned-long" } },
31
+{ "tag": "typedef", "name": "__rlim64_t", "location": "/usr/include/bits/types.h:146:28", "type": { "tag": "__u_quad_t" } },
32
+{ "tag": "typedef", "name": "__id_t", "location": "/usr/include/bits/types.h:147:24", "type": { "tag": ":unsigned-int" } },
33
+{ "tag": "typedef", "name": "__time_t", "location": "/usr/include/bits/types.h:148:26", "type": { "tag": ":long" } },
34
+{ "tag": "typedef", "name": "__useconds_t", "location": "/usr/include/bits/types.h:149:30", "type": { "tag": ":unsigned-int" } },
35
+{ "tag": "typedef", "name": "__suseconds_t", "location": "/usr/include/bits/types.h:150:31", "type": { "tag": ":long" } },
36
+{ "tag": "typedef", "name": "__daddr_t", "location": "/usr/include/bits/types.h:152:27", "type": { "tag": ":int" } },
37
+{ "tag": "typedef", "name": "__key_t", "location": "/usr/include/bits/types.h:153:25", "type": { "tag": ":int" } },
38
+{ "tag": "typedef", "name": "__clockid_t", "location": "/usr/include/bits/types.h:156:29", "type": { "tag": ":int" } },
39
+{ "tag": "typedef", "name": "__timer_t", "location": "/usr/include/bits/types.h:159:27", "type": { "tag": ":pointer", "type": { "tag": ":void" } } },
40
+{ "tag": "typedef", "name": "__blksize_t", "location": "/usr/include/bits/types.h:162:29", "type": { "tag": ":long" } },
41
+{ "tag": "typedef", "name": "__blkcnt_t", "location": "/usr/include/bits/types.h:167:28", "type": { "tag": ":long" } },
42
+{ "tag": "typedef", "name": "__blkcnt64_t", "location": "/usr/include/bits/types.h:168:30", "type": { "tag": "__quad_t" } },
43
+{ "tag": "typedef", "name": "__fsblkcnt_t", "location": "/usr/include/bits/types.h:171:30", "type": { "tag": ":unsigned-long" } },
44
+{ "tag": "typedef", "name": "__fsblkcnt64_t", "location": "/usr/include/bits/types.h:172:32", "type": { "tag": "__u_quad_t" } },
45
+{ "tag": "typedef", "name": "__fsfilcnt_t", "location": "/usr/include/bits/types.h:175:30", "type": { "tag": ":unsigned-long" } },
46
+{ "tag": "typedef", "name": "__fsfilcnt64_t", "location": "/usr/include/bits/types.h:176:32", "type": { "tag": "__u_quad_t" } },
47
+{ "tag": "typedef", "name": "__fsword_t", "location": "/usr/include/bits/types.h:179:28", "type": { "tag": ":int" } },
48
+{ "tag": "typedef", "name": "__ssize_t", "location": "/usr/include/bits/types.h:181:27", "type": { "tag": ":int" } },
49
+{ "tag": "typedef", "name": "__syscall_slong_t", "location": "/usr/include/bits/types.h:184:33", "type": { "tag": ":long" } },
50
+{ "tag": "typedef", "name": "__syscall_ulong_t", "location": "/usr/include/bits/types.h:186:33", "type": { "tag": ":unsigned-long" } },
51
+{ "tag": "typedef", "name": "__loff_t", "location": "/usr/include/bits/types.h:190:19", "type": { "tag": "__off64_t" } },
52
+{ "tag": "typedef", "name": "__qaddr_t", "location": "/usr/include/bits/types.h:191:19", "type": { "tag": ":pointer", "type": { "tag": "__quad_t" } } },
53
+{ "tag": "typedef", "name": "__caddr_t", "location": "/usr/include/bits/types.h:192:15", "type": { "tag": ":pointer", "type": { "tag": ":char" } } },
54
+{ "tag": "typedef", "name": "__intptr_t", "location": "/usr/include/bits/types.h:195:25", "type": { "tag": ":int" } },
55
+{ "tag": "typedef", "name": "__socklen_t", "location": "/usr/include/bits/types.h:198:23", "type": { "tag": ":unsigned-int" } },
56
+{ "tag": "union", "name": "wait", "id": 0, "location": "/usr/include/bits/waitstatus.h:66:7", "bit-size": 32, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "w_status", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "__wait_terminated", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "struct", "name": "", "id": 2, "location": "/usr/include/bits/waitstatus.h:69:5", "bit-size": 32, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "__w_termsig", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":bitfield", "width": 7, "type": { "tag": ":unsigned-int" } } }, { "tag": "field", "name": "__w_coredump", "bit-offset": 7, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":bitfield", "width": 1, "type": { "tag": ":unsigned-int" } } }, { "tag": "field", "name": "__w_retcode", "bit-offset": 8, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":bitfield", "width": 8, "type": { "tag": ":unsigned-int" } } }, { "tag": "field", "name": "", "bit-offset": 16, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":bitfield", "width": 16, "type": { "tag": ":unsigned-int" } } }] } }, { "tag": "field", "name": "__wait_stopped", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "struct", "name": "", "id": 3, "location": "/usr/include/bits/waitstatus.h:84:5", "bit-size": 32, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "__w_stopval", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":bitfield", "width": 8, "type": { "tag": ":unsigned-int" } } }, { "tag": "field", "name": "__w_stopsig", "bit-offset": 8, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":bitfield", "width": 8, "type": { "tag": ":unsigned-int" } } }, { "tag": "field", "name": "", "bit-offset": 16, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":bitfield", "width": 16, "type": { "tag": ":unsigned-int" } } }] } }] },
57
+{ "tag": "typedef", "name": "__WAIT_STATUS", "location": "/usr/include/stdlib.h:71:5", "type": { "tag": "union", "name": "", "id": 4, "location": "/usr/include/stdlib.h:67:9", "bit-size": 32, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "__uptr", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": ":union", "name": "wait", "id": 0 } } }, { "tag": "field", "name": "__iptr", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": ":int" } } }] } },
58
+{ "tag": "typedef", "name": "div_t", "location": "/usr/include/stdlib.h:101:5", "type": { "tag": "struct", "name": "", "id": 5, "location": "/usr/include/stdlib.h:97:9", "bit-size": 64, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "quot", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "rem", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }] } },
59
+{ "tag": "typedef", "name": "ldiv_t", "location": "/usr/include/stdlib.h:109:5", "type": { "tag": "struct", "name": "", "id": 6, "location": "/usr/include/stdlib.h:105:9", "bit-size": 64, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "quot", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":long" } }, { "tag": "field", "name": "rem", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":long" } }] } },
60
+{ "tag": "typedef", "name": "lldiv_t", "location": "/usr/include/stdlib.h:121:5", "type": { "tag": "struct", "name": "", "id": 7, "location": "/usr/include/stdlib.h:117:23", "bit-size": 128, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "quot", "bit-offset": 0, "bit-size": 64, "bit-alignment": 32, "type": { "tag": ":long-long" } }, { "tag": "field", "name": "rem", "bit-offset": 64, "bit-size": 64, "bit-alignment": 32, "type": { "tag": ":long-long" } }] } },
61
+{ "tag": "function", "name": "__ctype_get_mb_cur_max", "location": "/usr/include/stdlib.h:139:15", "variadic": false, "parameters": [], "return-type": { "tag": "size_t" } },
62
+{ "tag": "function", "name": "atof", "location": "/usr/include/stdlib.h:144:15", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__nptr", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":double" } },
63
+{ "tag": "function", "name": "atoi", "location": "/usr/include/stdlib.h:147:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__nptr", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":int" } },
64
+{ "tag": "function", "name": "atol", "location": "/usr/include/stdlib.h:150:17", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__nptr", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":long" } },
65
+{ "tag": "function", "name": "atoll", "location": "/usr/include/stdlib.h:157:36", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__nptr", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":long-long" } },
66
+{ "tag": "function", "name": "strtod", "location": "/usr/include/stdlib.h:164:15", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__nptr", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__endptr", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char" } } } }], "return-type": { "tag": ":double" } },
67
+{ "tag": "function", "name": "strtof", "location": "/usr/include/stdlib.h:172:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__nptr", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__endptr", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char" } } } }], "return-type": { "tag": ":float" } },
68
+{ "tag": "function", "name": "strtold", "location": "/usr/include/stdlib.h:175:20", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__nptr", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__endptr", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char" } } } }], "return-type": { "tag": ":long-double" } },
69
+{ "tag": "function", "name": "strtol", "location": "/usr/include/stdlib.h:183:17", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__nptr", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__endptr", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char" } } } }, { "tag": "parameter", "name": "__base", "type": { "tag": ":int" } }], "return-type": { "tag": ":long" } },
70
+{ "tag": "function", "name": "strtoul", "location": "/usr/include/stdlib.h:187:26", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__nptr", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__endptr", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char" } } } }, { "tag": "parameter", "name": "__base", "type": { "tag": ":int" } }], "return-type": { "tag": ":unsigned-long" } },
71
+{ "tag": "function", "name": "strtoq", "location": "/usr/include/stdlib.h:195:22", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__nptr", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__endptr", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char" } } } }, { "tag": "parameter", "name": "__base", "type": { "tag": ":int" } }], "return-type": { "tag": ":long-long" } },
72
+{ "tag": "function", "name": "strtouq", "location": "/usr/include/stdlib.h:200:31", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__nptr", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__endptr", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char" } } } }, { "tag": "parameter", "name": "__base", "type": { "tag": ":int" } }], "return-type": { "tag": ":unsigned-long-long" } },
73
+{ "tag": "function", "name": "strtoll", "location": "/usr/include/stdlib.h:209:22", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__nptr", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__endptr", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char" } } } }, { "tag": "parameter", "name": "__base", "type": { "tag": ":int" } }], "return-type": { "tag": ":long-long" } },
74
+{ "tag": "function", "name": "strtoull", "location": "/usr/include/stdlib.h:214:31", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__nptr", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__endptr", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char" } } } }, { "tag": "parameter", "name": "__base", "type": { "tag": ":int" } }], "return-type": { "tag": ":unsigned-long-long" } },
75
+{ "tag": "function", "name": "l64a", "location": "/usr/include/stdlib.h:305:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__n", "type": { "tag": ":long" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
76
+{ "tag": "function", "name": "a64l", "location": "/usr/include/stdlib.h:308:17", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":long" } },
77
+{ "tag": "typedef", "name": "u_char", "location": "/usr/include/sys/types.h:33:18", "type": { "tag": "__u_char" } },
78
+{ "tag": "typedef", "name": "u_short", "location": "/usr/include/sys/types.h:34:19", "type": { "tag": "__u_short" } },
79
+{ "tag": "typedef", "name": "u_int", "location": "/usr/include/sys/types.h:35:17", "type": { "tag": "__u_int" } },
80
+{ "tag": "typedef", "name": "u_long", "location": "/usr/include/sys/types.h:36:18", "type": { "tag": "__u_long" } },
81
+{ "tag": "typedef", "name": "quad_t", "location": "/usr/include/sys/types.h:37:18", "type": { "tag": "__quad_t" } },
82
+{ "tag": "typedef", "name": "u_quad_t", "location": "/usr/include/sys/types.h:38:20", "type": { "tag": "__u_quad_t" } },
83
+{ "tag": "typedef", "name": "fsid_t", "location": "/usr/include/sys/types.h:39:18", "type": { "tag": "__fsid_t" } },
84
+{ "tag": "typedef", "name": "loff_t", "location": "/usr/include/sys/types.h:44:18", "type": { "tag": "__loff_t" } },
85
+{ "tag": "typedef", "name": "ino_t", "location": "/usr/include/sys/types.h:48:17", "type": { "tag": "__ino_t" } },
86
+{ "tag": "typedef", "name": "dev_t", "location": "/usr/include/sys/types.h:60:17", "type": { "tag": "__dev_t" } },
87
+{ "tag": "typedef", "name": "gid_t", "location": "/usr/include/sys/types.h:65:17", "type": { "tag": "__gid_t" } },
88
+{ "tag": "typedef", "name": "mode_t", "location": "/usr/include/sys/types.h:70:18", "type": { "tag": "__mode_t" } },
89
+{ "tag": "typedef", "name": "nlink_t", "location": "/usr/include/sys/types.h:75:19", "type": { "tag": "__nlink_t" } },
90
+{ "tag": "typedef", "name": "uid_t", "location": "/usr/include/sys/types.h:80:17", "type": { "tag": "__uid_t" } },
91
+{ "tag": "typedef", "name": "off_t", "location": "/usr/include/sys/types.h:86:17", "type": { "tag": "__off_t" } },
92
+{ "tag": "typedef", "name": "pid_t", "location": "/usr/include/sys/types.h:98:17", "type": { "tag": "__pid_t" } },
93
+{ "tag": "typedef", "name": "id_t", "location": "/usr/include/sys/types.h:104:16", "type": { "tag": "__id_t" } },
94
+{ "tag": "typedef", "name": "ssize_t", "location": "/usr/include/sys/types.h:109:19", "type": { "tag": "__ssize_t" } },
95
+{ "tag": "typedef", "name": "daddr_t", "location": "/usr/include/sys/types.h:115:19", "type": { "tag": "__daddr_t" } },
96
+{ "tag": "typedef", "name": "caddr_t", "location": "/usr/include/sys/types.h:116:19", "type": { "tag": "__caddr_t" } },
97
+{ "tag": "typedef", "name": "key_t", "location": "/usr/include/sys/types.h:122:17", "type": { "tag": "__key_t" } },
98
+{ "tag": "typedef", "name": "clock_t", "location": "/usr/include/time.h:59:19", "type": { "tag": "__clock_t" } },
99
+{ "tag": "typedef", "name": "time_t", "location": "/usr/include/time.h:75:18", "type": { "tag": "__time_t" } },
100
+{ "tag": "typedef", "name": "clockid_t", "location": "/usr/include/time.h:91:21", "type": { "tag": "__clockid_t" } },
101
+{ "tag": "typedef", "name": "timer_t", "location": "/usr/include/time.h:103:19", "type": { "tag": "__timer_t" } },
102
+{ "tag": "typedef", "name": "ulong", "location": "/usr/include/sys/types.h:150:27", "type": { "tag": ":unsigned-long" } },
103
+{ "tag": "typedef", "name": "ushort", "location": "/usr/include/sys/types.h:151:28", "type": { "tag": ":unsigned-short" } },
104
+{ "tag": "typedef", "name": "uint", "location": "/usr/include/sys/types.h:152:22", "type": { "tag": ":unsigned-int" } },
105
+{ "tag": "typedef", "name": "int8_t", "location": "/usr/include/sys/types.h:194:1 <Spelling=<scratch space>:3:1>", "type": { "tag": ":int" } },
106
+{ "tag": "typedef", "name": "int16_t", "location": "/usr/include/sys/types.h:195:1 <Spelling=<scratch space>:3:1>", "type": { "tag": ":int" } },
107
+{ "tag": "typedef", "name": "int32_t", "location": "/usr/include/sys/types.h:196:1 <Spelling=<scratch space>:3:1>", "type": { "tag": ":int" } },
108
+{ "tag": "typedef", "name": "int64_t", "location": "/usr/include/sys/types.h:197:1 <Spelling=<scratch space>:3:1>", "type": { "tag": ":int" } },
109
+{ "tag": "typedef", "name": "u_int8_t", "location": "/usr/include/sys/types.h:200:1 <Spelling=<scratch space>:3:1>", "type": { "tag": ":unsigned-int" } },
110
+{ "tag": "typedef", "name": "u_int16_t", "location": "/usr/include/sys/types.h:201:1 <Spelling=<scratch space>:3:1>", "type": { "tag": ":unsigned-int" } },
111
+{ "tag": "typedef", "name": "u_int32_t", "location": "/usr/include/sys/types.h:202:1 <Spelling=<scratch space>:3:1>", "type": { "tag": ":unsigned-int" } },
112
+{ "tag": "typedef", "name": "u_int64_t", "location": "/usr/include/sys/types.h:203:1 <Spelling=<scratch space>:3:1>", "type": { "tag": ":unsigned-int" } },
113
+{ "tag": "typedef", "name": "register_t", "location": "/usr/include/sys/types.h:205:13", "type": { "tag": ":int" } },
114
+{ "tag": "typedef", "name": "__sig_atomic_t", "location": "/usr/include/bits/sigset.h:23:13", "type": { "tag": ":int" } },
115
+{ "tag": "typedef", "name": "__sigset_t", "location": "/usr/include/bits/sigset.h:31:5", "type": { "tag": "struct", "name": "", "id": 8, "location": "/usr/include/bits/sigset.h:28:9", "bit-size": 1024, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "__val", "bit-offset": 0, "bit-size": 1024, "bit-alignment": 32, "type": { "tag": ":array", "type": { "tag": ":unsigned-long" }, "size": 32 } }] } },
116
+{ "tag": "typedef", "name": "sigset_t", "location": "/usr/include/sys/select.h:37:20", "type": { "tag": "__sigset_t" } },
117
+{ "tag": "struct", "name": "timespec", "id": 0, "location": "/usr/include/time.h:120:8", "bit-size": 64, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "tv_sec", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "__time_t" } }, { "tag": "field", "name": "tv_nsec", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "__syscall_slong_t" } }] },
118
+{ "tag": "struct", "name": "timeval", "id": 0, "location": "/usr/include/bits/time.h:30:8", "bit-size": 64, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "tv_sec", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "__time_t" } }, { "tag": "field", "name": "tv_usec", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "__suseconds_t" } }] },
119
+{ "tag": "typedef", "name": "suseconds_t", "location": "/usr/include/sys/select.h:48:23", "type": { "tag": "__suseconds_t" } },
120
+{ "tag": "typedef", "name": "__fd_mask", "location": "/usr/include/sys/select.h:54:18", "type": { "tag": ":long" } },
121
+{ "tag": "typedef", "name": "fd_set", "location": "/usr/include/sys/select.h:75:5", "type": { "tag": "struct", "name": "", "id": 9, "location": "/usr/include/sys/select.h:64:9", "bit-size": 1024, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "__fds_bits", "bit-offset": 0, "bit-size": 1024, "bit-alignment": 32, "type": { "tag": ":array", "type": { "tag": "__fd_mask" }, "size": 32 } }] } },
122
+{ "tag": "typedef", "name": "fd_mask", "location": "/usr/include/sys/select.h:82:19", "type": { "tag": "__fd_mask" } },
123
+{ "tag": "function", "name": "select", "location": "/usr/include/sys/select.h:106:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__nfds", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__readfds", "type": { "tag": ":pointer", "type": { "tag": "fd_set" } } }, { "tag": "parameter", "name": "__writefds", "type": { "tag": ":pointer", "type": { "tag": "fd_set" } } }, { "tag": "parameter", "name": "__exceptfds", "type": { "tag": ":pointer", "type": { "tag": "fd_set" } } }, { "tag": "parameter", "name": "__timeout", "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "timeval", "id": 0 } } }], "return-type": { "tag": ":int" } },
124
+{ "tag": "function", "name": "pselect", "location": "/usr/include/sys/select.h:118:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__nfds", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__readfds", "type": { "tag": ":pointer", "type": { "tag": "fd_set" } } }, { "tag": "parameter", "name": "__writefds", "type": { "tag": ":pointer", "type": { "tag": "fd_set" } } }, { "tag": "parameter", "name": "__exceptfds", "type": { "tag": ":pointer", "type": { "tag": "fd_set" } } }, { "tag": "parameter", "name": "__timeout", "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "timespec", "id": 0 } } }, { "tag": "parameter", "name": "__sigmask", "type": { "tag": ":pointer", "type": { "tag": "__sigset_t" } } }], "return-type": { "tag": ":int" } },
125
+{ "tag": "function", "name": "gnu_dev_major", "location": "/usr/include/sys/sysmacros.h:32:21", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__dev", "type": { "tag": ":unsigned-long-long" } }], "return-type": { "tag": ":unsigned-int" } },
126
+{ "tag": "function", "name": "gnu_dev_minor", "location": "/usr/include/sys/sysmacros.h:35:21", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__dev", "type": { "tag": ":unsigned-long-long" } }], "return-type": { "tag": ":unsigned-int" } },
127
+{ "tag": "function", "name": "gnu_dev_makedev", "location": "/usr/include/sys/sysmacros.h:38:31", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__major", "type": { "tag": ":unsigned-int" } }, { "tag": "parameter", "name": "__minor", "type": { "tag": ":unsigned-int" } }], "return-type": { "tag": ":unsigned-long-long" } },
128
+{ "tag": "typedef", "name": "blksize_t", "location": "/usr/include/sys/types.h:228:21", "type": { "tag": "__blksize_t" } },
129
+{ "tag": "typedef", "name": "blkcnt_t", "location": "/usr/include/sys/types.h:235:20", "type": { "tag": "__blkcnt_t" } },
130
+{ "tag": "typedef", "name": "fsblkcnt_t", "location": "/usr/include/sys/types.h:239:22", "type": { "tag": "__fsblkcnt_t" } },
131
+{ "tag": "typedef", "name": "fsfilcnt_t", "location": "/usr/include/sys/types.h:243:22", "type": { "tag": "__fsfilcnt_t" } },
132
+{ "tag": "typedef", "name": "pthread_t", "location": "/usr/include/bits/pthreadtypes.h:60:27", "type": { "tag": ":unsigned-long" } },
133
+{ "tag": "union", "name": "pthread_attr_t", "id": 0, "location": "/usr/include/bits/pthreadtypes.h:63:7", "bit-size": 288, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "__size", "bit-offset": 0, "bit-size": 288, "bit-alignment": 8, "type": { "tag": ":array", "type": { "tag": ":char" }, "size": 36 } }, { "tag": "field", "name": "__align", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":long" } }] },
134
+{ "tag": "typedef", "name": "pthread_attr_t", "location": "/usr/include/bits/pthreadtypes.h:69:30", "type": { "tag": ":union", "name": "pthread_attr_t", "id": 0 } },
135
+{ "tag": "struct", "name": "__pthread_internal_slist", "id": 0, "location": "/usr/include/bits/pthreadtypes.h:81:16", "bit-size": 32, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "__next", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "__pthread_internal_slist", "id": 0 } } }] },
136
+{ "tag": "typedef", "name": "__pthread_slist_t", "location": "/usr/include/bits/pthreadtypes.h:84:3", "type": { "tag": ":struct", "name": "__pthread_internal_slist", "id": 0 } },
137
+{ "tag": "typedef", "name": "pthread_mutex_t", "location": "/usr/include/bits/pthreadtypes.h:118:3", "type": { "tag": "union", "name": "", "id": 10, "location": "/usr/include/bits/pthreadtypes.h:90:9", "bit-size": 192, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "__data", "bit-offset": 0, "bit-size": 192, "bit-alignment": 32, "type": { "tag": "struct", "name": "__pthread_mutex_s", "id": 0, "location": "/usr/include/bits/pthreadtypes.h:92:10", "bit-size": 192, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "__lock", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "__count", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":unsigned-int" } }, { "tag": "field", "name": "__owner", "bit-offset": 64, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "__kind", "bit-offset": 96, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "__nusers", "bit-offset": 128, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":unsigned-int" } }, { "tag": "field", "name": "", "bit-offset": 160, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "union", "name": "", "id": 11, "location": "/usr/include/bits/pthreadtypes.h:109:19", "bit-size": 32, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "__spins", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "__list", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "__pthread_slist_t" } }] } }] } }, { "tag": "field", "name": "__size", "bit-offset": 0, "bit-size": 192, "bit-alignment": 8, "type": { "tag": ":array", "type": { "tag": ":char" }, "size": 24 } }, { "tag": "field", "name": "__align", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":long" } }] } },
138
+{ "tag": "typedef", "name": "pthread_mutexattr_t", "location": "/usr/include/bits/pthreadtypes.h:124:3", "type": { "tag": "union", "name": "", "id": 12, "location": "/usr/include/bits/pthreadtypes.h:120:9", "bit-size": 32, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "__size", "bit-offset": 0, "bit-size": 32, "bit-alignment": 8, "type": { "tag": ":array", "type": { "tag": ":char" }, "size": 4 } }, { "tag": "field", "name": "__align", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }] } },
139
+{ "tag": "typedef", "name": "pthread_cond_t", "location": "/usr/include/bits/pthreadtypes.h:144:3", "type": { "tag": "union", "name": "", "id": 13, "location": "/usr/include/bits/pthreadtypes.h:129:9", "bit-size": 384, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "__data", "bit-offset": 0, "bit-size": 352, "bit-alignment": 32, "type": { "tag": "struct", "name": "", "id": 14, "location": "/usr/include/bits/pthreadtypes.h:131:3", "bit-size": 352, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "__lock", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "__futex", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":unsigned-int" } }, { "tag": "field", "name": "__total_seq", "bit-offset": 64, "bit-size": 64, "bit-alignment": 32, "type": { "tag": ":unsigned-long-long" } }, { "tag": "field", "name": "__wakeup_seq", "bit-offset": 128, "bit-size": 64, "bit-alignment": 32, "type": { "tag": ":unsigned-long-long" } }, { "tag": "field", "name": "__woken_seq", "bit-offset": 192, "bit-size": 64, "bit-alignment": 32, "type": { "tag": ":unsigned-long-long" } }, { "tag": "field", "name": "__mutex", "bit-offset": 256, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "field", "name": "__nwaiters", "bit-offset": 288, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":unsigned-int" } }, { "tag": "field", "name": "__broadcast_seq", "bit-offset": 320, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":unsigned-int" } }] } }, { "tag": "field", "name": "__size", "bit-offset": 0, "bit-size": 384, "bit-alignment": 8, "type": { "tag": ":array", "type": { "tag": ":char" }, "size": 48 } }, { "tag": "field", "name": "__align", "bit-offset": 0, "bit-size": 64, "bit-alignment": 32, "type": { "tag": ":long-long" } }] } },
140
+{ "tag": "typedef", "name": "pthread_condattr_t", "location": "/usr/include/bits/pthreadtypes.h:150:3", "type": { "tag": "union", "name": "", "id": 15, "location": "/usr/include/bits/pthreadtypes.h:146:9", "bit-size": 32, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "__size", "bit-offset": 0, "bit-size": 32, "bit-alignment": 8, "type": { "tag": ":array", "type": { "tag": ":char" }, "size": 4 } }, { "tag": "field", "name": "__align", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }] } },
141
+{ "tag": "typedef", "name": "pthread_key_t", "location": "/usr/include/bits/pthreadtypes.h:154:22", "type": { "tag": ":unsigned-int" } },
142
+{ "tag": "typedef", "name": "pthread_once_t", "location": "/usr/include/bits/pthreadtypes.h:158:13", "type": { "tag": ":int" } },
143
+{ "tag": "typedef", "name": "pthread_rwlock_t", "location": "/usr/include/bits/pthreadtypes.h:204:3", "type": { "tag": "union", "name": "", "id": 16, "location": "/usr/include/bits/pthreadtypes.h:164:9", "bit-size": 256, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "__data", "bit-offset": 0, "bit-size": 256, "bit-alignment": 32, "type": { "tag": "struct", "name": "", "id": 17, "location": "/usr/include/bits/pthreadtypes.h:185:3", "bit-size": 256, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "__lock", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "__nr_readers", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":unsigned-int" } }, { "tag": "field", "name": "__readers_wakeup", "bit-offset": 64, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":unsigned-int" } }, { "tag": "field", "name": "__writer_wakeup", "bit-offset": 96, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":unsigned-int" } }, { "tag": "field", "name": "__nr_readers_queued", "bit-offset": 128, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":unsigned-int" } }, { "tag": "field", "name": "__nr_writers_queued", "bit-offset": 160, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":unsigned-int" } }, { "tag": "field", "name": "__flags", "bit-offset": 192, "bit-size": 8, "bit-alignment": 8, "type": { "tag": ":unsigned-char" } }, { "tag": "field", "name": "__shared", "bit-offset": 200, "bit-size": 8, "bit-alignment": 8, "type": { "tag": ":unsigned-char" } }, { "tag": "field", "name": "__pad1", "bit-offset": 208, "bit-size": 8, "bit-alignment": 8, "type": { "tag": ":unsigned-char" } }, { "tag": "field", "name": "__pad2", "bit-offset": 216, "bit-size": 8, "bit-alignment": 8, "type": { "tag": ":unsigned-char" } }, { "tag": "field", "name": "__writer", "bit-offset": 224, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }] } }, { "tag": "field", "name": "__size", "bit-offset": 0, "bit-size": 256, "bit-alignment": 8, "type": { "tag": ":array", "type": { "tag": ":char" }, "size": 32 } }, { "tag": "field", "name": "__align", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":long" } }] } },
144
+{ "tag": "typedef", "name": "pthread_rwlockattr_t", "location": "/usr/include/bits/pthreadtypes.h:210:3", "type": { "tag": "union", "name": "", "id": 18, "location": "/usr/include/bits/pthreadtypes.h:206:9", "bit-size": 64, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "__size", "bit-offset": 0, "bit-size": 64, "bit-alignment": 8, "type": { "tag": ":array", "type": { "tag": ":char" }, "size": 8 } }, { "tag": "field", "name": "__align", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":long" } }] } },
145
+{ "tag": "typedef", "name": "pthread_spinlock_t", "location": "/usr/include/bits/pthreadtypes.h:216:22", "type": { "tag": ":int" } },
146
+{ "tag": "typedef", "name": "pthread_barrier_t", "location": "/usr/include/bits/pthreadtypes.h:225:3", "type": { "tag": "union", "name": "", "id": 19, "location": "/usr/include/bits/pthreadtypes.h:221:9", "bit-size": 160, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "__size", "bit-offset": 0, "bit-size": 160, "bit-alignment": 8, "type": { "tag": ":array", "type": { "tag": ":char" }, "size": 20 } }, { "tag": "field", "name": "__align", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":long" } }] } },
147
+{ "tag": "typedef", "name": "pthread_barrierattr_t", "location": "/usr/include/bits/pthreadtypes.h:231:3", "type": { "tag": "union", "name": "", "id": 20, "location": "/usr/include/bits/pthreadtypes.h:227:9", "bit-size": 32, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "__size", "bit-offset": 0, "bit-size": 32, "bit-alignment": 8, "type": { "tag": ":array", "type": { "tag": ":char" }, "size": 4 } }, { "tag": "field", "name": "__align", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }] } },
148
+{ "tag": "function", "name": "random", "location": "/usr/include/stdlib.h:321:17", "variadic": false, "parameters": [], "return-type": { "tag": ":long" } },
149
+{ "tag": "function", "name": "srandom", "location": "/usr/include/stdlib.h:324:13", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__seed", "type": { "tag": ":unsigned-int" } }], "return-type": { "tag": ":void" } },
150
+{ "tag": "function", "name": "initstate", "location": "/usr/include/stdlib.h:330:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__seed", "type": { "tag": ":unsigned-int" } }, { "tag": "parameter", "name": "__statebuf", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__statelen", "type": { "tag": "size_t" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
151
+{ "tag": "function", "name": "setstate", "location": "/usr/include/stdlib.h:335:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__statebuf", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
152
+{ "tag": "struct", "name": "random_data", "id": 0, "location": "/usr/include/stdlib.h:343:8", "bit-size": 224, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "fptr", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "int32_t" } } }, { "tag": "field", "name": "rptr", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "int32_t" } } }, { "tag": "field", "name": "state", "bit-offset": 64, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "int32_t" } } }, { "tag": "field", "name": "rand_type", "bit-offset": 96, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "rand_deg", "bit-offset": 128, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "rand_sep", "bit-offset": 160, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "end_ptr", "bit-offset": 192, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "int32_t" } } }] },
153
+{ "tag": "function", "name": "random_r", "location": "/usr/include/stdlib.h:354:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__buf", "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "random_data", "id": 0 } } }, { "tag": "parameter", "name": "__result", "type": { "tag": ":pointer", "type": { "tag": "int32_t" } } }], "return-type": { "tag": ":int" } },
154
+{ "tag": "function", "name": "srandom_r", "location": "/usr/include/stdlib.h:357:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__seed", "type": { "tag": ":unsigned-int" } }, { "tag": "parameter", "name": "__buf", "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "random_data", "id": 0 } } }], "return-type": { "tag": ":int" } },
155
+{ "tag": "function", "name": "initstate_r", "location": "/usr/include/stdlib.h:360:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__seed", "type": { "tag": ":unsigned-int" } }, { "tag": "parameter", "name": "__statebuf", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__statelen", "type": { "tag": "size_t" } }, { "tag": "parameter", "name": "__buf", "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "random_data", "id": 0 } } }], "return-type": { "tag": ":int" } },
156
+{ "tag": "function", "name": "setstate_r", "location": "/usr/include/stdlib.h:365:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__statebuf", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__buf", "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "random_data", "id": 0 } } }], "return-type": { "tag": ":int" } },
157
+{ "tag": "function", "name": "rand", "location": "/usr/include/stdlib.h:374:12", "variadic": false, "parameters": [], "return-type": { "tag": ":int" } },
158
+{ "tag": "function", "name": "srand", "location": "/usr/include/stdlib.h:376:13", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__seed", "type": { "tag": ":unsigned-int" } }], "return-type": { "tag": ":void" } },
159
+{ "tag": "function", "name": "rand_r", "location": "/usr/include/stdlib.h:381:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__seed", "type": { "tag": ":pointer", "type": { "tag": ":unsigned-int" } } }], "return-type": { "tag": ":int" } },
160
+{ "tag": "function", "name": "drand48", "location": "/usr/include/stdlib.h:389:15", "variadic": false, "parameters": [], "return-type": { "tag": ":double" } },
161
+{ "tag": "function", "name": "erand48", "location": "/usr/include/stdlib.h:390:15", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__xsubi", "type": { "tag": ":array", "type": { "tag": ":unsigned-short" }, "size": 3 } }], "return-type": { "tag": ":double" } },
162
+{ "tag": "function", "name": "lrand48", "location": "/usr/include/stdlib.h:393:17", "variadic": false, "parameters": [], "return-type": { "tag": ":long" } },
163
+{ "tag": "function", "name": "nrand48", "location": "/usr/include/stdlib.h:394:17", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__xsubi", "type": { "tag": ":array", "type": { "tag": ":unsigned-short" }, "size": 3 } }], "return-type": { "tag": ":long" } },
164
+{ "tag": "function", "name": "mrand48", "location": "/usr/include/stdlib.h:398:17", "variadic": false, "parameters": [], "return-type": { "tag": ":long" } },
165
+{ "tag": "function", "name": "jrand48", "location": "/usr/include/stdlib.h:399:17", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__xsubi", "type": { "tag": ":array", "type": { "tag": ":unsigned-short" }, "size": 3 } }], "return-type": { "tag": ":long" } },
166
+{ "tag": "function", "name": "srand48", "location": "/usr/include/stdlib.h:403:13", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__seedval", "type": { "tag": ":long" } }], "return-type": { "tag": ":void" } },
167
+{ "tag": "function", "name": "seed48", "location": "/usr/include/stdlib.h:404:28", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__seed16v", "type": { "tag": ":array", "type": { "tag": ":unsigned-short" }, "size": 3 } }], "return-type": { "tag": ":pointer", "type": { "tag": ":unsigned-short" } } },
168
+{ "tag": "function", "name": "lcong48", "location": "/usr/include/stdlib.h:406:13", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__param", "type": { "tag": ":array", "type": { "tag": ":unsigned-short" }, "size": 7 } }], "return-type": { "tag": ":void" } },
169
+{ "tag": "struct", "name": "drand48_data", "id": 0, "location": "/usr/include/stdlib.h:412:8", "bit-size": 192, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "__x", "bit-offset": 0, "bit-size": 48, "bit-alignment": 16, "type": { "tag": ":array", "type": { "tag": ":unsigned-short" }, "size": 3 } }, { "tag": "field", "name": "__old_x", "bit-offset": 48, "bit-size": 48, "bit-alignment": 16, "type": { "tag": ":array", "type": { "tag": ":unsigned-short" }, "size": 3 } }, { "tag": "field", "name": "__c", "bit-offset": 96, "bit-size": 16, "bit-alignment": 16, "type": { "tag": ":unsigned-short" } }, { "tag": "field", "name": "__init", "bit-offset": 112, "bit-size": 16, "bit-alignment": 16, "type": { "tag": ":unsigned-short" } }, { "tag": "field", "name": "__a", "bit-offset": 128, "bit-size": 64, "bit-alignment": 32, "type": { "tag": ":unsigned-long-long" } }] },
170
+{ "tag": "function", "name": "drand48_r", "location": "/usr/include/stdlib.h:422:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__buffer", "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "drand48_data", "id": 0 } } }, { "tag": "parameter", "name": "__result", "type": { "tag": ":pointer", "type": { "tag": ":double" } } }], "return-type": { "tag": ":int" } },
171
+{ "tag": "function", "name": "erand48_r", "location": "/usr/include/stdlib.h:424:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__xsubi", "type": { "tag": ":array", "type": { "tag": ":unsigned-short" }, "size": 3 } }, { "tag": "parameter", "name": "__buffer", "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "drand48_data", "id": 0 } } }, { "tag": "parameter", "name": "__result", "type": { "tag": ":pointer", "type": { "tag": ":double" } } }], "return-type": { "tag": ":int" } },
172
+{ "tag": "function", "name": "lrand48_r", "location": "/usr/include/stdlib.h:429:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__buffer", "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "drand48_data", "id": 0 } } }, { "tag": "parameter", "name": "__result", "type": { "tag": ":pointer", "type": { "tag": ":long" } } }], "return-type": { "tag": ":int" } },
173
+{ "tag": "function", "name": "nrand48_r", "location": "/usr/include/stdlib.h:432:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__xsubi", "type": { "tag": ":array", "type": { "tag": ":unsigned-short" }, "size": 3 } }, { "tag": "parameter", "name": "__buffer", "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "drand48_data", "id": 0 } } }, { "tag": "parameter", "name": "__result", "type": { "tag": ":pointer", "type": { "tag": ":long" } } }], "return-type": { "tag": ":int" } },
174
+{ "tag": "function", "name": "mrand48_r", "location": "/usr/include/stdlib.h:438:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__buffer", "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "drand48_data", "id": 0 } } }, { "tag": "parameter", "name": "__result", "type": { "tag": ":pointer", "type": { "tag": ":long" } } }], "return-type": { "tag": ":int" } },
175
+{ "tag": "function", "name": "jrand48_r", "location": "/usr/include/stdlib.h:441:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__xsubi", "type": { "tag": ":array", "type": { "tag": ":unsigned-short" }, "size": 3 } }, { "tag": "parameter", "name": "__buffer", "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "drand48_data", "id": 0 } } }, { "tag": "parameter", "name": "__result", "type": { "tag": ":pointer", "type": { "tag": ":long" } } }], "return-type": { "tag": ":int" } },
176
+{ "tag": "function", "name": "srand48_r", "location": "/usr/include/stdlib.h:447:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__seedval", "type": { "tag": ":long" } }, { "tag": "parameter", "name": "__buffer", "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "drand48_data", "id": 0 } } }], "return-type": { "tag": ":int" } },
177
+{ "tag": "function", "name": "seed48_r", "location": "/usr/include/stdlib.h:450:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__seed16v", "type": { "tag": ":array", "type": { "tag": ":unsigned-short" }, "size": 3 } }, { "tag": "parameter", "name": "__buffer", "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "drand48_data", "id": 0 } } }], "return-type": { "tag": ":int" } },
178
+{ "tag": "function", "name": "lcong48_r", "location": "/usr/include/stdlib.h:453:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__param", "type": { "tag": ":array", "type": { "tag": ":unsigned-short" }, "size": 7 } }, { "tag": "parameter", "name": "__buffer", "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "drand48_data", "id": 0 } } }], "return-type": { "tag": ":int" } },
179
+{ "tag": "function", "name": "malloc", "location": "/usr/include/stdlib.h:465:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__size", "type": { "tag": "size_t" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":void" } } },
180
+{ "tag": "function", "name": "calloc", "location": "/usr/include/stdlib.h:467:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__nmemb", "type": { "tag": "size_t" } }, { "tag": "parameter", "name": "__size", "type": { "tag": "size_t" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":void" } } },
181
+{ "tag": "function", "name": "realloc", "location": "/usr/include/stdlib.h:479:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__ptr", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__size", "type": { "tag": "size_t" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":void" } } },
182
+{ "tag": "function", "name": "free", "location": "/usr/include/stdlib.h:482:13", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__ptr", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": ":void" } },
183
+{ "tag": "function", "name": "cfree", "location": "/usr/include/stdlib.h:487:13", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__ptr", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": ":void" } },
184
+{ "tag": "function", "name": "alloca", "location": "/usr/include/alloca.h:32:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__size", "type": { "tag": "size_t" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":void" } } },
185
+{ "tag": "function", "name": "valloc", "location": "/usr/include/stdlib.h:497:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__size", "type": { "tag": "size_t" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":void" } } },
186
+{ "tag": "function", "name": "posix_memalign", "location": "/usr/include/stdlib.h:502:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__memptr", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":void" } } } }, { "tag": "parameter", "name": "__alignment", "type": { "tag": "size_t" } }, { "tag": "parameter", "name": "__size", "type": { "tag": "size_t" } }], "return-type": { "tag": ":int" } },
187
+{ "tag": "function", "name": "abort", "location": "/usr/include/stdlib.h:514:13", "variadic": false, "parameters": [], "return-type": { "tag": ":void" } },
188
+{ "tag": "function", "name": "atexit", "location": "/usr/include/stdlib.h:518:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__func", "type": { "tag": ":function-pointer" } }], "return-type": { "tag": ":int" } },
189
+{ "tag": "function", "name": "on_exit", "location": "/usr/include/stdlib.h:534:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__func", "type": { "tag": ":function-pointer" } }, { "tag": "parameter", "name": "__arg", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": ":int" } },
190
+{ "tag": "function", "name": "exit", "location": "/usr/include/stdlib.h:542:13", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__status", "type": { "tag": ":int" } }], "return-type": { "tag": ":void" } },
191
+{ "tag": "function", "name": "_Exit", "location": "/usr/include/stdlib.h:556:13", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__status", "type": { "tag": ":int" } }], "return-type": { "tag": ":void" } },
192
+{ "tag": "function", "name": "getenv", "location": "/usr/include/stdlib.h:563:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__name", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
193
+{ "tag": "function", "name": "putenv", "location": "/usr/include/stdlib.h:577:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__string", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":int" } },
194
+{ "tag": "function", "name": "setenv", "location": "/usr/include/stdlib.h:583:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__name", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__value", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__replace", "type": { "tag": ":int" } }], "return-type": { "tag": ":int" } },
195
+{ "tag": "function", "name": "unsetenv", "location": "/usr/include/stdlib.h:587:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__name", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":int" } },
196
+{ "tag": "function", "name": "clearenv", "location": "/usr/include/stdlib.h:594:12", "variadic": false, "parameters": [], "return-type": { "tag": ":int" } },
197
+{ "tag": "function", "name": "mktemp", "location": "/usr/include/stdlib.h:605:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__template", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
198
+{ "tag": "function", "name": "mkstemp", "location": "/usr/include/stdlib.h:619:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__template", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":int" } },
199
+{ "tag": "function", "name": "mkstemps", "location": "/usr/include/stdlib.h:641:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__template", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__suffixlen", "type": { "tag": ":int" } }], "return-type": { "tag": ":int" } },
200
+{ "tag": "function", "name": "mkdtemp", "location": "/usr/include/stdlib.h:662:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__template", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
201
+{ "tag": "function", "name": "system", "location": "/usr/include/stdlib.h:716:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__command", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":int" } },
202
+{ "tag": "function", "name": "realpath", "location": "/usr/include/stdlib.h:733:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__name", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__resolved", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
203
+{ "tag": "typedef", "name": "__compar_fn_t", "location": "/usr/include/stdlib.h:741:15", "type": { "tag": ":function-pointer" } },
204
+{ "tag": "function", "name": "bsearch", "location": "/usr/include/stdlib.h:754:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__key", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__base", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__nmemb", "type": { "tag": "size_t" } }, { "tag": "parameter", "name": "__size", "type": { "tag": "size_t" } }, { "tag": "parameter", "name": "__compar", "type": { "tag": "__compar_fn_t" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":void" } } },
205
+{ "tag": "function", "name": "qsort", "location": "/usr/include/stdlib.h:760:13", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__base", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__nmemb", "type": { "tag": "size_t" } }, { "tag": "parameter", "name": "__size", "type": { "tag": "size_t" } }, { "tag": "parameter", "name": "__compar", "type": { "tag": "__compar_fn_t" } }], "return-type": { "tag": ":void" } },
206
+{ "tag": "function", "name": "abs", "location": "/usr/include/stdlib.h:770:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":int" } }], "return-type": { "tag": ":int" } },
207
+{ "tag": "function", "name": "labs", "location": "/usr/include/stdlib.h:771:17", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":long" } }], "return-type": { "tag": ":long" } },
208
+{ "tag": "function", "name": "llabs", "location": "/usr/include/stdlib.h:775:36", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":long-long" } }], "return-type": { "tag": ":long-long" } },
209
+{ "tag": "function", "name": "div", "location": "/usr/include/stdlib.h:784:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__numer", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__denom", "type": { "tag": ":int" } }], "return-type": { "tag": "div_t" } },
210
+{ "tag": "function", "name": "ldiv", "location": "/usr/include/stdlib.h:786:15", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__numer", "type": { "tag": ":long" } }, { "tag": "parameter", "name": "__denom", "type": { "tag": ":long" } }], "return-type": { "tag": "ldiv_t" } },
211
+{ "tag": "function", "name": "lldiv", "location": "/usr/include/stdlib.h:792:30", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__numer", "type": { "tag": ":long-long" } }, { "tag": "parameter", "name": "__denom", "type": { "tag": ":long-long" } }], "return-type": { "tag": "lldiv_t" } },
212
+{ "tag": "function", "name": "ecvt", "location": "/usr/include/stdlib.h:807:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__value", "type": { "tag": ":double" } }, { "tag": "parameter", "name": "__ndigit", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__decpt", "type": { "tag": ":pointer", "type": { "tag": ":int" } } }, { "tag": "parameter", "name": "__sign", "type": { "tag": ":pointer", "type": { "tag": ":int" } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
213
+{ "tag": "function", "name": "fcvt", "location": "/usr/include/stdlib.h:813:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__value", "type": { "tag": ":double" } }, { "tag": "parameter", "name": "__ndigit", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__decpt", "type": { "tag": ":pointer", "type": { "tag": ":int" } } }, { "tag": "parameter", "name": "__sign", "type": { "tag": ":pointer", "type": { "tag": ":int" } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
214
+{ "tag": "function", "name": "gcvt", "location": "/usr/include/stdlib.h:819:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__value", "type": { "tag": ":double" } }, { "tag": "parameter", "name": "__ndigit", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__buf", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
215
+{ "tag": "function", "name": "qecvt", "location": "/usr/include/stdlib.h:825:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__value", "type": { "tag": ":long-double" } }, { "tag": "parameter", "name": "__ndigit", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__decpt", "type": { "tag": ":pointer", "type": { "tag": ":int" } } }, { "tag": "parameter", "name": "__sign", "type": { "tag": ":pointer", "type": { "tag": ":int" } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
216
+{ "tag": "function", "name": "qfcvt", "location": "/usr/include/stdlib.h:828:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__value", "type": { "tag": ":long-double" } }, { "tag": "parameter", "name": "__ndigit", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__decpt", "type": { "tag": ":pointer", "type": { "tag": ":int" } } }, { "tag": "parameter", "name": "__sign", "type": { "tag": ":pointer", "type": { "tag": ":int" } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
217
+{ "tag": "function", "name": "qgcvt", "location": "/usr/include/stdlib.h:831:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__value", "type": { "tag": ":long-double" } }, { "tag": "parameter", "name": "__ndigit", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__buf", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
218
+{ "tag": "function", "name": "ecvt_r", "location": "/usr/include/stdlib.h:837:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__value", "type": { "tag": ":double" } }, { "tag": "parameter", "name": "__ndigit", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__decpt", "type": { "tag": ":pointer", "type": { "tag": ":int" } } }, { "tag": "parameter", "name": "__sign", "type": { "tag": ":pointer", "type": { "tag": ":int" } } }, { "tag": "parameter", "name": "__buf", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__len", "type": { "tag": "size_t" } }], "return-type": { "tag": ":int" } },
219
+{ "tag": "function", "name": "fcvt_r", "location": "/usr/include/stdlib.h:840:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__value", "type": { "tag": ":double" } }, { "tag": "parameter", "name": "__ndigit", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__decpt", "type": { "tag": ":pointer", "type": { "tag": ":int" } } }, { "tag": "parameter", "name": "__sign", "type": { "tag": ":pointer", "type": { "tag": ":int" } } }, { "tag": "parameter", "name": "__buf", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__len", "type": { "tag": "size_t" } }], "return-type": { "tag": ":int" } },
220
+{ "tag": "function", "name": "qecvt_r", "location": "/usr/include/stdlib.h:844:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__value", "type": { "tag": ":long-double" } }, { "tag": "parameter", "name": "__ndigit", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__decpt", "type": { "tag": ":pointer", "type": { "tag": ":int" } } }, { "tag": "parameter", "name": "__sign", "type": { "tag": ":pointer", "type": { "tag": ":int" } } }, { "tag": "parameter", "name": "__buf", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__len", "type": { "tag": "size_t" } }], "return-type": { "tag": ":int" } },
221
+{ "tag": "function", "name": "qfcvt_r", "location": "/usr/include/stdlib.h:848:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__value", "type": { "tag": ":long-double" } }, { "tag": "parameter", "name": "__ndigit", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__decpt", "type": { "tag": ":pointer", "type": { "tag": ":int" } } }, { "tag": "parameter", "name": "__sign", "type": { "tag": ":pointer", "type": { "tag": ":int" } } }, { "tag": "parameter", "name": "__buf", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__len", "type": { "tag": "size_t" } }], "return-type": { "tag": ":int" } },
222
+{ "tag": "function", "name": "mblen", "location": "/usr/include/stdlib.h:859:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }], "return-type": { "tag": ":int" } },
223
+{ "tag": "function", "name": "mbtowc", "location": "/usr/include/stdlib.h:862:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__pwc", "type": { "tag": ":pointer", "type": { "tag": "wchar_t" } } }, { "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }], "return-type": { "tag": ":int" } },
224
+{ "tag": "function", "name": "wctomb", "location": "/usr/include/stdlib.h:866:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__wchar", "type": { "tag": "wchar_t" } }], "return-type": { "tag": ":int" } },
225
+{ "tag": "function", "name": "mbstowcs", "location": "/usr/include/stdlib.h:870:15", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__pwcs", "type": { "tag": ":pointer", "type": { "tag": "wchar_t" } } }, { "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }], "return-type": { "tag": "size_t" } },
226
+{ "tag": "function", "name": "wcstombs", "location": "/usr/include/stdlib.h:873:15", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__pwcs", "type": { "tag": ":pointer", "type": { "tag": "wchar_t" } } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }], "return-type": { "tag": "size_t" } },
227
+{ "tag": "function", "name": "rpmatch", "location": "/usr/include/stdlib.h:884:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__response", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":int" } },
228
+{ "tag": "function", "name": "getsubopt", "location": "/usr/include/stdlib.h:895:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__optionp", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char" } } } }, { "tag": "parameter", "name": "__tokens", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char" } } } }, { "tag": "parameter", "name": "__valuep", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char" } } } }], "return-type": { "tag": ":int" } },
229
+{ "tag": "function", "name": "getloadavg", "location": "/usr/include/stdlib.h:947:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__loadavg", "type": { "tag": ":pointer", "type": { "tag": ":double" } } }, { "tag": "parameter", "name": "__nelem", "type": { "tag": ":int" } }], "return-type": { "tag": ":int" } },
230
+{ "tag": "struct", "name": "_IO_FILE", "id": 0, "location": "/usr/include/stdio.h:44:8", "bit-size": 0, "bit-alignment": 0, "fields": [] },
231
+{ "tag": "typedef", "name": "FILE", "location": "/usr/include/stdio.h:48:25", "type": { "tag": ":struct", "name": "_IO_FILE", "id": 0 } },
232
+{ "tag": "typedef", "name": "__FILE", "location": "/usr/include/stdio.h:64:25", "type": { "tag": ":struct", "name": "_IO_FILE", "id": 0 } },
233
+{ "tag": "typedef", "name": "__mbstate_t", "location": "/usr/include/wchar.h:94:3", "type": { "tag": "struct", "name": "", "id": 21, "location": "/usr/include/wchar.h:82:9", "bit-size": 64, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "__count", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "__value", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "union", "name": "", "id": 22, "location": "/usr/include/wchar.h:85:3", "bit-size": 32, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "__wch", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "__wchb", "bit-offset": 0, "bit-size": 32, "bit-alignment": 8, "type": { "tag": ":array", "type": { "tag": ":char" }, "size": 4 } }] } }] } },
234
+{ "tag": "typedef", "name": "_G_fpos_t", "location": "/usr/include/_G_config.h:25:3", "type": { "tag": "struct", "name": "", "id": 23, "location": "/usr/include/_G_config.h:21:9", "bit-size": 96, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "__pos", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "__off_t" } }, { "tag": "field", "name": "__state", "bit-offset": 32, "bit-size": 64, "bit-alignment": 32, "type": { "tag": "__mbstate_t" } }] } },
235
+{ "tag": "typedef", "name": "_G_fpos64_t", "location": "/usr/include/_G_config.h:30:3", "type": { "tag": "struct", "name": "", "id": 24, "location": "/usr/include/_G_config.h:26:9", "bit-size": 128, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "__pos", "bit-offset": 0, "bit-size": 64, "bit-alignment": 32, "type": { "tag": "__off64_t" } }, { "tag": "field", "name": "__state", "bit-offset": 64, "bit-size": 64, "bit-alignment": 32, "type": { "tag": "__mbstate_t" } }] } },
236
+{ "tag": "typedef", "name": "__gnuc_va_list", "location": "/usr/include/stdarg.h:40:27", "type": { "tag": "__builtin_va_list" } },
237
+{ "tag": "struct", "name": "_IO_jump_t", "id": 0, "location": "/usr/include/libio.h:145:8", "bit-size": 0, "bit-alignment": 0, "fields": [] },
238
+{ "tag": "struct", "name": "_IO_FILE", "id": 0, "location": "/usr/include/libio.h:145:28", "bit-size": 0, "bit-alignment": 0, "fields": [] },
239
+{ "tag": "typedef", "name": "_IO_lock_t", "location": "/usr/include/libio.h:155:14", "type": { "tag": ":void" } },
240
+{ "tag": "struct", "name": "_IO_marker", "id": 0, "location": "/usr/include/libio.h:161:8", "bit-size": 96, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "_next", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "_IO_marker", "id": 0 } } }, { "tag": "field", "name": "_sbuf", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "_IO_FILE", "id": 0 } } }, { "tag": "field", "name": "_pos", "bit-offset": 64, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }] },
241
+{ "tag": "enum", "name": "__codecvt_result", "id": 0, "location": "/usr/include/libio.h:181:6", "fields": [{ "tag": "field", "name": "__codecvt_ok", "value": 0 }, { "tag": "field", "name": "__codecvt_partial", "value": 1 }, { "tag": "field", "name": "__codecvt_error", "value": 2 }, { "tag": "field", "name": "__codecvt_noconv", "value": 3 }] },
242
+{ "tag": "struct", "name": "_IO_FILE", "id": 0, "location": "/usr/include/libio.h:246:8", "bit-size": 1184, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "_flags", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "_IO_read_ptr", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "field", "name": "_IO_read_end", "bit-offset": 64, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "field", "name": "_IO_read_base", "bit-offset": 96, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "field", "name": "_IO_write_base", "bit-offset": 128, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "field", "name": "_IO_write_ptr", "bit-offset": 160, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "field", "name": "_IO_write_end", "bit-offset": 192, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "field", "name": "_IO_buf_base", "bit-offset": 224, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "field", "name": "_IO_buf_end", "bit-offset": 256, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "field", "name": "_IO_save_base", "bit-offset": 288, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "field", "name": "_IO_backup_base", "bit-offset": 320, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "field", "name": "_IO_save_end", "bit-offset": 352, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "field", "name": "_markers", "bit-offset": 384, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "_IO_marker", "id": 0 } } }, { "tag": "field", "name": "_chain", "bit-offset": 416, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "_IO_FILE", "id": 0 } } }, { "tag": "field", "name": "_fileno", "bit-offset": 448, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "_flags2", "bit-offset": 480, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "_old_offset", "bit-offset": 512, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "__off_t" } }, { "tag": "field", "name": "_cur_column", "bit-offset": 544, "bit-size": 16, "bit-alignment": 16, "type": { "tag": ":unsigned-short" } }, { "tag": "field", "name": "_vtable_offset", "bit-offset": 560, "bit-size": 8, "bit-alignment": 8, "type": { "tag": ":signed-char" } }, { "tag": "field", "name": "_shortbuf", "bit-offset": 568, "bit-size": 8, "bit-alignment": 8, "type": { "tag": ":array", "type": { "tag": ":char" }, "size": 1 } }, { "tag": "field", "name": "_lock", "bit-offset": 576, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "field", "name": "_offset", "bit-offset": 608, "bit-size": 64, "bit-alignment": 32, "type": { "tag": "__off64_t" } }, { "tag": "field", "name": "__pad1", "bit-offset": 672, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "field", "name": "__pad2", "bit-offset": 704, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "field", "name": "__pad3", "bit-offset": 736, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "field", "name": "__pad4", "bit-offset": 768, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "field", "name": "__pad5", "bit-offset": 800, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "size_t" } }, { "tag": "field", "name": "_mode", "bit-offset": 832, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "_unused2", "bit-offset": 864, "bit-size": 320, "bit-alignment": 8, "type": { "tag": ":array", "type": { "tag": ":char" }, "size": 40 } }] },
243
+{ "tag": "typedef", "name": "_IO_FILE", "location": "/usr/include/libio.h:316:25", "type": { "tag": ":struct", "name": "_IO_FILE", "id": 0 } },
244
+{ "tag": "struct", "name": "_IO_FILE_plus", "id": 0, "location": "/usr/include/libio.h:319:8", "bit-size": 0, "bit-alignment": 0, "fields": [] },
245
+{ "tag": "extern", "name": "_IO_2_1_stdin_", "location": "/usr/include/libio.h:321:29", "type": { "tag": ":struct", "name": "_IO_FILE_plus", "id": 0 } },
246
+{ "tag": "extern", "name": "_IO_2_1_stdout_", "location": "/usr/include/libio.h:322:29", "type": { "tag": ":struct", "name": "_IO_FILE_plus", "id": 0 } },
247
+{ "tag": "extern", "name": "_IO_2_1_stderr_", "location": "/usr/include/libio.h:323:29", "type": { "tag": ":struct", "name": "_IO_FILE_plus", "id": 0 } },
248
+{ "tag": "typedef", "name": "__io_read_fn", "location": "/usr/include/libio.h:339:19", "type": { "tag": ":function" } },
249
+{ "tag": "typedef", "name": "__io_write_fn", "location": "/usr/include/libio.h:347:19", "type": { "tag": ":function" } },
250
+{ "tag": "typedef", "name": "__io_seek_fn", "location": "/usr/include/libio.h:356:13", "type": { "tag": ":function" } },
251
+{ "tag": "typedef", "name": "__io_close_fn", "location": "/usr/include/libio.h:359:13", "type": { "tag": ":function" } },
252
+{ "tag": "function", "name": "__underflow", "location": "/usr/include/libio.h:391:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": "_IO_FILE" } } }], "return-type": { "tag": ":int" } },
253
+{ "tag": "function", "name": "__uflow", "location": "/usr/include/libio.h:392:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": "_IO_FILE" } } }], "return-type": { "tag": ":int" } },
254
+{ "tag": "function", "name": "__overflow", "location": "/usr/include/libio.h:393:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": "_IO_FILE" } } }, { "tag": "parameter", "name": "", "type": { "tag": ":int" } }], "return-type": { "tag": ":int" } },
255
+{ "tag": "function", "name": "_IO_getc", "location": "/usr/include/libio.h:435:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__fp", "type": { "tag": ":pointer", "type": { "tag": "_IO_FILE" } } }], "return-type": { "tag": ":int" } },
256
+{ "tag": "function", "name": "_IO_putc", "location": "/usr/include/libio.h:436:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__c", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__fp", "type": { "tag": ":pointer", "type": { "tag": "_IO_FILE" } } }], "return-type": { "tag": ":int" } },
257
+{ "tag": "function", "name": "_IO_feof", "location": "/usr/include/libio.h:437:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__fp", "type": { "tag": ":pointer", "type": { "tag": "_IO_FILE" } } }], "return-type": { "tag": ":int" } },
258
+{ "tag": "function", "name": "_IO_ferror", "location": "/usr/include/libio.h:438:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__fp", "type": { "tag": ":pointer", "type": { "tag": "_IO_FILE" } } }], "return-type": { "tag": ":int" } },
259
+{ "tag": "function", "name": "_IO_peekc_locked", "location": "/usr/include/libio.h:440:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__fp", "type": { "tag": ":pointer", "type": { "tag": "_IO_FILE" } } }], "return-type": { "tag": ":int" } },
260
+{ "tag": "function", "name": "_IO_flockfile", "location": "/usr/include/libio.h:446:13", "variadic": false, "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": "_IO_FILE" } } }], "return-type": { "tag": ":void" } },
261
+{ "tag": "function", "name": "_IO_funlockfile", "location": "/usr/include/libio.h:447:13", "variadic": false, "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": "_IO_FILE" } } }], "return-type": { "tag": ":void" } },
262
+{ "tag": "function", "name": "_IO_ftrylockfile", "location": "/usr/include/libio.h:448:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": "_IO_FILE" } } }], "return-type": { "tag": ":int" } },
263
+{ "tag": "function", "name": "_IO_vfscanf", "location": "/usr/include/libio.h:465:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": "_IO_FILE" } } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "", "type": { "tag": "__gnuc_va_list" } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":int" } } }], "return-type": { "tag": ":int" } },
264
+{ "tag": "function", "name": "_IO_vfprintf", "location": "/usr/include/libio.h:467:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": "_IO_FILE" } } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "", "type": { "tag": "__gnuc_va_list" } }], "return-type": { "tag": ":int" } },
265
+{ "tag": "function", "name": "_IO_padn", "location": "/usr/include/libio.h:469:20", "variadic": false, "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": "_IO_FILE" } } }, { "tag": "parameter", "name": "", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "", "type": { "tag": "__ssize_t" } }], "return-type": { "tag": "__ssize_t" } },
266
+{ "tag": "function", "name": "_IO_sgetn", "location": "/usr/include/libio.h:470:19", "variadic": false, "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": "_IO_FILE" } } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "", "type": { "tag": "size_t" } }], "return-type": { "tag": "size_t" } },
267
+{ "tag": "function", "name": "_IO_seekoff", "location": "/usr/include/libio.h:472:20", "variadic": false, "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": "_IO_FILE" } } }, { "tag": "parameter", "name": "", "type": { "tag": "__off64_t" } }, { "tag": "parameter", "name": "", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "", "type": { "tag": ":int" } }], "return-type": { "tag": "__off64_t" } },
268
+{ "tag": "function", "name": "_IO_seekpos", "location": "/usr/include/libio.h:473:20", "variadic": false, "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": "_IO_FILE" } } }, { "tag": "parameter", "name": "", "type": { "tag": "__off64_t" } }, { "tag": "parameter", "name": "", "type": { "tag": ":int" } }], "return-type": { "tag": "__off64_t" } },
269
+{ "tag": "function", "name": "_IO_free_backup_area", "location": "/usr/include/libio.h:475:13", "variadic": false, "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": "_IO_FILE" } } }], "return-type": { "tag": ":void" } },
270
+{ "tag": "typedef", "name": "va_list", "location": "/usr/include/stdio.h:79:20", "type": { "tag": "__gnuc_va_list" } },
271
+{ "tag": "typedef", "name": "fpos_t", "location": "/usr/include/stdio.h:110:19", "type": { "tag": "_G_fpos_t" } },
272
+{ "tag": "extern", "name": "stdin", "location": "/usr/include/stdio.h:168:25", "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "_IO_FILE", "id": 0 } } },
273
+{ "tag": "extern", "name": "stdout", "location": "/usr/include/stdio.h:169:25", "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "_IO_FILE", "id": 0 } } },
274
+{ "tag": "extern", "name": "stderr", "location": "/usr/include/stdio.h:170:25", "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "_IO_FILE", "id": 0 } } },
275
+{ "tag": "function", "name": "remove", "location": "/usr/include/stdio.h:178:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__filename", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":int" } },
276
+{ "tag": "function", "name": "rename", "location": "/usr/include/stdio.h:180:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__old", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__new", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":int" } },
277
+{ "tag": "function", "name": "renameat", "location": "/usr/include/stdio.h:185:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__oldfd", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__old", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__newfd", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__new", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":int" } },
278
+{ "tag": "function", "name": "tmpfile", "location": "/usr/include/stdio.h:195:14", "variadic": false, "parameters": [], "return-type": { "tag": ":pointer", "type": { "tag": "FILE" } } },
279
+{ "tag": "function", "name": "tmpnam", "location": "/usr/include/stdio.h:209:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
280
+{ "tag": "function", "name": "tmpnam_r", "location": "/usr/include/stdio.h:215:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
281
+{ "tag": "function", "name": "tempnam", "location": "/usr/include/stdio.h:227:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__dir", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__pfx", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
282
+{ "tag": "function", "name": "fclose", "location": "/usr/include/stdio.h:237:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":int" } },
283
+{ "tag": "function", "name": "fflush", "location": "/usr/include/stdio.h:242:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":int" } },
284
+{ "tag": "function", "name": "fflush_unlocked", "location": "/usr/include/stdio.h:252:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":int" } },
285
+{ "tag": "function", "name": "fopen", "location": "/usr/include/stdio.h:272:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__filename", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__modes", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":pointer", "type": { "tag": "FILE" } } },
286
+{ "tag": "function", "name": "freopen", "location": "/usr/include/stdio.h:278:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__filename", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__modes", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":pointer", "type": { "tag": "FILE" } } },
287
+{ "tag": "function", "name": "fdopen", "location": "/usr/include/stdio.h:306:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__fd", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__modes", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":pointer", "type": { "tag": "FILE" } } },
288
+{ "tag": "function", "name": "fmemopen", "location": "/usr/include/stdio.h:319:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__len", "type": { "tag": "size_t" } }, { "tag": "parameter", "name": "__modes", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":pointer", "type": { "tag": "FILE" } } },
289
+{ "tag": "function", "name": "open_memstream", "location": "/usr/include/stdio.h:325:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__bufloc", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char" } } } }, { "tag": "parameter", "name": "__sizeloc", "type": { "tag": ":pointer", "type": { "tag": "size_t" } } }], "return-type": { "tag": ":pointer", "type": { "tag": "FILE" } } },
290
+{ "tag": "function", "name": "setbuf", "location": "/usr/include/stdio.h:332:13", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }, { "tag": "parameter", "name": "__buf", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":void" } },
291
+{ "tag": "function", "name": "setvbuf", "location": "/usr/include/stdio.h:336:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }, { "tag": "parameter", "name": "__buf", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__modes", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }], "return-type": { "tag": ":int" } },
292
+{ "tag": "function", "name": "setbuffer", "location": "/usr/include/stdio.h:343:13", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }, { "tag": "parameter", "name": "__buf", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__size", "type": { "tag": "size_t" } }], "return-type": { "tag": ":void" } },
293
+{ "tag": "function", "name": "setlinebuf", "location": "/usr/include/stdio.h:347:13", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":void" } },
294
+{ "tag": "function", "name": "fprintf", "location": "/usr/include/stdio.h:356:12", "variadic": true, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }, { "tag": "parameter", "name": "__format", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":int" } },
295
+{ "tag": "function", "name": "printf", "location": "/usr/include/stdio.h:362:12", "variadic": true, "parameters": [{ "tag": "parameter", "name": "__format", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":int" } },
296
+{ "tag": "function", "name": "sprintf", "location": "/usr/include/stdio.h:364:12", "variadic": true, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__format", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":int" } },
297
+{ "tag": "function", "name": "vfprintf", "location": "/usr/include/stdio.h:371:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }, { "tag": "parameter", "name": "__format", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__arg", "type": { "tag": "__gnuc_va_list" } }], "return-type": { "tag": ":int" } },
298
+{ "tag": "function", "name": "vprintf", "location": "/usr/include/stdio.h:377:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__format", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__arg", "type": { "tag": "__gnuc_va_list" } }], "return-type": { "tag": ":int" } },
299
+{ "tag": "function", "name": "vsprintf", "location": "/usr/include/stdio.h:379:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__format", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__arg", "type": { "tag": "__gnuc_va_list" } }], "return-type": { "tag": ":int" } },
300
+{ "tag": "function", "name": "snprintf", "location": "/usr/include/stdio.h:386:12", "variadic": true, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__maxlen", "type": { "tag": "size_t" } }, { "tag": "parameter", "name": "__format", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":int" } },
301
+{ "tag": "function", "name": "vsnprintf", "location": "/usr/include/stdio.h:390:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__maxlen", "type": { "tag": "size_t" } }, { "tag": "parameter", "name": "__format", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__arg", "type": { "tag": "__gnuc_va_list" } }], "return-type": { "tag": ":int" } },
302
+{ "tag": "function", "name": "vdprintf", "location": "/usr/include/stdio.h:412:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__fd", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__fmt", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__arg", "type": { "tag": "__gnuc_va_list" } }], "return-type": { "tag": ":int" } },
303
+{ "tag": "function", "name": "dprintf", "location": "/usr/include/stdio.h:415:12", "variadic": true, "parameters": [{ "tag": "parameter", "name": "__fd", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__fmt", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":int" } },
304
+{ "tag": "function", "name": "fscanf", "location": "/usr/include/stdio.h:425:12", "variadic": true, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }, { "tag": "parameter", "name": "__format", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":int" } },
305
+{ "tag": "function", "name": "scanf", "location": "/usr/include/stdio.h:431:12", "variadic": true, "parameters": [{ "tag": "parameter", "name": "__format", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":int" } },
306
+{ "tag": "function", "name": "sscanf", "location": "/usr/include/stdio.h:433:12", "variadic": true, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__format", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":int" } },
307
+{ "tag": "function", "name": "fscanf", "location": "/usr/include/stdio.h:443:12 <Spelling=/usr/include/stdio.h:443:24>", "variadic": true, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }, { "tag": "parameter", "name": "__format", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":int" } },
308
+{ "tag": "function", "name": "scanf", "location": "/usr/include/stdio.h:446:12 <Spelling=/usr/include/stdio.h:446:24>", "variadic": true, "parameters": [{ "tag": "parameter", "name": "__format", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":int" } },
309
+{ "tag": "function", "name": "sscanf", "location": "/usr/include/stdio.h:448:12 <Spelling=/usr/include/stdio.h:448:28>", "variadic": true, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__format", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":int" } },
310
+{ "tag": "function", "name": "vfscanf", "location": "/usr/include/stdio.h:471:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }, { "tag": "parameter", "name": "__format", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__arg", "type": { "tag": "__gnuc_va_list" } }], "return-type": { "tag": ":int" } },
311
+{ "tag": "function", "name": "vscanf", "location": "/usr/include/stdio.h:479:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__format", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__arg", "type": { "tag": "__gnuc_va_list" } }], "return-type": { "tag": ":int" } },
312
+{ "tag": "function", "name": "vsscanf", "location": "/usr/include/stdio.h:483:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__format", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__arg", "type": { "tag": "__gnuc_va_list" } }], "return-type": { "tag": ":int" } },
313
+{ "tag": "function", "name": "vfscanf", "location": "/usr/include/stdio.h:494:12 <Spelling=/usr/include/stdio.h:494:24>", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }, { "tag": "parameter", "name": "__format", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__arg", "type": { "tag": "__gnuc_va_list" } }], "return-type": { "tag": ":int" } },
314
+{ "tag": "function", "name": "vscanf", "location": "/usr/include/stdio.h:499:12 <Spelling=/usr/include/stdio.h:499:24>", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__format", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__arg", "type": { "tag": "__gnuc_va_list" } }], "return-type": { "tag": ":int" } },
315
+{ "tag": "function", "name": "vsscanf", "location": "/usr/include/stdio.h:502:12 <Spelling=/usr/include/stdio.h:502:28>", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__format", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__arg", "type": { "tag": "__gnuc_va_list" } }], "return-type": { "tag": ":int" } },
316
+{ "tag": "function", "name": "fgetc", "location": "/usr/include/stdio.h:531:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":int" } },
317
+{ "tag": "function", "name": "getc", "location": "/usr/include/stdio.h:532:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":int" } },
318
+{ "tag": "function", "name": "getchar", "location": "/usr/include/stdio.h:538:12", "variadic": false, "parameters": [], "return-type": { "tag": ":int" } },
319
+{ "tag": "function", "name": "getc_unlocked", "location": "/usr/include/stdio.h:550:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":int" } },
320
+{ "tag": "function", "name": "getchar_unlocked", "location": "/usr/include/stdio.h:551:12", "variadic": false, "parameters": [], "return-type": { "tag": ":int" } },
321
+{ "tag": "function", "name": "fgetc_unlocked", "location": "/usr/include/stdio.h:561:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":int" } },
322
+{ "tag": "function", "name": "fputc", "location": "/usr/include/stdio.h:573:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__c", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":int" } },
323
+{ "tag": "function", "name": "putc", "location": "/usr/include/stdio.h:574:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__c", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":int" } },
324
+{ "tag": "function", "name": "putchar", "location": "/usr/include/stdio.h:580:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__c", "type": { "tag": ":int" } }], "return-type": { "tag": ":int" } },
325
+{ "tag": "function", "name": "fputc_unlocked", "location": "/usr/include/stdio.h:594:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__c", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":int" } },
326
+{ "tag": "function", "name": "putc_unlocked", "location": "/usr/include/stdio.h:602:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__c", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":int" } },
327
+{ "tag": "function", "name": "putchar_unlocked", "location": "/usr/include/stdio.h:603:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__c", "type": { "tag": ":int" } }], "return-type": { "tag": ":int" } },
328
+{ "tag": "function", "name": "getw", "location": "/usr/include/stdio.h:610:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":int" } },
329
+{ "tag": "function", "name": "putw", "location": "/usr/include/stdio.h:613:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__w", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":int" } },
330
+{ "tag": "function", "name": "fgets", "location": "/usr/include/stdio.h:622:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__n", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
331
+{ "tag": "function", "name": "gets", "location": "/usr/include/stdio.h:638:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
332
+{ "tag": "function", "name": "__getdelim", "location": "/usr/include/stdio.h:665:20", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__lineptr", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char" } } } }, { "tag": "parameter", "name": "__n", "type": { "tag": ":pointer", "type": { "tag": "size_t" } } }, { "tag": "parameter", "name": "__delimiter", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": "__ssize_t" } },
333
+{ "tag": "function", "name": "getdelim", "location": "/usr/include/stdio.h:668:20", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__lineptr", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char" } } } }, { "tag": "parameter", "name": "__n", "type": { "tag": ":pointer", "type": { "tag": "size_t" } } }, { "tag": "parameter", "name": "__delimiter", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": "__ssize_t" } },
334
+{ "tag": "function", "name": "getline", "location": "/usr/include/stdio.h:678:20", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__lineptr", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char" } } } }, { "tag": "parameter", "name": "__n", "type": { "tag": ":pointer", "type": { "tag": "size_t" } } }, { "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": "__ssize_t" } },
335
+{ "tag": "function", "name": "fputs", "location": "/usr/include/stdio.h:689:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":int" } },
336
+{ "tag": "function", "name": "puts", "location": "/usr/include/stdio.h:695:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":int" } },
337
+{ "tag": "function", "name": "ungetc", "location": "/usr/include/stdio.h:702:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__c", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":int" } },
338
+{ "tag": "function", "name": "fread", "location": "/usr/include/stdio.h:709:15", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__ptr", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__size", "type": { "tag": "size_t" } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }, { "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": "size_t" } },
339
+{ "tag": "function", "name": "fwrite", "location": "/usr/include/stdio.h:715:15", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__ptr", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__size", "type": { "tag": "size_t" } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }, { "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": "size_t" } },
340
+{ "tag": "function", "name": "fread_unlocked", "location": "/usr/include/stdio.h:737:15", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__ptr", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__size", "type": { "tag": "size_t" } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }, { "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": "size_t" } },
341
+{ "tag": "function", "name": "fwrite_unlocked", "location": "/usr/include/stdio.h:739:15", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__ptr", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__size", "type": { "tag": "size_t" } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }, { "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": "size_t" } },
342
+{ "tag": "function", "name": "fseek", "location": "/usr/include/stdio.h:749:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }, { "tag": "parameter", "name": "__off", "type": { "tag": ":long" } }, { "tag": "parameter", "name": "__whence", "type": { "tag": ":int" } }], "return-type": { "tag": ":int" } },
343
+{ "tag": "function", "name": "ftell", "location": "/usr/include/stdio.h:754:17", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":long" } },
344
+{ "tag": "function", "name": "rewind", "location": "/usr/include/stdio.h:759:13", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":void" } },
345
+{ "tag": "function", "name": "fseeko", "location": "/usr/include/stdio.h:773:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }, { "tag": "parameter", "name": "__off", "type": { "tag": "__off_t" } }, { "tag": "parameter", "name": "__whence", "type": { "tag": ":int" } }], "return-type": { "tag": ":int" } },
346
+{ "tag": "function", "name": "ftello", "location": "/usr/include/stdio.h:778:16", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": "__off_t" } },
347
+{ "tag": "function", "name": "fgetpos", "location": "/usr/include/stdio.h:798:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }, { "tag": "parameter", "name": "__pos", "type": { "tag": ":pointer", "type": { "tag": "fpos_t" } } }], "return-type": { "tag": ":int" } },
348
+{ "tag": "function", "name": "fsetpos", "location": "/usr/include/stdio.h:803:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }, { "tag": "parameter", "name": "__pos", "type": { "tag": ":pointer", "type": { "tag": "fpos_t" } } }], "return-type": { "tag": ":int" } },
349
+{ "tag": "function", "name": "clearerr", "location": "/usr/include/stdio.h:826:13", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":void" } },
350
+{ "tag": "function", "name": "feof", "location": "/usr/include/stdio.h:828:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":int" } },
351
+{ "tag": "function", "name": "ferror", "location": "/usr/include/stdio.h:830:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":int" } },
352
+{ "tag": "function", "name": "clearerr_unlocked", "location": "/usr/include/stdio.h:835:13", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":void" } },
353
+{ "tag": "function", "name": "feof_unlocked", "location": "/usr/include/stdio.h:836:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":int" } },
354
+{ "tag": "function", "name": "ferror_unlocked", "location": "/usr/include/stdio.h:837:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":int" } },
355
+{ "tag": "function", "name": "perror", "location": "/usr/include/stdio.h:846:13", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":void" } },
356
+{ "tag": "extern", "name": "sys_nerr", "location": "/usr/include/bits/sys_errlist.h:26:12", "type": { "tag": ":int" } },
357
+{ "tag": "extern", "name": "sys_errlist", "location": "/usr/include/bits/sys_errlist.h:27:26", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char" } } } },
358
+{ "tag": "function", "name": "fileno", "location": "/usr/include/stdio.h:858:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":int" } },
359
+{ "tag": "function", "name": "fileno_unlocked", "location": "/usr/include/stdio.h:863:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":int" } },
360
+{ "tag": "function", "name": "popen", "location": "/usr/include/stdio.h:873:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__command", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__modes", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":pointer", "type": { "tag": "FILE" } } },
361
+{ "tag": "function", "name": "pclose", "location": "/usr/include/stdio.h:879:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":int" } },
362
+{ "tag": "function", "name": "ctermid", "location": "/usr/include/stdio.h:885:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
363
+{ "tag": "function", "name": "flockfile", "location": "/usr/include/stdio.h:913:13", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":void" } },
364
+{ "tag": "function", "name": "ftrylockfile", "location": "/usr/include/stdio.h:917:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":int" } },
365
+{ "tag": "function", "name": "funlockfile", "location": "/usr/include/stdio.h:920:13", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":void" } },
366
+{ "tag": "function", "name": "memcpy", "location": "/usr/include/string.h:42:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__dest", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__src", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":void" } } },
367
+{ "tag": "function", "name": "memmove", "location": "/usr/include/string.h:46:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__dest", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__src", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":void" } } },
368
+{ "tag": "function", "name": "memccpy", "location": "/usr/include/string.h:54:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__dest", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__src", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__c", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":void" } } },
369
+{ "tag": "function", "name": "memset", "location": "/usr/include/string.h:62:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__c", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":void" } } },
370
+{ "tag": "function", "name": "memcmp", "location": "/usr/include/string.h:65:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s1", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__s2", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }], "return-type": { "tag": ":int" } },
371
+{ "tag": "function", "name": "memchr", "location": "/usr/include/string.h:92:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__c", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":void" } } },
372
+{ "tag": "function", "name": "strcpy", "location": "/usr/include/string.h:125:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__dest", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__src", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
373
+{ "tag": "function", "name": "strncpy", "location": "/usr/include/string.h:128:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__dest", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__src", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
374
+{ "tag": "function", "name": "strcat", "location": "/usr/include/string.h:133:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__dest", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__src", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
375
+{ "tag": "function", "name": "strncat", "location": "/usr/include/string.h:136:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__dest", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__src", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
376
+{ "tag": "function", "name": "strcmp", "location": "/usr/include/string.h:140:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s1", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__s2", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":int" } },
377
+{ "tag": "function", "name": "strncmp", "location": "/usr/include/string.h:143:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s1", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__s2", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }], "return-type": { "tag": ":int" } },
378
+{ "tag": "function", "name": "strcoll", "location": "/usr/include/string.h:147:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s1", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__s2", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":int" } },
379
+{ "tag": "function", "name": "strxfrm", "location": "/usr/include/string.h:150:15", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__dest", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__src", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }], "return-type": { "tag": "size_t" } },
380
+{ "tag": "struct", "name": "__locale_struct", "id": 0, "location": "/usr/include/xlocale.h:27:16", "bit-size": 928, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "__locales", "bit-offset": 0, "bit-size": 416, "bit-alignment": 32, "type": { "tag": ":array", "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "__locale_data", "id": 0 } }, "size": 13 } }, { "tag": "field", "name": "__ctype_b", "bit-offset": 416, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": ":unsigned-short" } } }, { "tag": "field", "name": "__ctype_tolower", "bit-offset": 448, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": ":int" } } }, { "tag": "field", "name": "__ctype_toupper", "bit-offset": 480, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": ":int" } } }, { "tag": "field", "name": "__names", "bit-offset": 512, "bit-size": 416, "bit-alignment": 32, "type": { "tag": ":array", "type": { "tag": ":pointer", "type": { "tag": ":char" } }, "size": 13 } }] },
381
+{ "tag": "typedef", "name": "__locale_t", "location": "/usr/include/xlocale.h:39:4", "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "__locale_struct", "id": 0 } } },
382
+{ "tag": "typedef", "name": "locale_t", "location": "/usr/include/xlocale.h:42:20", "type": { "tag": "__locale_t" } },
383
+{ "tag": "function", "name": "strcoll_l", "location": "/usr/include/string.h:162:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s1", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__s2", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__l", "type": { "tag": "__locale_t" } }], "return-type": { "tag": ":int" } },
384
+{ "tag": "function", "name": "strxfrm_l", "location": "/usr/include/string.h:165:15", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__dest", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__src", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }, { "tag": "parameter", "name": "__l", "type": { "tag": "__locale_t" } }], "return-type": { "tag": "size_t" } },
385
+{ "tag": "function", "name": "strdup", "location": "/usr/include/string.h:172:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
386
+{ "tag": "function", "name": "strndup", "location": "/usr/include/string.h:180:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__string", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
387
+{ "tag": "function", "name": "strchr", "location": "/usr/include/string.h:232:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__c", "type": { "tag": ":int" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
388
+{ "tag": "function", "name": "strrchr", "location": "/usr/include/string.h:259:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__c", "type": { "tag": ":int" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
389
+{ "tag": "function", "name": "strcspn", "location": "/usr/include/string.h:281:15", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__reject", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": "size_t" } },
390
+{ "tag": "function", "name": "strspn", "location": "/usr/include/string.h:285:15", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__accept", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": "size_t" } },
391
+{ "tag": "function", "name": "strpbrk", "location": "/usr/include/string.h:311:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__accept", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
392
+{ "tag": "function", "name": "strstr", "location": "/usr/include/string.h:338:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__haystack", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__needle", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
393
+{ "tag": "function", "name": "strtok", "location": "/usr/include/string.h:344:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__delim", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
394
+{ "tag": "function", "name": "__strtok_r", "location": "/usr/include/string.h:350:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__delim", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__save_ptr", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char" } } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
395
+{ "tag": "function", "name": "strtok_r", "location": "/usr/include/string.h:355:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__delim", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__save_ptr", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char" } } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
396
+{ "tag": "function", "name": "strlen", "location": "/usr/include/string.h:395:15", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": "size_t" } },
397
+{ "tag": "function", "name": "strnlen", "location": "/usr/include/string.h:402:15", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__string", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__maxlen", "type": { "tag": "size_t" } }], "return-type": { "tag": "size_t" } },
398
+{ "tag": "function", "name": "strerror", "location": "/usr/include/string.h:409:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__errnum", "type": { "tag": ":int" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
399
+{ "tag": "function", "name": "strerror_r", "location": "/usr/include/string.h:423:12 <Spelling=/usr/include/string.h:423:28>", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__errnum", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__buf", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__buflen", "type": { "tag": "size_t" } }], "return-type": { "tag": ":int" } },
400
+{ "tag": "function", "name": "strerror_l", "location": "/usr/include/string.h:441:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__errnum", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__l", "type": { "tag": "__locale_t" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
401
+{ "tag": "function", "name": "__bzero", "location": "/usr/include/string.h:447:13", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }], "return-type": { "tag": ":void" } },
402
+{ "tag": "function", "name": "bcopy", "location": "/usr/include/string.h:451:13", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__src", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__dest", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }], "return-type": { "tag": ":void" } },
403
+{ "tag": "function", "name": "bzero", "location": "/usr/include/string.h:455:13", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }], "return-type": { "tag": ":void" } },
404
+{ "tag": "function", "name": "bcmp", "location": "/usr/include/string.h:458:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s1", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__s2", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }], "return-type": { "tag": ":int" } },
405
+{ "tag": "function", "name": "index", "location": "/usr/include/string.h:485:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__c", "type": { "tag": ":int" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
406
+{ "tag": "function", "name": "rindex", "location": "/usr/include/string.h:513:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__c", "type": { "tag": ":int" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
407
+{ "tag": "function", "name": "ffs", "location": "/usr/include/string.h:519:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__i", "type": { "tag": ":int" } }], "return-type": { "tag": ":int" } },
408
+{ "tag": "function", "name": "strcasecmp", "location": "/usr/include/string.h:532:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s1", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__s2", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":int" } },
409
+{ "tag": "function", "name": "strncasecmp", "location": "/usr/include/string.h:536:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s1", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__s2", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }], "return-type": { "tag": ":int" } },
410
+{ "tag": "function", "name": "strsep", "location": "/usr/include/string.h:555:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stringp", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char" } } } }, { "tag": "parameter", "name": "__delim", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
411
+{ "tag": "function", "name": "strsignal", "location": "/usr/include/string.h:562:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__sig", "type": { "tag": ":int" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
412
+{ "tag": "function", "name": "__stpcpy", "location": "/usr/include/string.h:565:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__dest", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__src", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
413
+{ "tag": "function", "name": "stpcpy", "location": "/usr/include/string.h:567:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__dest", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__src", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
414
+{ "tag": "function", "name": "__stpncpy", "location": "/usr/include/string.h:572:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__dest", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__src", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
415
+{ "tag": "function", "name": "stpncpy", "location": "/usr/include/string.h:575:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__dest", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__src", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
416
+{ "tag": "function", "name": "yaml_get_version_string", "location": "/usr/include/yaml.h:57:1", "variadic": false, "parameters": [], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
417
+{ "tag": "function", "name": "yaml_get_version", "location": "/usr/include/yaml.h:68:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "major", "type": { "tag": ":pointer", "type": { "tag": ":int" } } }, { "tag": "parameter", "name": "minor", "type": { "tag": ":pointer", "type": { "tag": ":int" } } }, { "tag": "parameter", "name": "patch", "type": { "tag": ":pointer", "type": { "tag": ":int" } } }], "return-type": { "tag": ":void" } },
418
+{ "tag": "typedef", "name": "yaml_char_t", "location": "/usr/include/yaml.h:78:23", "type": { "tag": ":unsigned-char" } },
419
+{ "tag": "struct", "name": "yaml_version_directive_s", "id": 0, "location": "/usr/include/yaml.h:81:16", "bit-size": 64, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "major", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "minor", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }] },
420
+{ "tag": "typedef", "name": "yaml_version_directive_t", "location": "/usr/include/yaml.h:86:3", "type": { "tag": ":struct", "name": "yaml_version_directive_s", "id": 0 } },
421
+{ "tag": "struct", "name": "yaml_tag_directive_s", "id": 0, "location": "/usr/include/yaml.h:89:16", "bit-size": 64, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "handle", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "field", "name": "prefix", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }] },
422
+{ "tag": "typedef", "name": "yaml_tag_directive_t", "location": "/usr/include/yaml.h:94:3", "type": { "tag": ":struct", "name": "yaml_tag_directive_s", "id": 0 } },
423
+{ "tag": "enum", "name": "yaml_encoding_e", "id": 0, "location": "/usr/include/yaml.h:97:14", "fields": [{ "tag": "field", "name": "YAML_ANY_ENCODING", "value": 0 }, { "tag": "field", "name": "YAML_UTF8_ENCODING", "value": 1 }, { "tag": "field", "name": "YAML_UTF16LE_ENCODING", "value": 2 }, { "tag": "field", "name": "YAML_UTF16BE_ENCODING", "value": 3 }] },
424
+{ "tag": "typedef", "name": "yaml_encoding_t", "location": "/usr/include/yaml.h:106:3", "type": { "tag": ":enum", "name": "yaml_encoding_e", "id": 0 } },
425
+{ "tag": "enum", "name": "yaml_break_e", "id": 0, "location": "/usr/include/yaml.h:110:14", "fields": [{ "tag": "field", "name": "YAML_ANY_BREAK", "value": 0 }, { "tag": "field", "name": "YAML_CR_BREAK", "value": 1 }, { "tag": "field", "name": "YAML_LN_BREAK", "value": 2 }, { "tag": "field", "name": "YAML_CRLN_BREAK", "value": 3 }] },
426
+{ "tag": "typedef", "name": "yaml_break_t", "location": "/usr/include/yaml.h:119:3", "type": { "tag": ":enum", "name": "yaml_break_e", "id": 0 } },
427
+{ "tag": "enum", "name": "yaml_error_type_e", "id": 0, "location": "/usr/include/yaml.h:122:14", "fields": [{ "tag": "field", "name": "YAML_NO_ERROR", "value": 0 }, { "tag": "field", "name": "YAML_MEMORY_ERROR", "value": 1 }, { "tag": "field", "name": "YAML_READER_ERROR", "value": 2 }, { "tag": "field", "name": "YAML_SCANNER_ERROR", "value": 3 }, { "tag": "field", "name": "YAML_PARSER_ERROR", "value": 4 }, { "tag": "field", "name": "YAML_COMPOSER_ERROR", "value": 5 }, { "tag": "field", "name": "YAML_WRITER_ERROR", "value": 6 }, { "tag": "field", "name": "YAML_EMITTER_ERROR", "value": 7 }] },
428
+{ "tag": "typedef", "name": "yaml_error_type_t", "location": "/usr/include/yaml.h:142:3", "type": { "tag": ":enum", "name": "yaml_error_type_e", "id": 0 } },
429
+{ "tag": "struct", "name": "yaml_mark_s", "id": 0, "location": "/usr/include/yaml.h:145:16", "bit-size": 96, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "index", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "size_t" } }, { "tag": "field", "name": "line", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "size_t" } }, { "tag": "field", "name": "column", "bit-offset": 64, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "size_t" } }] },
430
+{ "tag": "typedef", "name": "yaml_mark_t", "location": "/usr/include/yaml.h:154:3", "type": { "tag": ":struct", "name": "yaml_mark_s", "id": 0 } },
431
+{ "tag": "enum", "name": "yaml_scalar_style_e", "id": 0, "location": "/usr/include/yaml.h:164:14", "fields": [{ "tag": "field", "name": "YAML_ANY_SCALAR_STYLE", "value": 0 }, { "tag": "field", "name": "YAML_PLAIN_SCALAR_STYLE", "value": 1 }, { "tag": "field", "name": "YAML_SINGLE_QUOTED_SCALAR_STYLE", "value": 2 }, { "tag": "field", "name": "YAML_DOUBLE_QUOTED_SCALAR_STYLE", "value": 3 }, { "tag": "field", "name": "YAML_LITERAL_SCALAR_STYLE", "value": 4 }, { "tag": "field", "name": "YAML_FOLDED_SCALAR_STYLE", "value": 5 }] },
432
+{ "tag": "typedef", "name": "yaml_scalar_style_t", "location": "/usr/include/yaml.h:180:3", "type": { "tag": ":enum", "name": "yaml_scalar_style_e", "id": 0 } },
433
+{ "tag": "enum", "name": "yaml_sequence_style_e", "id": 0, "location": "/usr/include/yaml.h:183:14", "fields": [{ "tag": "field", "name": "YAML_ANY_SEQUENCE_STYLE", "value": 0 }, { "tag": "field", "name": "YAML_BLOCK_SEQUENCE_STYLE", "value": 1 }, { "tag": "field", "name": "YAML_FLOW_SEQUENCE_STYLE", "value": 2 }] },
434
+{ "tag": "typedef", "name": "yaml_sequence_style_t", "location": "/usr/include/yaml.h:191:3", "type": { "tag": ":enum", "name": "yaml_sequence_style_e", "id": 0 } },
435
+{ "tag": "enum", "name": "yaml_mapping_style_e", "id": 0, "location": "/usr/include/yaml.h:194:14", "fields": [{ "tag": "field", "name": "YAML_ANY_MAPPING_STYLE", "value": 0 }, { "tag": "field", "name": "YAML_BLOCK_MAPPING_STYLE", "value": 1 }, { "tag": "field", "name": "YAML_FLOW_MAPPING_STYLE", "value": 2 }] },
436
+{ "tag": "typedef", "name": "yaml_mapping_style_t", "location": "/usr/include/yaml.h:203:3", "type": { "tag": ":enum", "name": "yaml_mapping_style_e", "id": 0 } },
437
+{ "tag": "enum", "name": "yaml_token_type_e", "id": 0, "location": "/usr/include/yaml.h:213:14", "fields": [{ "tag": "field", "name": "YAML_NO_TOKEN", "value": 0 }, { "tag": "field", "name": "YAML_STREAM_START_TOKEN", "value": 1 }, { "tag": "field", "name": "YAML_STREAM_END_TOKEN", "value": 2 }, { "tag": "field", "name": "YAML_VERSION_DIRECTIVE_TOKEN", "value": 3 }, { "tag": "field", "name": "YAML_TAG_DIRECTIVE_TOKEN", "value": 4 }, { "tag": "field", "name": "YAML_DOCUMENT_START_TOKEN", "value": 5 }, { "tag": "field", "name": "YAML_DOCUMENT_END_TOKEN", "value": 6 }, { "tag": "field", "name": "YAML_BLOCK_SEQUENCE_START_TOKEN", "value": 7 }, { "tag": "field", "name": "YAML_BLOCK_MAPPING_START_TOKEN", "value": 8 }, { "tag": "field", "name": "YAML_BLOCK_END_TOKEN", "value": 9 }, { "tag": "field", "name": "YAML_FLOW_SEQUENCE_START_TOKEN", "value": 10 }, { "tag": "field", "name": "YAML_FLOW_SEQUENCE_END_TOKEN", "value": 11 }, { "tag": "field", "name": "YAML_FLOW_MAPPING_START_TOKEN", "value": 12 }, { "tag": "field", "name": "YAML_FLOW_MAPPING_END_TOKEN", "value": 13 }, { "tag": "field", "name": "YAML_BLOCK_ENTRY_TOKEN", "value": 14 }, { "tag": "field", "name": "YAML_FLOW_ENTRY_TOKEN", "value": 15 }, { "tag": "field", "name": "YAML_KEY_TOKEN", "value": 16 }, { "tag": "field", "name": "YAML_VALUE_TOKEN", "value": 17 }, { "tag": "field", "name": "YAML_ALIAS_TOKEN", "value": 18 }, { "tag": "field", "name": "YAML_ANCHOR_TOKEN", "value": 19 }, { "tag": "field", "name": "YAML_TAG_TOKEN", "value": 20 }, { "tag": "field", "name": "YAML_SCALAR_TOKEN", "value": 21 }] },
438
+{ "tag": "typedef", "name": "yaml_token_type_t", "location": "/usr/include/yaml.h:264:3", "type": { "tag": ":enum", "name": "yaml_token_type_e", "id": 0 } },
439
+{ "tag": "struct", "name": "yaml_token_s", "id": 0, "location": "/usr/include/yaml.h:267:16", "bit-size": 320, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "type", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "yaml_token_type_t" } }, { "tag": "field", "name": "data", "bit-offset": 32, "bit-size": 96, "bit-alignment": 32, "type": { "tag": "union", "name": "", "id": 25, "location": "/usr/include/yaml.h:273:5", "bit-size": 96, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "stream_start", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "struct", "name": "", "id": 26, "location": "/usr/include/yaml.h:276:9", "bit-size": 32, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "encoding", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "yaml_encoding_t" } }] } }, { "tag": "field", "name": "alias", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "struct", "name": "", "id": 27, "location": "/usr/include/yaml.h:282:9", "bit-size": 32, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "value", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }] } }, { "tag": "field", "name": "anchor", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "struct", "name": "", "id": 28, "location": "/usr/include/yaml.h:288:9", "bit-size": 32, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "value", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }] } }, { "tag": "field", "name": "tag", "bit-offset": 0, "bit-size": 64, "bit-alignment": 32, "type": { "tag": "struct", "name": "", "id": 29, "location": "/usr/include/yaml.h:294:9", "bit-size": 64, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "handle", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "field", "name": "suffix", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }] } }, { "tag": "field", "name": "scalar", "bit-offset": 0, "bit-size": 96, "bit-alignment": 32, "type": { "tag": "struct", "name": "", "id": 30, "location": "/usr/include/yaml.h:302:9", "bit-size": 96, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "value", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "field", "name": "length", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "size_t" } }, { "tag": "field", "name": "style", "bit-offset": 64, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "yaml_scalar_style_t" } }] } }, { "tag": "field", "name": "version_directive", "bit-offset": 0, "bit-size": 64, "bit-alignment": 32, "type": { "tag": "struct", "name": "", "id": 31, "location": "/usr/include/yaml.h:312:9", "bit-size": 64, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "major", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "minor", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }] } }, { "tag": "field", "name": "tag_directive", "bit-offset": 0, "bit-size": 64, "bit-alignment": 32, "type": { "tag": "struct", "name": "", "id": 32, "location": "/usr/include/yaml.h:320:9", "bit-size": 64, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "handle", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "field", "name": "prefix", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }] } }] } }, { "tag": "field", "name": "start_mark", "bit-offset": 128, "bit-size": 96, "bit-alignment": 32, "type": { "tag": "yaml_mark_t" } }, { "tag": "field", "name": "end_mark", "bit-offset": 224, "bit-size": 96, "bit-alignment": 32, "type": { "tag": "yaml_mark_t" } }] },
440
+{ "tag": "typedef", "name": "yaml_token_t", "location": "/usr/include/yaml.h:334:3", "type": { "tag": ":struct", "name": "yaml_token_s", "id": 0 } },
441
+{ "tag": "function", "name": "yaml_token_delete", "location": "/usr/include/yaml.h:343:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "token", "type": { "tag": ":pointer", "type": { "tag": "yaml_token_t" } } }], "return-type": { "tag": ":void" } },
442
+{ "tag": "enum", "name": "yaml_event_type_e", "id": 0, "location": "/usr/include/yaml.h:353:14", "fields": [{ "tag": "field", "name": "YAML_NO_EVENT", "value": 0 }, { "tag": "field", "name": "YAML_STREAM_START_EVENT", "value": 1 }, { "tag": "field", "name": "YAML_STREAM_END_EVENT", "value": 2 }, { "tag": "field", "name": "YAML_DOCUMENT_START_EVENT", "value": 3 }, { "tag": "field", "name": "YAML_DOCUMENT_END_EVENT", "value": 4 }, { "tag": "field", "name": "YAML_ALIAS_EVENT", "value": 5 }, { "tag": "field", "name": "YAML_SCALAR_EVENT", "value": 6 }, { "tag": "field", "name": "YAML_SEQUENCE_START_EVENT", "value": 7 }, { "tag": "field", "name": "YAML_SEQUENCE_END_EVENT", "value": 8 }, { "tag": "field", "name": "YAML_MAPPING_START_EVENT", "value": 9 }, { "tag": "field", "name": "YAML_MAPPING_END_EVENT", "value": 10 }] },
443
+{ "tag": "typedef", "name": "yaml_event_type_t", "location": "/usr/include/yaml.h:381:3", "type": { "tag": ":enum", "name": "yaml_event_type_e", "id": 0 } },
444
+{ "tag": "struct", "name": "yaml_event_s", "id": 0, "location": "/usr/include/yaml.h:384:16", "bit-size": 448, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "type", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "yaml_event_type_t" } }, { "tag": "field", "name": "data", "bit-offset": 32, "bit-size": 224, "bit-alignment": 32, "type": { "tag": "union", "name": "", "id": 33, "location": "/usr/include/yaml.h:390:5", "bit-size": 224, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "stream_start", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "struct", "name": "", "id": 34, "location": "/usr/include/yaml.h:393:9", "bit-size": 32, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "encoding", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "yaml_encoding_t" } }] } }, { "tag": "field", "name": "document_start", "bit-offset": 0, "bit-size": 128, "bit-alignment": 32, "type": { "tag": "struct", "name": "", "id": 35, "location": "/usr/include/yaml.h:399:9", "bit-size": 128, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "version_directive", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_version_directive_t" } } }, { "tag": "field", "name": "tag_directives", "bit-offset": 32, "bit-size": 64, "bit-alignment": 32, "type": { "tag": "struct", "name": "", "id": 36, "location": "/usr/include/yaml.h:404:13", "bit-size": 64, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "start", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_tag_directive_t" } } }, { "tag": "field", "name": "end", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_tag_directive_t" } } }] } }, { "tag": "field", "name": "implicit", "bit-offset": 96, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }] } }, { "tag": "field", "name": "document_end", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "struct", "name": "", "id": 37, "location": "/usr/include/yaml.h:416:9", "bit-size": 32, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "implicit", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }] } }, { "tag": "field", "name": "alias", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "struct", "name": "", "id": 38, "location": "/usr/include/yaml.h:422:9", "bit-size": 32, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "anchor", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }] } }, { "tag": "field", "name": "scalar", "bit-offset": 0, "bit-size": 224, "bit-alignment": 32, "type": { "tag": "struct", "name": "", "id": 39, "location": "/usr/include/yaml.h:428:9", "bit-size": 224, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "anchor", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "field", "name": "tag", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "field", "name": "value", "bit-offset": 64, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "field", "name": "length", "bit-offset": 96, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "size_t" } }, { "tag": "field", "name": "plain_implicit", "bit-offset": 128, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "quoted_implicit", "bit-offset": 160, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "style", "bit-offset": 192, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "yaml_scalar_style_t" } }] } }, { "tag": "field", "name": "sequence_start", "bit-offset": 0, "bit-size": 128, "bit-alignment": 32, "type": { "tag": "struct", "name": "", "id": 40, "location": "/usr/include/yaml.h:446:9", "bit-size": 128, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "anchor", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "field", "name": "tag", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "field", "name": "implicit", "bit-offset": 64, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "style", "bit-offset": 96, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "yaml_sequence_style_t" } }] } }, { "tag": "field", "name": "mapping_start", "bit-offset": 0, "bit-size": 128, "bit-alignment": 32, "type": { "tag": "struct", "name": "", "id": 41, "location": "/usr/include/yaml.h:458:9", "bit-size": 128, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "anchor", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "field", "name": "tag", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "field", "name": "implicit", "bit-offset": 64, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "style", "bit-offset": 96, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "yaml_mapping_style_t" } }] } }] } }, { "tag": "field", "name": "start_mark", "bit-offset": 256, "bit-size": 96, "bit-alignment": 32, "type": { "tag": "yaml_mark_t" } }, { "tag": "field", "name": "end_mark", "bit-offset": 352, "bit-size": 96, "bit-alignment": 32, "type": { "tag": "yaml_mark_t" } }] },
445
+{ "tag": "typedef", "name": "yaml_event_t", "location": "/usr/include/yaml.h:476:3", "type": { "tag": ":struct", "name": "yaml_event_s", "id": 0 } },
446
+{ "tag": "function", "name": "yaml_stream_start_event_initialize", "location": "/usr/include/yaml.h:488:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "event", "type": { "tag": ":pointer", "type": { "tag": "yaml_event_t" } } }, { "tag": "parameter", "name": "encoding", "type": { "tag": "yaml_encoding_t" } }], "return-type": { "tag": ":int" } },
447
+{ "tag": "function", "name": "yaml_stream_end_event_initialize", "location": "/usr/include/yaml.h:500:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "event", "type": { "tag": ":pointer", "type": { "tag": "yaml_event_t" } } }], "return-type": { "tag": ":int" } },
448
+{ "tag": "function", "name": "yaml_document_start_event_initialize", "location": "/usr/include/yaml.h:522:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "event", "type": { "tag": ":pointer", "type": { "tag": "yaml_event_t" } } }, { "tag": "parameter", "name": "version_directive", "type": { "tag": ":pointer", "type": { "tag": "yaml_version_directive_t" } } }, { "tag": "parameter", "name": "tag_directives_start", "type": { "tag": ":pointer", "type": { "tag": "yaml_tag_directive_t" } } }, { "tag": "parameter", "name": "tag_directives_end", "type": { "tag": ":pointer", "type": { "tag": "yaml_tag_directive_t" } } }, { "tag": "parameter", "name": "implicit", "type": { "tag": ":int" } }], "return-type": { "tag": ":int" } },
449
+{ "tag": "function", "name": "yaml_document_end_event_initialize", "location": "/usr/include/yaml.h:541:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "event", "type": { "tag": ":pointer", "type": { "tag": "yaml_event_t" } } }, { "tag": "parameter", "name": "implicit", "type": { "tag": ":int" } }], "return-type": { "tag": ":int" } },
450
+{ "tag": "function", "name": "yaml_alias_event_initialize", "location": "/usr/include/yaml.h:553:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "event", "type": { "tag": ":pointer", "type": { "tag": "yaml_event_t" } } }, { "tag": "parameter", "name": "anchor", "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }], "return-type": { "tag": ":int" } },
451
+{ "tag": "function", "name": "yaml_scalar_event_initialize", "location": "/usr/include/yaml.h:578:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "event", "type": { "tag": ":pointer", "type": { "tag": "yaml_event_t" } } }, { "tag": "parameter", "name": "anchor", "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "parameter", "name": "tag", "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "parameter", "name": "value", "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "parameter", "name": "length", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "plain_implicit", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "quoted_implicit", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "style", "type": { "tag": "yaml_scalar_style_t" } }], "return-type": { "tag": ":int" } },
452
+{ "tag": "function", "name": "yaml_sequence_start_event_initialize", "location": "/usr/include/yaml.h:601:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "event", "type": { "tag": ":pointer", "type": { "tag": "yaml_event_t" } } }, { "tag": "parameter", "name": "anchor", "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "parameter", "name": "tag", "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "parameter", "name": "implicit", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "style", "type": { "tag": "yaml_sequence_style_t" } }], "return-type": { "tag": ":int" } },
453
+{ "tag": "function", "name": "yaml_sequence_end_event_initialize", "location": "/usr/include/yaml.h:614:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "event", "type": { "tag": ":pointer", "type": { "tag": "yaml_event_t" } } }], "return-type": { "tag": ":int" } },
454
+{ "tag": "function", "name": "yaml_mapping_start_event_initialize", "location": "/usr/include/yaml.h:633:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "event", "type": { "tag": ":pointer", "type": { "tag": "yaml_event_t" } } }, { "tag": "parameter", "name": "anchor", "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "parameter", "name": "tag", "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "parameter", "name": "implicit", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "style", "type": { "tag": "yaml_mapping_style_t" } }], "return-type": { "tag": ":int" } },
455
+{ "tag": "function", "name": "yaml_mapping_end_event_initialize", "location": "/usr/include/yaml.h:646:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "event", "type": { "tag": ":pointer", "type": { "tag": "yaml_event_t" } } }], "return-type": { "tag": ":int" } },
456
+{ "tag": "function", "name": "yaml_event_delete", "location": "/usr/include/yaml.h:655:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "event", "type": { "tag": ":pointer", "type": { "tag": "yaml_event_t" } } }], "return-type": { "tag": ":void" } },
457
+{ "tag": "enum", "name": "yaml_node_type_e", "id": 0, "location": "/usr/include/yaml.h:690:14", "fields": [{ "tag": "field", "name": "YAML_NO_NODE", "value": 0 }, { "tag": "field", "name": "YAML_SCALAR_NODE", "value": 1 }, { "tag": "field", "name": "YAML_SEQUENCE_NODE", "value": 2 }, { "tag": "field", "name": "YAML_MAPPING_NODE", "value": 3 }] },
458
+{ "tag": "typedef", "name": "yaml_node_type_t", "location": "/usr/include/yaml.h:700:3", "type": { "tag": ":enum", "name": "yaml_node_type_e", "id": 0 } },
459
+{ "tag": "struct", "name": "yaml_node_s", "id": 0, "location": "/usr/include/yaml.h:703:16", "bit-size": 0, "bit-alignment": 0, "fields": [] },
460
+{ "tag": "typedef", "name": "yaml_node_t", "location": "/usr/include/yaml.h:703:28", "type": { "tag": ":struct", "name": "yaml_node_s", "id": 0 } },
461
+{ "tag": "typedef", "name": "yaml_node_item_t", "location": "/usr/include/yaml.h:706:13", "type": { "tag": ":int" } },
462
+{ "tag": "struct", "name": "yaml_node_pair_s", "id": 0, "location": "/usr/include/yaml.h:709:16", "bit-size": 64, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "key", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "value", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }] },
463
+{ "tag": "typedef", "name": "yaml_node_pair_t", "location": "/usr/include/yaml.h:714:3", "type": { "tag": ":struct", "name": "yaml_node_pair_s", "id": 0 } },
464
+{ "tag": "struct", "name": "yaml_node_s", "id": 0, "location": "/usr/include/yaml.h:717:8", "bit-size": 384, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "type", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "yaml_node_type_t" } }, { "tag": "field", "name": "tag", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "field", "name": "data", "bit-offset": 64, "bit-size": 128, "bit-alignment": 32, "type": { "tag": "union", "name": "", "id": 42, "location": "/usr/include/yaml.h:726:5", "bit-size": 128, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "scalar", "bit-offset": 0, "bit-size": 96, "bit-alignment": 32, "type": { "tag": "struct", "name": "", "id": 43, "location": "/usr/include/yaml.h:729:9", "bit-size": 96, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "value", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "field", "name": "length", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "size_t" } }, { "tag": "field", "name": "style", "bit-offset": 64, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "yaml_scalar_style_t" } }] } }, { "tag": "field", "name": "sequence", "bit-offset": 0, "bit-size": 128, "bit-alignment": 32, "type": { "tag": "struct", "name": "", "id": 44, "location": "/usr/include/yaml.h:739:9", "bit-size": 128, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "items", "bit-offset": 0, "bit-size": 96, "bit-alignment": 32, "type": { "tag": "struct", "name": "", "id": 45, "location": "/usr/include/yaml.h:741:13", "bit-size": 96, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "start", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_node_item_t" } } }, { "tag": "field", "name": "end", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_node_item_t" } } }, { "tag": "field", "name": "top", "bit-offset": 64, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_node_item_t" } } }] } }, { "tag": "field", "name": "style", "bit-offset": 96, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "yaml_sequence_style_t" } }] } }, { "tag": "field", "name": "mapping", "bit-offset": 0, "bit-size": 128, "bit-alignment": 32, "type": { "tag": "struct", "name": "", "id": 46, "location": "/usr/include/yaml.h:754:9", "bit-size": 128, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "pairs", "bit-offset": 0, "bit-size": 96, "bit-alignment": 32, "type": { "tag": "struct", "name": "", "id": 47, "location": "/usr/include/yaml.h:756:13", "bit-size": 96, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "start", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_node_pair_t" } } }, { "tag": "field", "name": "end", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_node_pair_t" } } }, { "tag": "field", "name": "top", "bit-offset": 64, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_node_pair_t" } } }] } }, { "tag": "field", "name": "style", "bit-offset": 96, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "yaml_mapping_style_t" } }] } }] } }, { "tag": "field", "name": "start_mark", "bit-offset": 192, "bit-size": 96, "bit-alignment": 32, "type": { "tag": "yaml_mark_t" } }, { "tag": "field", "name": "end_mark", "bit-offset": 288, "bit-size": 96, "bit-alignment": 32, "type": { "tag": "yaml_mark_t" } }] },
465
+{ "tag": "struct", "name": "yaml_document_s", "id": 0, "location": "/usr/include/yaml.h:778:16", "bit-size": 448, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "nodes", "bit-offset": 0, "bit-size": 96, "bit-alignment": 32, "type": { "tag": "struct", "name": "", "id": 48, "location": "/usr/include/yaml.h:781:5", "bit-size": 96, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "start", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_node_t" } } }, { "tag": "field", "name": "end", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_node_t" } } }, { "tag": "field", "name": "top", "bit-offset": 64, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_node_t" } } }] } }, { "tag": "field", "name": "version_directive", "bit-offset": 96, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_version_directive_t" } } }, { "tag": "field", "name": "tag_directives", "bit-offset": 128, "bit-size": 64, "bit-alignment": 32, "type": { "tag": "struct", "name": "", "id": 49, "location": "/usr/include/yaml.h:794:5", "bit-size": 64, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "start", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_tag_directive_t" } } }, { "tag": "field", "name": "end", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_tag_directive_t" } } }] } }, { "tag": "field", "name": "start_implicit", "bit-offset": 192, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "end_implicit", "bit-offset": 224, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "start_mark", "bit-offset": 256, "bit-size": 96, "bit-alignment": 32, "type": { "tag": "yaml_mark_t" } }, { "tag": "field", "name": "end_mark", "bit-offset": 352, "bit-size": 96, "bit-alignment": 32, "type": { "tag": "yaml_mark_t" } }] },
466
+{ "tag": "typedef", "name": "yaml_document_t", "location": "/usr/include/yaml.h:811:3", "type": { "tag": ":struct", "name": "yaml_document_s", "id": 0 } },
467
+{ "tag": "function", "name": "yaml_document_initialize", "location": "/usr/include/yaml.h:832:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "document", "type": { "tag": ":pointer", "type": { "tag": "yaml_document_t" } } }, { "tag": "parameter", "name": "version_directive", "type": { "tag": ":pointer", "type": { "tag": "yaml_version_directive_t" } } }, { "tag": "parameter", "name": "tag_directives_start", "type": { "tag": ":pointer", "type": { "tag": "yaml_tag_directive_t" } } }, { "tag": "parameter", "name": "tag_directives_end", "type": { "tag": ":pointer", "type": { "tag": "yaml_tag_directive_t" } } }, { "tag": "parameter", "name": "start_implicit", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "end_implicit", "type": { "tag": ":int" } }], "return-type": { "tag": ":int" } },
468
+{ "tag": "function", "name": "yaml_document_delete", "location": "/usr/include/yaml.h:845:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "document", "type": { "tag": ":pointer", "type": { "tag": "yaml_document_t" } } }], "return-type": { "tag": ":void" } },
469
+{ "tag": "function", "name": "yaml_document_get_node", "location": "/usr/include/yaml.h:860:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "document", "type": { "tag": ":pointer", "type": { "tag": "yaml_document_t" } } }, { "tag": "parameter", "name": "index", "type": { "tag": ":int" } }], "return-type": { "tag": ":pointer", "type": { "tag": "yaml_node_t" } } },
470
+{ "tag": "function", "name": "yaml_document_get_root_node", "location": "/usr/include/yaml.h:879:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "document", "type": { "tag": ":pointer", "type": { "tag": "yaml_document_t" } } }], "return-type": { "tag": ":pointer", "type": { "tag": "yaml_node_t" } } },
471
+{ "tag": "function", "name": "yaml_document_add_scalar", "location": "/usr/include/yaml.h:896:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "document", "type": { "tag": ":pointer", "type": { "tag": "yaml_document_t" } } }, { "tag": "parameter", "name": "tag", "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "parameter", "name": "value", "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "parameter", "name": "length", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "style", "type": { "tag": "yaml_scalar_style_t" } }], "return-type": { "tag": ":int" } },
472
+{ "tag": "function", "name": "yaml_document_add_sequence", "location": "/usr/include/yaml.h:913:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "document", "type": { "tag": ":pointer", "type": { "tag": "yaml_document_t" } } }, { "tag": "parameter", "name": "tag", "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "parameter", "name": "style", "type": { "tag": "yaml_sequence_style_t" } }], "return-type": { "tag": ":int" } },
473
+{ "tag": "function", "name": "yaml_document_add_mapping", "location": "/usr/include/yaml.h:929:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "document", "type": { "tag": ":pointer", "type": { "tag": "yaml_document_t" } } }, { "tag": "parameter", "name": "tag", "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "parameter", "name": "style", "type": { "tag": "yaml_mapping_style_t" } }], "return-type": { "tag": ":int" } },
474
+{ "tag": "function", "name": "yaml_document_append_sequence_item", "location": "/usr/include/yaml.h:943:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "document", "type": { "tag": ":pointer", "type": { "tag": "yaml_document_t" } } }, { "tag": "parameter", "name": "sequence", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "item", "type": { "tag": ":int" } }], "return-type": { "tag": ":int" } },
475
+{ "tag": "function", "name": "yaml_document_append_mapping_pair", "location": "/usr/include/yaml.h:958:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "document", "type": { "tag": ":pointer", "type": { "tag": "yaml_document_t" } } }, { "tag": "parameter", "name": "mapping", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "key", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "value", "type": { "tag": ":int" } }], "return-type": { "tag": ":int" } },
476
+{ "tag": "typedef", "name": "yaml_read_handler_t", "location": "/usr/include/yaml.h:986:13", "type": { "tag": ":function" } },
477
+{ "tag": "struct", "name": "yaml_simple_key_s", "id": 0, "location": "/usr/include/yaml.h:993:16", "bit-size": 192, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "possible", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "required", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "token_number", "bit-offset": 64, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "size_t" } }, { "tag": "field", "name": "mark", "bit-offset": 96, "bit-size": 96, "bit-alignment": 32, "type": { "tag": "yaml_mark_t" } }] },
478
+{ "tag": "typedef", "name": "yaml_simple_key_t", "location": "/usr/include/yaml.h:1005:3", "type": { "tag": ":struct", "name": "yaml_simple_key_s", "id": 0 } },
479
+{ "tag": "enum", "name": "yaml_parser_state_e", "id": 0, "location": "/usr/include/yaml.h:1010:14", "fields": [{ "tag": "field", "name": "YAML_PARSE_STREAM_START_STATE", "value": 0 }, { "tag": "field", "name": "YAML_PARSE_IMPLICIT_DOCUMENT_START_STATE", "value": 1 }, { "tag": "field", "name": "YAML_PARSE_DOCUMENT_START_STATE", "value": 2 }, { "tag": "field", "name": "YAML_PARSE_DOCUMENT_CONTENT_STATE", "value": 3 }, { "tag": "field", "name": "YAML_PARSE_DOCUMENT_END_STATE", "value": 4 }, { "tag": "field", "name": "YAML_PARSE_BLOCK_NODE_STATE", "value": 5 }, { "tag": "field", "name": "YAML_PARSE_BLOCK_NODE_OR_INDENTLESS_SEQUENCE_STATE", "value": 6 }, { "tag": "field", "name": "YAML_PARSE_FLOW_NODE_STATE", "value": 7 }, { "tag": "field", "name": "YAML_PARSE_BLOCK_SEQUENCE_FIRST_ENTRY_STATE", "value": 8 }, { "tag": "field", "name": "YAML_PARSE_BLOCK_SEQUENCE_ENTRY_STATE", "value": 9 }, { "tag": "field", "name": "YAML_PARSE_INDENTLESS_SEQUENCE_ENTRY_STATE", "value": 10 }, { "tag": "field", "name": "YAML_PARSE_BLOCK_MAPPING_FIRST_KEY_STATE", "value": 11 }, { "tag": "field", "name": "YAML_PARSE_BLOCK_MAPPING_KEY_STATE", "value": 12 }, { "tag": "field", "name": "YAML_PARSE_BLOCK_MAPPING_VALUE_STATE", "value": 13 }, { "tag": "field", "name": "YAML_PARSE_FLOW_SEQUENCE_FIRST_ENTRY_STATE", "value": 14 }, { "tag": "field", "name": "YAML_PARSE_FLOW_SEQUENCE_ENTRY_STATE", "value": 15 }, { "tag": "field", "name": "YAML_PARSE_FLOW_SEQUENCE_ENTRY_MAPPING_KEY_STATE", "value": 16 }, { "tag": "field", "name": "YAML_PARSE_FLOW_SEQUENCE_ENTRY_MAPPING_VALUE_STATE", "value": 17 }, { "tag": "field", "name": "YAML_PARSE_FLOW_SEQUENCE_ENTRY_MAPPING_END_STATE", "value": 18 }, { "tag": "field", "name": "YAML_PARSE_FLOW_MAPPING_FIRST_KEY_STATE", "value": 19 }, { "tag": "field", "name": "YAML_PARSE_FLOW_MAPPING_KEY_STATE", "value": 20 }, { "tag": "field", "name": "YAML_PARSE_FLOW_MAPPING_VALUE_STATE", "value": 21 }, { "tag": "field", "name": "YAML_PARSE_FLOW_MAPPING_EMPTY_VALUE_STATE", "value": 22 }, { "tag": "field", "name": "YAML_PARSE_END_STATE", "value": 23 }] },
480
+{ "tag": "typedef", "name": "yaml_parser_state_t", "location": "/usr/include/yaml.h:1059:3", "type": { "tag": ":enum", "name": "yaml_parser_state_e", "id": 0 } },
481
+{ "tag": "struct", "name": "yaml_alias_data_s", "id": 0, "location": "/usr/include/yaml.h:1065:16", "bit-size": 160, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "anchor", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "field", "name": "index", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "mark", "bit-offset": 64, "bit-size": 96, "bit-alignment": 32, "type": { "tag": "yaml_mark_t" } }] },
482
+{ "tag": "typedef", "name": "yaml_alias_data_t", "location": "/usr/include/yaml.h:1072:3", "type": { "tag": ":struct", "name": "yaml_alias_data_s", "id": 0 } },
483
+{ "tag": "struct", "name": "yaml_parser_s", "id": 0, "location": "/usr/include/yaml.h:1081:16", "bit-size": 1984, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "error", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "yaml_error_type_t" } }, { "tag": "field", "name": "problem", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "field", "name": "problem_offset", "bit-offset": 64, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "size_t" } }, { "tag": "field", "name": "problem_value", "bit-offset": 96, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "problem_mark", "bit-offset": 128, "bit-size": 96, "bit-alignment": 32, "type": { "tag": "yaml_mark_t" } }, { "tag": "field", "name": "context", "bit-offset": 224, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "field", "name": "context_mark", "bit-offset": 256, "bit-size": 96, "bit-alignment": 32, "type": { "tag": "yaml_mark_t" } }, { "tag": "field", "name": "read_handler", "bit-offset": 352, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":function-pointer" } }, { "tag": "field", "name": "read_handler_data", "bit-offset": 384, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "field", "name": "input", "bit-offset": 416, "bit-size": 96, "bit-alignment": 32, "type": { "tag": "union", "name": "", "id": 50, "location": "/usr/include/yaml.h:1119:5", "bit-size": 96, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "string", "bit-offset": 0, "bit-size": 96, "bit-alignment": 32, "type": { "tag": "struct", "name": "", "id": 51, "location": "/usr/include/yaml.h:1121:9", "bit-size": 96, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "start", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": ":unsigned-char" } } }, { "tag": "field", "name": "end", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": ":unsigned-char" } } }, { "tag": "field", "name": "current", "bit-offset": 64, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": ":unsigned-char" } } }] } }, { "tag": "field", "name": "file", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }] } }, { "tag": "field", "name": "eof", "bit-offset": 512, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "buffer", "bit-offset": 544, "bit-size": 128, "bit-alignment": 32, "type": { "tag": "struct", "name": "", "id": 52, "location": "/usr/include/yaml.h:1138:5", "bit-size": 128, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "start", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "field", "name": "end", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "field", "name": "pointer", "bit-offset": 64, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "field", "name": "last", "bit-offset": 96, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }] } }, { "tag": "field", "name": "unread", "bit-offset": 672, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "size_t" } }, { "tag": "field", "name": "raw_buffer", "bit-offset": 704, "bit-size": 128, "bit-alignment": 32, "type": { "tag": "struct", "name": "", "id": 53, "location": "/usr/include/yaml.h:1153:5", "bit-size": 128, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "start", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": ":unsigned-char" } } }, { "tag": "field", "name": "end", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": ":unsigned-char" } } }, { "tag": "field", "name": "pointer", "bit-offset": 64, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": ":unsigned-char" } } }, { "tag": "field", "name": "last", "bit-offset": 96, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": ":unsigned-char" } } }] } }, { "tag": "field", "name": "encoding", "bit-offset": 832, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "yaml_encoding_t" } }, { "tag": "field", "name": "offset", "bit-offset": 864, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "size_t" } }, { "tag": "field", "name": "mark", "bit-offset": 896, "bit-size": 96, "bit-alignment": 32, "type": { "tag": "yaml_mark_t" } }, { "tag": "field", "name": "stream_start_produced", "bit-offset": 992, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "stream_end_produced", "bit-offset": 1024, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "flow_level", "bit-offset": 1056, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "tokens", "bit-offset": 1088, "bit-size": 128, "bit-alignment": 32, "type": { "tag": "struct", "name": "", "id": 54, "location": "/usr/include/yaml.h:1192:5", "bit-size": 128, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "start", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_token_t" } } }, { "tag": "field", "name": "end", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_token_t" } } }, { "tag": "field", "name": "head", "bit-offset": 64, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_token_t" } } }, { "tag": "field", "name": "tail", "bit-offset": 96, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_token_t" } } }] } }, { "tag": "field", "name": "tokens_parsed", "bit-offset": 1216, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "size_t" } }, { "tag": "field", "name": "token_available", "bit-offset": 1248, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "indents", "bit-offset": 1280, "bit-size": 96, "bit-alignment": 32, "type": { "tag": "struct", "name": "", "id": 55, "location": "/usr/include/yaml.h:1210:5", "bit-size": 96, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "start", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": ":int" } } }, { "tag": "field", "name": "end", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": ":int" } } }, { "tag": "field", "name": "top", "bit-offset": 64, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": ":int" } } }] } }, { "tag": "field", "name": "indent", "bit-offset": 1376, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "simple_key_allowed", "bit-offset": 1408, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "simple_keys", "bit-offset": 1440, "bit-size": 96, "bit-alignment": 32, "type": { "tag": "struct", "name": "", "id": 56, "location": "/usr/include/yaml.h:1226:5", "bit-size": 96, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "start", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_simple_key_t" } } }, { "tag": "field", "name": "end", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_simple_key_t" } } }, { "tag": "field", "name": "top", "bit-offset": 64, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_simple_key_t" } } }] } }, { "tag": "field", "name": "states", "bit-offset": 1536, "bit-size": 96, "bit-alignment": 32, "type": { "tag": "struct", "name": "", "id": 57, "location": "/usr/include/yaml.h:1245:5", "bit-size": 96, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "start", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_parser_state_t" } } }, { "tag": "field", "name": "end", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_parser_state_t" } } }, { "tag": "field", "name": "top", "bit-offset": 64, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_parser_state_t" } } }] } }, { "tag": "field", "name": "state", "bit-offset": 1632, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "yaml_parser_state_t" } }, { "tag": "field", "name": "marks", "bit-offset": 1664, "bit-size": 96, "bit-alignment": 32, "type": { "tag": "struct", "name": "", "id": 58, "location": "/usr/include/yaml.h:1258:5", "bit-size": 96, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "start", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_mark_t" } } }, { "tag": "field", "name": "end", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_mark_t" } } }, { "tag": "field", "name": "top", "bit-offset": 64, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_mark_t" } } }] } }, { "tag": "field", "name": "tag_directives", "bit-offset": 1760, "bit-size": 96, "bit-alignment": 32, "type": { "tag": "struct", "name": "", "id": 59, "location": "/usr/include/yaml.h:1268:5", "bit-size": 96, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "start", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_tag_directive_t" } } }, { "tag": "field", "name": "end", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_tag_directive_t" } } }, { "tag": "field", "name": "top", "bit-offset": 64, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_tag_directive_t" } } }] } }, { "tag": "field", "name": "aliases", "bit-offset": 1856, "bit-size": 96, "bit-alignment": 32, "type": { "tag": "struct", "name": "", "id": 60, "location": "/usr/include/yaml.h:1287:5", "bit-size": 96, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "start", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_alias_data_t" } } }, { "tag": "field", "name": "end", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_alias_data_t" } } }, { "tag": "field", "name": "top", "bit-offset": 64, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_alias_data_t" } } }] } }, { "tag": "field", "name": "document", "bit-offset": 1952, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_document_t" } } }] },
484
+{ "tag": "typedef", "name": "yaml_parser_t", "location": "/usr/include/yaml.h:1303:3", "type": { "tag": ":struct", "name": "yaml_parser_s", "id": 0 } },
485
+{ "tag": "function", "name": "yaml_parser_initialize", "location": "/usr/include/yaml.h:1317:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "parser", "type": { "tag": ":pointer", "type": { "tag": "yaml_parser_t" } } }], "return-type": { "tag": ":int" } },
486
+{ "tag": "function", "name": "yaml_parser_delete", "location": "/usr/include/yaml.h:1326:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "parser", "type": { "tag": ":pointer", "type": { "tag": "yaml_parser_t" } } }], "return-type": { "tag": ":void" } },
487
+{ "tag": "function", "name": "yaml_parser_set_input_string", "location": "/usr/include/yaml.h:1341:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "parser", "type": { "tag": ":pointer", "type": { "tag": "yaml_parser_t" } } }, { "tag": "parameter", "name": "input", "type": { "tag": ":pointer", "type": { "tag": ":unsigned-char" } } }, { "tag": "parameter", "name": "size", "type": { "tag": "size_t" } }], "return-type": { "tag": ":void" } },
488
+{ "tag": "function", "name": "yaml_parser_set_input_file", "location": "/usr/include/yaml.h:1355:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "parser", "type": { "tag": ":pointer", "type": { "tag": "yaml_parser_t" } } }, { "tag": "parameter", "name": "file", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":void" } },
489
+{ "tag": "function", "name": "yaml_parser_set_input", "location": "/usr/include/yaml.h:1367:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "parser", "type": { "tag": ":pointer", "type": { "tag": "yaml_parser_t" } } }, { "tag": "parameter", "name": "handler", "type": { "tag": ":function-pointer" } }, { "tag": "parameter", "name": "data", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": ":void" } },
490
+{ "tag": "function", "name": "yaml_parser_set_encoding", "location": "/usr/include/yaml.h:1378:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "parser", "type": { "tag": ":pointer", "type": { "tag": "yaml_parser_t" } } }, { "tag": "parameter", "name": "encoding", "type": { "tag": "yaml_encoding_t" } }], "return-type": { "tag": ":void" } },
491
+{ "tag": "function", "name": "yaml_parser_scan", "location": "/usr/include/yaml.h:1402:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "parser", "type": { "tag": ":pointer", "type": { "tag": "yaml_parser_t" } } }, { "tag": "parameter", "name": "token", "type": { "tag": ":pointer", "type": { "tag": "yaml_token_t" } } }], "return-type": { "tag": ":int" } },
492
+{ "tag": "function", "name": "yaml_parser_parse", "location": "/usr/include/yaml.h:1426:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "parser", "type": { "tag": ":pointer", "type": { "tag": "yaml_parser_t" } } }, { "tag": "parameter", "name": "event", "type": { "tag": ":pointer", "type": { "tag": "yaml_event_t" } } }], "return-type": { "tag": ":int" } },
493
+{ "tag": "function", "name": "yaml_parser_load", "location": "/usr/include/yaml.h:1451:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "parser", "type": { "tag": ":pointer", "type": { "tag": "yaml_parser_t" } } }, { "tag": "parameter", "name": "document", "type": { "tag": ":pointer", "type": { "tag": "yaml_document_t" } } }], "return-type": { "tag": ":int" } },
494
+{ "tag": "typedef", "name": "yaml_write_handler_t", "location": "/usr/include/yaml.h:1476:13", "type": { "tag": ":function" } },
495
+{ "tag": "enum", "name": "yaml_emitter_state_e", "id": 0, "location": "/usr/include/yaml.h:1479:14", "fields": [{ "tag": "field", "name": "YAML_EMIT_STREAM_START_STATE", "value": 0 }, { "tag": "field", "name": "YAML_EMIT_FIRST_DOCUMENT_START_STATE", "value": 1 }, { "tag": "field", "name": "YAML_EMIT_DOCUMENT_START_STATE", "value": 2 }, { "tag": "field", "name": "YAML_EMIT_DOCUMENT_CONTENT_STATE", "value": 3 }, { "tag": "field", "name": "YAML_EMIT_DOCUMENT_END_STATE", "value": 4 }, { "tag": "field", "name": "YAML_EMIT_FLOW_SEQUENCE_FIRST_ITEM_STATE", "value": 5 }, { "tag": "field", "name": "YAML_EMIT_FLOW_SEQUENCE_ITEM_STATE", "value": 6 }, { "tag": "field", "name": "YAML_EMIT_FLOW_MAPPING_FIRST_KEY_STATE", "value": 7 }, { "tag": "field", "name": "YAML_EMIT_FLOW_MAPPING_KEY_STATE", "value": 8 }, { "tag": "field", "name": "YAML_EMIT_FLOW_MAPPING_SIMPLE_VALUE_STATE", "value": 9 }, { "tag": "field", "name": "YAML_EMIT_FLOW_MAPPING_VALUE_STATE", "value": 10 }, { "tag": "field", "name": "YAML_EMIT_BLOCK_SEQUENCE_FIRST_ITEM_STATE", "value": 11 }, { "tag": "field", "name": "YAML_EMIT_BLOCK_SEQUENCE_ITEM_STATE", "value": 12 }, { "tag": "field", "name": "YAML_EMIT_BLOCK_MAPPING_FIRST_KEY_STATE", "value": 13 }, { "tag": "field", "name": "YAML_EMIT_BLOCK_MAPPING_KEY_STATE", "value": 14 }, { "tag": "field", "name": "YAML_EMIT_BLOCK_MAPPING_SIMPLE_VALUE_STATE", "value": 15 }, { "tag": "field", "name": "YAML_EMIT_BLOCK_MAPPING_VALUE_STATE", "value": 16 }, { "tag": "field", "name": "YAML_EMIT_END_STATE", "value": 17 }] },
496
+{ "tag": "typedef", "name": "yaml_emitter_state_t", "location": "/usr/include/yaml.h:1516:3", "type": { "tag": ":enum", "name": "yaml_emitter_state_e", "id": 0 } },
497
+{ "tag": "struct", "name": "yaml_emitter_s", "id": 0, "location": "/usr/include/yaml.h:1525:16", "bit-size": 2112, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "error", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "yaml_error_type_t" } }, { "tag": "field", "name": "problem", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "field", "name": "write_handler", "bit-offset": 64, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":function-pointer" } }, { "tag": "field", "name": "write_handler_data", "bit-offset": 96, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "field", "name": "output", "bit-offset": 128, "bit-size": 96, "bit-alignment": 32, "type": { "tag": "union", "name": "", "id": 61, "location": "/usr/include/yaml.h:1553:5", "bit-size": 96, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "string", "bit-offset": 0, "bit-size": 96, "bit-alignment": 32, "type": { "tag": "struct", "name": "", "id": 62, "location": "/usr/include/yaml.h:1555:9", "bit-size": 96, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "buffer", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": ":unsigned-char" } } }, { "tag": "field", "name": "size", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "size_t" } }, { "tag": "field", "name": "size_written", "bit-offset": 64, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "size_t" } } }] } }, { "tag": "field", "name": "file", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }] } }, { "tag": "field", "name": "buffer", "bit-offset": 224, "bit-size": 128, "bit-alignment": 32, "type": { "tag": "struct", "name": "", "id": 63, "location": "/usr/include/yaml.h:1569:5", "bit-size": 128, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "start", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "field", "name": "end", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "field", "name": "pointer", "bit-offset": 64, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "field", "name": "last", "bit-offset": 96, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }] } }, { "tag": "field", "name": "raw_buffer", "bit-offset": 352, "bit-size": 128, "bit-alignment": 32, "type": { "tag": "struct", "name": "", "id": 64, "location": "/usr/include/yaml.h:1581:5", "bit-size": 128, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "start", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": ":unsigned-char" } } }, { "tag": "field", "name": "end", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": ":unsigned-char" } } }, { "tag": "field", "name": "pointer", "bit-offset": 64, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": ":unsigned-char" } } }, { "tag": "field", "name": "last", "bit-offset": 96, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": ":unsigned-char" } } }] } }, { "tag": "field", "name": "encoding", "bit-offset": 480, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "yaml_encoding_t" } }, { "tag": "field", "name": "canonical", "bit-offset": 512, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "best_indent", "bit-offset": 544, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "best_width", "bit-offset": 576, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "unicode", "bit-offset": 608, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "line_break", "bit-offset": 640, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "yaml_break_t" } }, { "tag": "field", "name": "states", "bit-offset": 672, "bit-size": 96, "bit-alignment": 32, "type": { "tag": "struct", "name": "", "id": 65, "location": "/usr/include/yaml.h:1616:5", "bit-size": 96, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "start", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_emitter_state_t" } } }, { "tag": "field", "name": "end", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_emitter_state_t" } } }, { "tag": "field", "name": "top", "bit-offset": 64, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_emitter_state_t" } } }] } }, { "tag": "field", "name": "state", "bit-offset": 768, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "yaml_emitter_state_t" } }, { "tag": "field", "name": "events", "bit-offset": 800, "bit-size": 128, "bit-alignment": 32, "type": { "tag": "struct", "name": "", "id": 66, "location": "/usr/include/yaml.h:1629:5", "bit-size": 128, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "start", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_event_t" } } }, { "tag": "field", "name": "end", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_event_t" } } }, { "tag": "field", "name": "head", "bit-offset": 64, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_event_t" } } }, { "tag": "field", "name": "tail", "bit-offset": 96, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_event_t" } } }] } }, { "tag": "field", "name": "indents", "bit-offset": 928, "bit-size": 96, "bit-alignment": 32, "type": { "tag": "struct", "name": "", "id": 67, "location": "/usr/include/yaml.h:1641:5", "bit-size": 96, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "start", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": ":int" } } }, { "tag": "field", "name": "end", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": ":int" } } }, { "tag": "field", "name": "top", "bit-offset": 64, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": ":int" } } }] } }, { "tag": "field", "name": "tag_directives", "bit-offset": 1024, "bit-size": 96, "bit-alignment": 32, "type": { "tag": "struct", "name": "", "id": 68, "location": "/usr/include/yaml.h:1651:5", "bit-size": 96, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "start", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_tag_directive_t" } } }, { "tag": "field", "name": "end", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_tag_directive_t" } } }, { "tag": "field", "name": "top", "bit-offset": 64, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_tag_directive_t" } } }] } }, { "tag": "field", "name": "indent", "bit-offset": 1120, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "flow_level", "bit-offset": 1152, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "root_context", "bit-offset": 1184, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "sequence_context", "bit-offset": 1216, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "mapping_context", "bit-offset": 1248, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "simple_key_context", "bit-offset": 1280, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "line", "bit-offset": 1312, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "column", "bit-offset": 1344, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "whitespace", "bit-offset": 1376, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "indention", "bit-offset": 1408, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "open_ended", "bit-offset": 1440, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "anchor_data", "bit-offset": 1472, "bit-size": 96, "bit-alignment": 32, "type": { "tag": "struct", "name": "", "id": 69, "location": "/usr/include/yaml.h:1687:5", "bit-size": 96, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "anchor", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "field", "name": "anchor_length", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "size_t" } }, { "tag": "field", "name": "alias", "bit-offset": 64, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }] } }, { "tag": "field", "name": "tag_data", "bit-offset": 1568, "bit-size": 128, "bit-alignment": 32, "type": { "tag": "struct", "name": "", "id": 70, "location": "/usr/include/yaml.h:1697:5", "bit-size": 128, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "handle", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "field", "name": "handle_length", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "size_t" } }, { "tag": "field", "name": "suffix", "bit-offset": 64, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "field", "name": "suffix_length", "bit-offset": 96, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "size_t" } }] } }, { "tag": "field", "name": "scalar_data", "bit-offset": 1696, "bit-size": 256, "bit-alignment": 32, "type": { "tag": "struct", "name": "", "id": 71, "location": "/usr/include/yaml.h:1709:5", "bit-size": 256, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "value", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "field", "name": "length", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "size_t" } }, { "tag": "field", "name": "multiline", "bit-offset": 64, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "flow_plain_allowed", "bit-offset": 96, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "block_plain_allowed", "bit-offset": 128, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "single_quoted_allowed", "bit-offset": 160, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "block_allowed", "bit-offset": 192, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "style", "bit-offset": 224, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "yaml_scalar_style_t" } }] } }, { "tag": "field", "name": "opened", "bit-offset": 1952, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "closed", "bit-offset": 1984, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "anchors", "bit-offset": 2016, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "struct", "name": "", "id": 72, "location": "/usr/include/yaml.h:1743:5", "bit-size": 96, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "references", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "anchor", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "serialized", "bit-offset": 64, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }] } } }, { "tag": "field", "name": "last_anchor_id", "bit-offset": 2048, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "document", "bit-offset": 2080, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_document_t" } } }] },
498
+{ "tag": "typedef", "name": "yaml_emitter_t", "location": "/usr/include/yaml.h:1762:3", "type": { "tag": ":struct", "name": "yaml_emitter_s", "id": 0 } },
499
+{ "tag": "function", "name": "yaml_emitter_initialize", "location": "/usr/include/yaml.h:1776:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "emitter", "type": { "tag": ":pointer", "type": { "tag": "yaml_emitter_t" } } }], "return-type": { "tag": ":int" } },
500
+{ "tag": "function", "name": "yaml_emitter_delete", "location": "/usr/include/yaml.h:1785:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "emitter", "type": { "tag": ":pointer", "type": { "tag": "yaml_emitter_t" } } }], "return-type": { "tag": ":void" } },
501
+{ "tag": "function", "name": "yaml_emitter_set_output_string", "location": "/usr/include/yaml.h:1803:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "emitter", "type": { "tag": ":pointer", "type": { "tag": "yaml_emitter_t" } } }, { "tag": "parameter", "name": "output", "type": { "tag": ":pointer", "type": { "tag": ":unsigned-char" } } }, { "tag": "parameter", "name": "size", "type": { "tag": "size_t" } }, { "tag": "parameter", "name": "size_written", "type": { "tag": ":pointer", "type": { "tag": "size_t" } } }], "return-type": { "tag": ":void" } },
502
+{ "tag": "function", "name": "yaml_emitter_set_output_file", "location": "/usr/include/yaml.h:1817:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "emitter", "type": { "tag": ":pointer", "type": { "tag": "yaml_emitter_t" } } }, { "tag": "parameter", "name": "file", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":void" } },
503
+{ "tag": "function", "name": "yaml_emitter_set_output", "location": "/usr/include/yaml.h:1829:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "emitter", "type": { "tag": ":pointer", "type": { "tag": "yaml_emitter_t" } } }, { "tag": "parameter", "name": "handler", "type": { "tag": ":function-pointer" } }, { "tag": "parameter", "name": "data", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": ":void" } },
504
+{ "tag": "function", "name": "yaml_emitter_set_encoding", "location": "/usr/include/yaml.h:1840:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "emitter", "type": { "tag": ":pointer", "type": { "tag": "yaml_emitter_t" } } }, { "tag": "parameter", "name": "encoding", "type": { "tag": "yaml_encoding_t" } }], "return-type": { "tag": ":void" } },
505
+{ "tag": "function", "name": "yaml_emitter_set_canonical", "location": "/usr/include/yaml.h:1851:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "emitter", "type": { "tag": ":pointer", "type": { "tag": "yaml_emitter_t" } } }, { "tag": "parameter", "name": "canonical", "type": { "tag": ":int" } }], "return-type": { "tag": ":void" } },
506
+{ "tag": "function", "name": "yaml_emitter_set_indent", "location": "/usr/include/yaml.h:1861:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "emitter", "type": { "tag": ":pointer", "type": { "tag": "yaml_emitter_t" } } }, { "tag": "parameter", "name": "indent", "type": { "tag": ":int" } }], "return-type": { "tag": ":void" } },
507
+{ "tag": "function", "name": "yaml_emitter_set_width", "location": "/usr/include/yaml.h:1871:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "emitter", "type": { "tag": ":pointer", "type": { "tag": "yaml_emitter_t" } } }, { "tag": "parameter", "name": "width", "type": { "tag": ":int" } }], "return-type": { "tag": ":void" } },
508
+{ "tag": "function", "name": "yaml_emitter_set_unicode", "location": "/usr/include/yaml.h:1881:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "emitter", "type": { "tag": ":pointer", "type": { "tag": "yaml_emitter_t" } } }, { "tag": "parameter", "name": "unicode", "type": { "tag": ":int" } }], "return-type": { "tag": ":void" } },
509
+{ "tag": "function", "name": "yaml_emitter_set_break", "location": "/usr/include/yaml.h:1891:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "emitter", "type": { "tag": ":pointer", "type": { "tag": "yaml_emitter_t" } } }, { "tag": "parameter", "name": "line_break", "type": { "tag": "yaml_break_t" } }], "return-type": { "tag": ":void" } },
510
+{ "tag": "function", "name": "yaml_emitter_emit", "location": "/usr/include/yaml.h:1908:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "emitter", "type": { "tag": ":pointer", "type": { "tag": "yaml_emitter_t" } } }, { "tag": "parameter", "name": "event", "type": { "tag": ":pointer", "type": { "tag": "yaml_event_t" } } }], "return-type": { "tag": ":int" } },
511
+{ "tag": "function", "name": "yaml_emitter_open", "location": "/usr/include/yaml.h:1921:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "emitter", "type": { "tag": ":pointer", "type": { "tag": "yaml_emitter_t" } } }], "return-type": { "tag": ":int" } },
512
+{ "tag": "function", "name": "yaml_emitter_close", "location": "/usr/include/yaml.h:1934:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "emitter", "type": { "tag": ":pointer", "type": { "tag": "yaml_emitter_t" } } }], "return-type": { "tag": ":int" } },
513
+{ "tag": "function", "name": "yaml_emitter_dump", "location": "/usr/include/yaml.h:1951:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "emitter", "type": { "tag": ":pointer", "type": { "tag": "yaml_emitter_t" } } }, { "tag": "parameter", "name": "document", "type": { "tag": ":pointer", "type": { "tag": "yaml_document_t" } } }], "return-type": { "tag": ":int" } },
514
+{ "tag": "function", "name": "yaml_emitter_flush", "location": "/usr/include/yaml.h:1962:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "emitter", "type": { "tag": ":pointer", "type": { "tag": "yaml_emitter_t" } } }], "return-type": { "tag": ":int" } }
515
+]
0 516
new file mode 100755
... ...
@@ -0,0 +1,652 @@
1
+/* /usr/include/bits/waitflags.h:25:9 */
2
+#define WNOHANG 1
3
+
4
+/* /usr/include/bits/sigset.h:21:10 */
5
+#define _SIGSET_H_types 1
6
+
7
+/* /usr/include/string.h:23:9 */
8
+#define _STRING_H 1
9
+
10
+/* /usr/include/bits/pthreadtypes.h:19:9 */
11
+#define _BITS_PTHREADTYPES_H 1
12
+
13
+/* /usr/include/bits/sigset.h:27:10 */
14
+#define _SIGSET_NWORDS (1024/(8*sizeof(unsignedlongint)))
15
+
16
+/* /usr/include/sys/types.h:23:9 */
17
+#define _SYS_TYPES_H 1
18
+
19
+/* /usr/include/bits/pthreadtypes.h:47:10 */
20
+#define __SIZEOF_PTHREAD_MUTEX_T 24
21
+
22
+/* /usr/include/bits/pthreadtypes.h:46:10 */
23
+#define __SIZEOF_PTHREAD_ATTR_T 36
24
+
25
+/* /usr/include/bits/pthreadtypes.h:51:10 */
26
+#define __SIZEOF_PTHREAD_RWLOCK_T 32
27
+
28
+/* /usr/include/bits/pthreadtypes.h:48:10 */
29
+#define __SIZEOF_PTHREAD_MUTEXATTR_T 4
30
+
31
+/* /usr/include/features.h:317:10 */
32
+#define __USE_ATFILE 1
33
+
34
+/* /usr/include/bits/pthreadtypes.h:52:10 */
35
+#define __SIZEOF_PTHREAD_RWLOCKATTR_T 8
36
+
37
+/* /usr/include/bits/waitflags.h:34:9 */
38
+#define __WNOTHREAD 0x20000000
39
+
40
+/* /usr/include/bits/waitflags.h:37:9 */
41
+#define __WCLONE 0x80000000
42
+
43
+/* /usr/include/features.h:336:10 */
44
+#define __USE_FORTIFY_LEVEL 0
45
+
46
+/* /usr/include/bits/waitflags.h:36:9 */
47
+#define __WALL 0x40000000
48
+
49
+/* /usr/include/bits/time.h:25:11 */
50
+#define _STRUCT_TIMEVAL 1
51
+
52
+/* /usr/include/bits/waitflags.h:31:9 */
53
+#define WCONTINUED 8
54
+
55
+/* /usr/include/bits/pthreadtypes.h:50:10 */
56
+#define __SIZEOF_PTHREAD_CONDATTR_T 4
57
+
58
+/* /usr/include/xlocale.h:21:9 */
59
+#define _XLOCALE_H 1
60
+
61
+/* /usr/include/bits/pthreadtypes.h:49:10 */
62
+#define __SIZEOF_PTHREAD_COND_T 48
63
+
64
+/* /usr/include/bits/waitflags.h:32:9 */
65
+#define WNOWAIT 0x01000000
66
+
67
+/* /usr/include/features.h:313:10 */
68
+#define __USE_SVID 1
69
+
70
+/* /usr/include/features.h:305:10 */
71
+#define __USE_MISC 1
72
+
73
+/* /usr/include/bits/waitflags.h:26:9 */
74
+#define WUNTRACED 2
75
+
76
+/* /usr/include/features.h:309:10 */
77
+#define __USE_BSD 1
78
+
79
+/* /usr/include/features.h:133:9 */
80
+#define __USE_ANSI 1
81
+
82
+/* /usr/include/bits/waitflags.h:30:9 */
83
+#define WEXITED 4
84
+
85
+/* /usr/include/bits/waitflags.h:29:9 */
86
+#define WSTOPPED 2
87
+
88
+/* /usr/include/stdlib.h:128:9 */
89
+#define RAND_MAX 2147483647
90
+
91
+/* /usr/include/sys/types.h:211:9 */
92
+#define __BIT_TYPES_DEFINED__ 1
93
+
94
+/* /usr/include/bits/select.h:30:11 */
95
+#define __FD_ZERO_STOS "stosl"
96
+
97
+/* /usr/include/stdlib.h:134:9 */
98
+#define EXIT_SUCCESS 0
99
+
100
+/* /usr/include/stdlib.h:133:9 */
101
+#define EXIT_FAILURE 1
102
+
103
+/* /usr/include/sys/select.h:22:9 */
104
+#define _SYS_SELECT_H 1
105
+
106
+/* /usr/include/features.h:189:10 */
107
+#define _SVID_SOURCE 1
108
+
109
+/* /usr/include/sys/sysmacros.h:21:9 */
110
+#define _SYS_SYSMACROS_H 1
111
+
112
+/* /usr/include/features.h:231:11 */
113
+#define _POSIX_C_SOURCE 200809L
114
+
115
+/* /usr/include/features.h:223:10 */
116
+#define _POSIX_SOURCE 1
117
+
118
+/* /usr/include/bits/wordsize.h:6:10 */
119
+#define __WORDSIZE 32
120
+
121
+/* /usr/include/features.h:188:10 */
122
+#define _BSD_SOURCE 1
123
+
124
+/* /usr/include/stdlib.h:110:10 */
125
+#define __ldiv_t_defined 1
126
+
127
+/* /usr/include/stdlib.h:122:10 */
128
+#define __lldiv_t_defined 1
129
+
130
+/* /usr/include/bits/pthreadtypes.h:54:10 */
131
+#define __SIZEOF_PTHREAD_BARRIERATTR_T 4
132
+
133
+/* /usr/include/libio.h:81:9 */
134
+#define _IOS_APPEND 8
135
+
136
+/* /usr/include/time.h:114:10 */
137
+#define __timespec_defined 1
138
+
139
+/* /usr/include/libio.h:83:9 */
140
+#define _IOS_NOCREATE 32
141
+
142
+/* /usr/include/libio.h:82:9 */
143
+#define _IOS_TRUNC 16
144
+
145
+/* /usr/include/libio.h:60:9 */
146
+#define _IO_UNIFIED_JUMPTABLES 1
147
+
148
+/* /usr/include/libio.h:63:10 */
149
+#define EOF (-1)
150
+
151
+/* /usr/include/libio.h:78:9 */
152
+#define _IOS_INPUT 1
153
+
154
+/* /usr/include/bits/byteswap.h:24:9 */
155
+#define _BITS_BYTESWAP_H 1
156
+
157
+/* /usr/include/bits/types.h:24:9 */
158
+#define _BITS_TYPES_H 1
159
+
160
+/* /usr/include/bits/waitstatus.h:59:9 */
161
+#define __WCOREFLAG 0x80
162
+
163
+/* /usr/include/libio.h:79:9 */
164
+#define _IOS_OUTPUT 2
165
+
166
+/* /usr/include/endian.h:32:9 */
167
+#define __BIG_ENDIAN 4321
168
+
169
+/* /usr/include/bits/waitstatus.h:58:9 */
170
+#define __W_CONTINUED 0xffff
171
+
172
+/* /usr/include/time.h:53:10 */
173
+#define __clock_t_defined 1
174
+
175
+/* /usr/include/endian.h:19:9 */
176
+#define _ENDIAN_H 1
177
+
178
+/* /usr/include/endian.h:31:9 */
179
+#define __LITTLE_ENDIAN 1234
180
+
181
+/* /usr/include/time.h:69:10 */
182
+#define __time_t_defined 1
183
+
184
+/* /usr/include/libio.h:94:9 */
185
+#define _OLD_STDIO_MAGIC 0xFABC0000
186
+
187
+/* /usr/include/features.h:261:10 */
188
+#define __USE_XOPEN2K8 1
189
+
190
+/* /usr/include/libio.h:80:9 */
191
+#define _IOS_ATEND 4
192
+
193
+/* /usr/include/endian.h:33:9 */
194
+#define __PDP_ENDIAN 3412
195
+
196
+/* /usr/include/bits/pthreadtypes.h:70:10 */
197
+#define __have_pthread_attr_t 1
198
+
199
+/* /usr/include/features.h:253:10 */
200
+#define __USE_XOPEN2K 1
201
+
202
+/* /usr/include/time.h:86:10 */
203
+#define __clockid_t_defined 1
204
+
205
+/* /usr/include/libio.h:97:9 */
206
+#define _IO_UNBUFFERED 2
207
+
208
+/* /usr/include/features.h:245:10 */
209
+#define __USE_POSIX199309 1
210
+
211
+/* /usr/include/features.h:249:10 */
212
+#define __USE_POSIX199506 1
213
+
214
+/* /usr/include/libio.h:95:9 */
215
+#define _IO_MAGIC_MASK 0xFFFF0000
216
+
217
+/* /usr/include/bits/pthreadtypes.h:53:10 */
218
+#define __SIZEOF_PTHREAD_BARRIER_T 20
219
+
220
+/* /usr/include/time.h:98:10 */
221
+#define __timer_t_defined 1
222
+
223
+/* /usr/include/bits/typesizes.h:86:9 */
224
+#define __FD_SETSIZE 1024
225
+
226
+/* /usr/include/libio.h:96:9 */
227
+#define _IO_USER_BUF 1
228
+
229
+/* /usr/include/libio.h:93:9 */
230
+#define _IO_MAGIC 0xFBAD0000
231
+
232
+/* /usr/include/libio.h:85:9 */
233
+#define _IOS_BIN 128
234
+
235
+/* /usr/include/libio.h:84:9 */
236
+#define _IOS_NOREPLACE 64
237
+
238
+/* /usr/include/features.h:237:10 */
239
+#define __USE_POSIX 1
240
+
241
+/* /usr/include/features.h:241:10 */
242
+#define __USE_POSIX2 1
243
+
244
+/* /usr/include/features.h:257:10 */
245
+#define __USE_ISOC99 1
246
+
247
+/* /usr/include/features.h:255:10 */
248
+#define __USE_ISOC95 1
249
+
250
+/* /usr/include/libio.h:98:9 */
251
+#define _IO_NO_READS 4
252
+
253
+/* /usr/include/stdlib.h:37:9 */
254
+#define _STDLIB_H 1
255
+
256
+/* /usr/include/features.h:19:9 */
257
+#define _FEATURES_H 1
258
+
259
+/* /usr/include/stdio.h:120:9 */
260
+#define _IOFBF 0
261
+
262
+/* /usr/include/features.h:263:10 */
263
+#define _ATFILE_SOURCE 1
264
+
265
+/* /usr/include/features.h:233:10 */
266
+#define __USE_POSIX_IMPLICITLY 1
267
+
268
+/* /usr/include/stdc-predef.h:37:9 */
269
+#define __STDC_NO_THREADS__ 1
270
+
271
+/* /usr/include/features.h:350:9 */
272
+#define __GNU_LIBRARY__ 6
273
+
274
+/* /usr/include/bits/predefs.h:28:9 */
275
+#define __STDC_IEC_559_COMPLEX__ 1
276
+
277
+/* /usr/include/stdc-predef.h:34:9 */
278
+#define __STDC_ISO_10646__ 201103L
279
+
280
+/* /usr/include/bits/typesizes.h:24:9 */
281
+#define _BITS_TYPESIZES_H 1
282
+
283
+/* /usr/include/bits/predefs.h:27:9 */
284
+#define __STDC_IEC_559__ 1
285
+
286
+/* /usr/include/stdc-predef.h:19:9 */
287
+#define _STDC_PREDEF_H 1
288
+
289
+/* /usr/include/sys/select.h:59:9 */
290
+#define __NFDBITS (8*(int)sizeof(__fd_mask))
291
+
292
+/* /usr/include/sys/cdefs.h:20:9 */
293
+#define _SYS_CDEFS_H 1
294
+
295
+/* /usr/include/features.h:365:10 */
296
+#define __GLIBC_HAVE_LONG_LONG 1
297
+
298
+/* /usr/include/features.h:354:9 */
299
+#define __GLIBC__ 2
300
+
301
+/* /usr/include/features.h:355:9 */
302
+#define __GLIBC_MINOR__ 17
303
+
304
+/* /usr/include/bits/stdio_lim.h:23:10 */
305
+#define L_tmpnam 20
306
+
307
+/* /usr/include/stdio.h:142:9 */
308
+#define SEEK_END 2
309
+
310
+/* /usr/include/stdio.h:151:10 */
311
+#define P_tmpdir "/tmp"
312
+
313
+/* /usr/include/libio.h:102:9 */
314
+#define _IO_DELETE_DONT_CLOSE 0x40
315
+
316
+/* /usr/include/stdio.h:122:9 */
317
+#define _IONBF 2
318
+
319
+/* /usr/include/stdio.h:141:9 */
320
+#define SEEK_CUR 1
321
+
322
+/* /usr/include/libio.h:103:9 */
323
+#define _IO_LINKED 0x80
324
+
325
+/* /usr/include/stdio.h:140:9 */
326
+#define SEEK_SET 0
327
+
328
+/* /usr/include/libio.h:100:9 */
329
+#define _IO_EOF_SEEN 0x10
330
+
331
+/* /usr/include/bits/stdio_lim.h:28:11 */
332
+#define L_ctermid 9
333
+
334
+/* /usr/include/bits/stdio_lim.h:24:10 */
335
+#define TMP_MAX 238328
336
+
337
+/* /usr/include/libio.h:101:9 */
338
+#define _IO_ERR_SEEN 0x20
339
+
340
+/* /usr/include/libio.h:106:9 */
341
+#define _IO_TIED_PUT_GET 0x400
342
+
343
+/* /usr/include/stdio.h:121:9 */
344
+#define _IOLBF 1
345
+
346
+/* /usr/include/libio.h:107:9 */
347
+#define _IO_CURRENTLY_PUTTING 0x800
348
+
349
+/* /usr/include/libio.h:104:9 */
350
+#define _IO_IN_BACKUP 0x100
351
+
352
+/* /usr/include/libio.h:105:9 */
353
+#define _IO_LINE_BUF 0x200
354
+
355
+/* /usr/include/bits/stdio_lim.h:37:10 */
356
+#define FOPEN_MAX 16
357
+
358
+/* /usr/include/bits/stdio_lim.h:25:10 */
359
+#define FILENAME_MAX 4096
360
+
361
+/* /usr/include/libio.h:111:9 */
362
+#define _IO_USER_LOCK 0x8000
363
+
364
+/* /usr/include/libio.h:113:9 */
365
+#define _IO_FLAGS2_MMAP 1
366
+
367
+/* /usr/include/libio.h:108:9 */
368
+#define _IO_IS_APPENDING 0x1000
369
+
370
+/* /usr/include/libio.h:109:9 */
371
+#define _IO_IS_FILEBUF 0x2000
372
+
373
+/* /usr/include/libio.h:110:9 */
374
+#define _IO_BAD_SEEN 0x4000
375
+
376
+/* /usr/include/libio.h:126:9 */
377
+#define _IO_SKIPWS 01
378
+
379
+/* /usr/include/libio.h:127:9 */
380
+#define _IO_LEFT 02
381
+
382
+/* /usr/include/libio.h:114:9 */
383
+#define _IO_FLAGS2_NOTCANCEL 2
384
+
385
+/* /usr/include/libio.h:118:9 */
386
+#define _IO_FLAGS2_USER_WBUF 8
387
+
388
+/* /usr/include/libio.h:131:9 */
389
+#define _IO_OCT 040
390
+
391
+/* /usr/include/libio.h:132:9 */
392
+#define _IO_HEX 0100
393
+
394
+/* /usr/include/libio.h:128:9 */
395
+#define _IO_RIGHT 04
396
+
397
+/* /usr/include/libio.h:130:9 */
398
+#define _IO_DEC 020
399
+
400
+/* /usr/include/libio.h:129:9 */
401
+#define _IO_INTERNAL 010
402
+
403
+/* /usr/include/libio.h:136:9 */
404
+#define _IO_SHOWPOS 02000
405
+
406
+/* /usr/include/libio.h:135:9 */
407
+#define _IO_UPPERCASE 01000
408
+
409
+/* /usr/include/libio.h:137:9 */
410
+#define _IO_SCIENTIFIC 04000
411
+
412
+/* /usr/include/libio.h:133:9 */
413
+#define _IO_SHOWBASE 0200
414
+
415
+/* /usr/include/libio.h:134:9 */
416
+#define _IO_SHOWPOINT 0400
417
+
418
+/* /usr/include/libio.h:140:9 */
419
+#define _IO_STDIO 040000
420
+
421
+/* /usr/include/libio.h:141:9 */
422
+#define _IO_DONT_CLOSE 0100000
423
+
424
+/* /usr/include/libio.h:138:9 */
425
+#define _IO_FIXED 010000
426
+
427
+/* /usr/include/libio.h:139:9 */
428
+#define _IO_UNITBUF 020000
429
+
430
+/* /usr/include/libio.h:142:9 */
431
+#define _IO_BOOLALPHA 0200000
432
+
433
+/* /usr/include/wchar.h:80:10 */
434
+#define ____mbstate_t_defined 1
435
+
436
+/* /usr/include/stdio.h:66:10 */
437
+#define ____FILE_defined 1
438
+
439
+/* /usr/include/_G_config.h:5:9 */
440
+#define _G_config_h 1
441
+
442
+/* /usr/include/_G_config.h:51:9 */
443
+#define _G_IO_IO_FILE_VERSION 0x20001
444
+
445
+/* /usr/include/_G_config.h:49:9 */
446
+#define _G_HAVE_MREMAP 1
447
+
448
+/* /usr/include/_G_config.h:48:9 */
449
+#define _G_HAVE_MMAP 1
450
+
451
+/* /usr/include/_G_config.h:56:9 */
452
+#define _G_BUFSIZ 8192
453
+
454
+/* /usr/include/alloca.h:19:9 */
455
+#define _ALLOCA_H 1
456
+
457
+/* /usr/include/yaml.h:665:9 */
458
+#define YAML_NULL_TAG "tag:yaml.org,2002:null"
459
+
460
+/* /usr/include/yaml.h:667:9 */
461
+#define YAML_BOOL_TAG "tag:yaml.org,2002:bool"
462
+
463
+/* /usr/include/yaml.h:678:9 */
464
+#define YAML_SEQ_TAG "tag:yaml.org,2002:seq"
465
+
466
+/* /usr/include/yaml.h:671:9 */
467
+#define YAML_INT_TAG "tag:yaml.org,2002:int"
468
+
469
+/* /usr/include/yaml.h:680:9 */
470
+#define YAML_MAP_TAG "tag:yaml.org,2002:map"
471
+
472
+/* /usr/include/yaml.h:669:9 */
473
+#define YAML_STR_TAG "tag:yaml.org,2002:str"
474
+
475
+/* /usr/include/yaml.h:675:9 */
476
+#define YAML_TIMESTAMP_TAG "tag:yaml.org,2002:timestamp"
477
+
478
+/* /usr/include/yaml.h:673:9 */
479
+#define YAML_FLOAT_TAG "tag:yaml.org,2002:float"
480
+
481
+/* /usr/include/stdio.h:56:10 */
482
+#define __FILE_defined 1
483
+
484
+/* /usr/include/stdio.h:26:10 */
485
+#define _STDIO_H 1
486
+
487
+/* /usr/include/libio.h:99:9 */
488
+#define _IO_NO_WRITES 8
489
+
490
+const __int128_t __c2ffi_WNOHANG = WNOHANG;
491
+const __int128_t __c2ffi__SIGSET_H_types = _SIGSET_H_types;
492
+const __int128_t __c2ffi__STRING_H = _STRING_H;
493
+const __int128_t __c2ffi__BITS_PTHREADTYPES_H = _BITS_PTHREADTYPES_H;
494
+const __int128_t __c2ffi__SIGSET_NWORDS = _SIGSET_NWORDS;
495
+const __int128_t __c2ffi__SYS_TYPES_H = _SYS_TYPES_H;
496
+const __int128_t __c2ffi___SIZEOF_PTHREAD_MUTEX_T = __SIZEOF_PTHREAD_MUTEX_T;
497
+const __int128_t __c2ffi___SIZEOF_PTHREAD_ATTR_T = __SIZEOF_PTHREAD_ATTR_T;
498
+const __int128_t __c2ffi___SIZEOF_PTHREAD_RWLOCK_T = __SIZEOF_PTHREAD_RWLOCK_T;
499
+const __int128_t __c2ffi___SIZEOF_PTHREAD_MUTEXATTR_T = __SIZEOF_PTHREAD_MUTEXATTR_T;
500
+const __int128_t __c2ffi___USE_ATFILE = __USE_ATFILE;
501
+const __int128_t __c2ffi___SIZEOF_PTHREAD_RWLOCKATTR_T = __SIZEOF_PTHREAD_RWLOCKATTR_T;
502
+const __int128_t __c2ffi___WNOTHREAD = __WNOTHREAD;
503
+const __int128_t __c2ffi___WCLONE = __WCLONE;
504
+const __int128_t __c2ffi___USE_FORTIFY_LEVEL = __USE_FORTIFY_LEVEL;
505
+const __int128_t __c2ffi___WALL = __WALL;
506
+const __int128_t __c2ffi__STRUCT_TIMEVAL = _STRUCT_TIMEVAL;
507
+const __int128_t __c2ffi_WCONTINUED = WCONTINUED;
508
+const __int128_t __c2ffi___SIZEOF_PTHREAD_CONDATTR_T = __SIZEOF_PTHREAD_CONDATTR_T;
509
+const __int128_t __c2ffi__XLOCALE_H = _XLOCALE_H;
510
+const __int128_t __c2ffi___SIZEOF_PTHREAD_COND_T = __SIZEOF_PTHREAD_COND_T;
511
+const __int128_t __c2ffi_WNOWAIT = WNOWAIT;
512
+const __int128_t __c2ffi___USE_SVID = __USE_SVID;
513
+const __int128_t __c2ffi___USE_MISC = __USE_MISC;
514
+const __int128_t __c2ffi_WUNTRACED = WUNTRACED;
515
+const __int128_t __c2ffi___USE_BSD = __USE_BSD;
516
+const __int128_t __c2ffi___USE_ANSI = __USE_ANSI;
517
+const __int128_t __c2ffi_WEXITED = WEXITED;
518
+const __int128_t __c2ffi_WSTOPPED = WSTOPPED;
519
+const __int128_t __c2ffi_RAND_MAX = RAND_MAX;
520
+const __int128_t __c2ffi___BIT_TYPES_DEFINED__ = __BIT_TYPES_DEFINED__;
521
+const char* __c2ffi___FD_ZERO_STOS = __FD_ZERO_STOS;
522
+const __int128_t __c2ffi_EXIT_SUCCESS = EXIT_SUCCESS;
523
+const __int128_t __c2ffi_EXIT_FAILURE = EXIT_FAILURE;
524
+const __int128_t __c2ffi__SYS_SELECT_H = _SYS_SELECT_H;
525
+const __int128_t __c2ffi__SVID_SOURCE = _SVID_SOURCE;
526
+const __int128_t __c2ffi__SYS_SYSMACROS_H = _SYS_SYSMACROS_H;
527
+const __int128_t __c2ffi__POSIX_C_SOURCE = _POSIX_C_SOURCE;
528
+const __int128_t __c2ffi__POSIX_SOURCE = _POSIX_SOURCE;
529
+const __int128_t __c2ffi___WORDSIZE = __WORDSIZE;
530
+const __int128_t __c2ffi__BSD_SOURCE = _BSD_SOURCE;
531
+const __int128_t __c2ffi___ldiv_t_defined = __ldiv_t_defined;
532
+const __int128_t __c2ffi___lldiv_t_defined = __lldiv_t_defined;
533
+const __int128_t __c2ffi___SIZEOF_PTHREAD_BARRIERATTR_T = __SIZEOF_PTHREAD_BARRIERATTR_T;
534
+const __int128_t __c2ffi__IOS_APPEND = _IOS_APPEND;
535
+const __int128_t __c2ffi___timespec_defined = __timespec_defined;
536
+const __int128_t __c2ffi__IOS_NOCREATE = _IOS_NOCREATE;
537
+const __int128_t __c2ffi__IOS_TRUNC = _IOS_TRUNC;
538
+const __int128_t __c2ffi__IO_UNIFIED_JUMPTABLES = _IO_UNIFIED_JUMPTABLES;
539
+const __int128_t __c2ffi_EOF = EOF;
540
+const __int128_t __c2ffi__IOS_INPUT = _IOS_INPUT;
541
+const __int128_t __c2ffi__BITS_BYTESWAP_H = _BITS_BYTESWAP_H;
542
+const __int128_t __c2ffi__BITS_TYPES_H = _BITS_TYPES_H;
543
+const __int128_t __c2ffi___WCOREFLAG = __WCOREFLAG;
544
+const __int128_t __c2ffi__IOS_OUTPUT = _IOS_OUTPUT;
545
+const __int128_t __c2ffi___BIG_ENDIAN = __BIG_ENDIAN;
546
+const __int128_t __c2ffi___W_CONTINUED = __W_CONTINUED;
547
+const __int128_t __c2ffi___clock_t_defined = __clock_t_defined;
548
+const __int128_t __c2ffi__ENDIAN_H = _ENDIAN_H;
549
+const __int128_t __c2ffi___LITTLE_ENDIAN = __LITTLE_ENDIAN;
550
+const __int128_t __c2ffi___time_t_defined = __time_t_defined;
551
+const __int128_t __c2ffi__OLD_STDIO_MAGIC = _OLD_STDIO_MAGIC;
552
+const __int128_t __c2ffi___USE_XOPEN2K8 = __USE_XOPEN2K8;
553
+const __int128_t __c2ffi__IOS_ATEND = _IOS_ATEND;
554
+const __int128_t __c2ffi___PDP_ENDIAN = __PDP_ENDIAN;
555
+const __int128_t __c2ffi___have_pthread_attr_t = __have_pthread_attr_t;
556
+const __int128_t __c2ffi___USE_XOPEN2K = __USE_XOPEN2K;
557
+const __int128_t __c2ffi___clockid_t_defined = __clockid_t_defined;
558
+const __int128_t __c2ffi__IO_UNBUFFERED = _IO_UNBUFFERED;
559
+const __int128_t __c2ffi___USE_POSIX199309 = __USE_POSIX199309;
560
+const __int128_t __c2ffi___USE_POSIX199506 = __USE_POSIX199506;
561
+const __int128_t __c2ffi__IO_MAGIC_MASK = _IO_MAGIC_MASK;
562
+const __int128_t __c2ffi___SIZEOF_PTHREAD_BARRIER_T = __SIZEOF_PTHREAD_BARRIER_T;
563
+const __int128_t __c2ffi___timer_t_defined = __timer_t_defined;
564
+const __int128_t __c2ffi___FD_SETSIZE = __FD_SETSIZE;
565
+const __int128_t __c2ffi__IO_USER_BUF = _IO_USER_BUF;
566
+const __int128_t __c2ffi__IO_MAGIC = _IO_MAGIC;
567
+const __int128_t __c2ffi__IOS_BIN = _IOS_BIN;
568
+const __int128_t __c2ffi__IOS_NOREPLACE = _IOS_NOREPLACE;
569
+const __int128_t __c2ffi___USE_POSIX = __USE_POSIX;
570
+const __int128_t __c2ffi___USE_POSIX2 = __USE_POSIX2;
571
+const __int128_t __c2ffi___USE_ISOC99 = __USE_ISOC99;
572
+const __int128_t __c2ffi___USE_ISOC95 = __USE_ISOC95;
573
+const __int128_t __c2ffi__IO_NO_READS = _IO_NO_READS;
574
+const __int128_t __c2ffi__STDLIB_H = _STDLIB_H;
575
+const __int128_t __c2ffi__FEATURES_H = _FEATURES_H;
576
+const __int128_t __c2ffi__IOFBF = _IOFBF;
577
+const __int128_t __c2ffi__ATFILE_SOURCE = _ATFILE_SOURCE;
578
+const __int128_t __c2ffi___USE_POSIX_IMPLICITLY = __USE_POSIX_IMPLICITLY;
579
+const __int128_t __c2ffi___STDC_NO_THREADS__ = __STDC_NO_THREADS__;
580
+const __int128_t __c2ffi___GNU_LIBRARY__ = __GNU_LIBRARY__;
581
+const __int128_t __c2ffi___STDC_IEC_559_COMPLEX__ = __STDC_IEC_559_COMPLEX__;
582
+const __int128_t __c2ffi___STDC_ISO_10646__ = __STDC_ISO_10646__;
583
+const __int128_t __c2ffi__BITS_TYPESIZES_H = _BITS_TYPESIZES_H;
584
+const __int128_t __c2ffi___STDC_IEC_559__ = __STDC_IEC_559__;
585
+const __int128_t __c2ffi__STDC_PREDEF_H = _STDC_PREDEF_H;
586
+const __int128_t __c2ffi___NFDBITS = __NFDBITS;
587
+const __int128_t __c2ffi__SYS_CDEFS_H = _SYS_CDEFS_H;
588
+const __int128_t __c2ffi___GLIBC_HAVE_LONG_LONG = __GLIBC_HAVE_LONG_LONG;
589
+const __int128_t __c2ffi___GLIBC__ = __GLIBC__;
590
+const __int128_t __c2ffi___GLIBC_MINOR__ = __GLIBC_MINOR__;
591
+const __int128_t __c2ffi_L_tmpnam = L_tmpnam;
592
+const __int128_t __c2ffi_SEEK_END = SEEK_END;
593
+const char* __c2ffi_P_tmpdir = P_tmpdir;
594
+const __int128_t __c2ffi__IO_DELETE_DONT_CLOSE = _IO_DELETE_DONT_CLOSE;
595
+const __int128_t __c2ffi__IONBF = _IONBF;
596
+const __int128_t __c2ffi_SEEK_CUR = SEEK_CUR;
597
+const __int128_t __c2ffi__IO_LINKED = _IO_LINKED;
598
+const __int128_t __c2ffi_SEEK_SET = SEEK_SET;
599
+const __int128_t __c2ffi__IO_EOF_SEEN = _IO_EOF_SEEN;
600
+const __int128_t __c2ffi_L_ctermid = L_ctermid;
601
+const __int128_t __c2ffi_TMP_MAX = TMP_MAX;
602
+const __int128_t __c2ffi__IO_ERR_SEEN = _IO_ERR_SEEN;
603
+const __int128_t __c2ffi__IO_TIED_PUT_GET = _IO_TIED_PUT_GET;
604
+const __int128_t __c2ffi__IOLBF = _IOLBF;
605
+const __int128_t __c2ffi__IO_CURRENTLY_PUTTING = _IO_CURRENTLY_PUTTING;
606
+const __int128_t __c2ffi__IO_IN_BACKUP = _IO_IN_BACKUP;
607
+const __int128_t __c2ffi__IO_LINE_BUF = _IO_LINE_BUF;
608
+const __int128_t __c2ffi_FOPEN_MAX = FOPEN_MAX;
609
+const __int128_t __c2ffi_FILENAME_MAX = FILENAME_MAX;
610
+const __int128_t __c2ffi__IO_USER_LOCK = _IO_USER_LOCK;
611
+const __int128_t __c2ffi__IO_FLAGS2_MMAP = _IO_FLAGS2_MMAP;
612
+const __int128_t __c2ffi__IO_IS_APPENDING = _IO_IS_APPENDING;
613
+const __int128_t __c2ffi__IO_IS_FILEBUF = _IO_IS_FILEBUF;
614
+const __int128_t __c2ffi__IO_BAD_SEEN = _IO_BAD_SEEN;
615
+const __int128_t __c2ffi__IO_SKIPWS = _IO_SKIPWS;
616
+const __int128_t __c2ffi__IO_LEFT = _IO_LEFT;
617
+const __int128_t __c2ffi__IO_FLAGS2_NOTCANCEL = _IO_FLAGS2_NOTCANCEL;
618
+const __int128_t __c2ffi__IO_FLAGS2_USER_WBUF = _IO_FLAGS2_USER_WBUF;
619
+const __int128_t __c2ffi__IO_OCT = _IO_OCT;
620
+const __int128_t __c2ffi__IO_HEX = _IO_HEX;
621
+const __int128_t __c2ffi__IO_RIGHT = _IO_RIGHT;
622
+const __int128_t __c2ffi__IO_DEC = _IO_DEC;
623
+const __int128_t __c2ffi__IO_INTERNAL = _IO_INTERNAL;
624
+const __int128_t __c2ffi__IO_SHOWPOS = _IO_SHOWPOS;
625
+const __int128_t __c2ffi__IO_UPPERCASE = _IO_UPPERCASE;
626
+const __int128_t __c2ffi__IO_SCIENTIFIC = _IO_SCIENTIFIC;
627
+const __int128_t __c2ffi__IO_SHOWBASE = _IO_SHOWBASE;
628
+const __int128_t __c2ffi__IO_SHOWPOINT = _IO_SHOWPOINT;
629
+const __int128_t __c2ffi__IO_STDIO = _IO_STDIO;
630
+const __int128_t __c2ffi__IO_DONT_CLOSE = _IO_DONT_CLOSE;
631
+const __int128_t __c2ffi__IO_FIXED = _IO_FIXED;
632
+const __int128_t __c2ffi__IO_UNITBUF = _IO_UNITBUF;
633
+const __int128_t __c2ffi__IO_BOOLALPHA = _IO_BOOLALPHA;
634
+const __int128_t __c2ffi_____mbstate_t_defined = ____mbstate_t_defined;
635
+const __int128_t __c2ffi_____FILE_defined = ____FILE_defined;
636
+const __int128_t __c2ffi__G_config_h = _G_config_h;
637
+const __int128_t __c2ffi__G_IO_IO_FILE_VERSION = _G_IO_IO_FILE_VERSION;
638
+const __int128_t __c2ffi__G_HAVE_MREMAP = _G_HAVE_MREMAP;
639
+const __int128_t __c2ffi__G_HAVE_MMAP = _G_HAVE_MMAP;
640
+const __int128_t __c2ffi__G_BUFSIZ = _G_BUFSIZ;
641
+const __int128_t __c2ffi__ALLOCA_H = _ALLOCA_H;
642
+const char* __c2ffi_YAML_NULL_TAG = YAML_NULL_TAG;
643
+const char* __c2ffi_YAML_BOOL_TAG = YAML_BOOL_TAG;
644
+const char* __c2ffi_YAML_SEQ_TAG = YAML_SEQ_TAG;
645
+const char* __c2ffi_YAML_INT_TAG = YAML_INT_TAG;
646
+const char* __c2ffi_YAML_MAP_TAG = YAML_MAP_TAG;
647
+const char* __c2ffi_YAML_STR_TAG = YAML_STR_TAG;
648
+const char* __c2ffi_YAML_TIMESTAMP_TAG = YAML_TIMESTAMP_TAG;
649
+const char* __c2ffi_YAML_FLOAT_TAG = YAML_FLOAT_TAG;
650
+const __int128_t __c2ffi___FILE_defined = __FILE_defined;
651
+const __int128_t __c2ffi__STDIO_H = _STDIO_H;
652
+const __int128_t __c2ffi__IO_NO_WRITES = _IO_NO_WRITES;
0 653
new file mode 100755
... ...
@@ -0,0 +1,165 @@
1
+[
2
+{ "tag": "const", "name": "WNOHANG", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-linux-gnu.h:490:18", "type": { "tag": ":int" } },
3
+{ "tag": "const", "name": "_SIGSET_H_types", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-linux-gnu.h:491:18", "type": { "tag": ":int" } },
4
+{ "tag": "const", "name": "_STRING_H", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-linux-gnu.h:492:18", "type": { "tag": ":int" } },
5
+{ "tag": "const", "name": "_BITS_PTHREADTYPES_H", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-linux-gnu.h:493:18", "type": { "tag": ":int" } },
6
+{ "tag": "const", "name": "_SIGSET_NWORDS", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-linux-gnu.h:494:18", "type": { "tag": ":int" } },
7
+{ "tag": "const", "name": "_SYS_TYPES_H", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-linux-gnu.h:495:18", "type": { "tag": ":int" } },
8
+{ "tag": "const", "name": "__SIZEOF_PTHREAD_MUTEX_T", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-linux-gnu.h:496:18", "type": { "tag": ":int" } },
9
+{ "tag": "const", "name": "__SIZEOF_PTHREAD_ATTR_T", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-linux-gnu.h:497:18", "type": { "tag": ":int" } },
10
+{ "tag": "const", "name": "__SIZEOF_PTHREAD_RWLOCK_T", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-linux-gnu.h:498:18", "type": { "tag": ":int" } },
11
+{ "tag": "const", "name": "__SIZEOF_PTHREAD_MUTEXATTR_T", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-linux-gnu.h:499:18", "type": { "tag": ":int" } },
12
+{ "tag": "const", "name": "__USE_ATFILE", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-linux-gnu.h:500:18", "type": { "tag": ":int" } },
13
+{ "tag": "const", "name": "__SIZEOF_PTHREAD_RWLOCKATTR_T", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-linux-gnu.h:501:18", "type": { "tag": ":int" } },
14
+{ "tag": "const", "name": "__WNOTHREAD", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-linux-gnu.h:502:18", "type": { "tag": ":int" } },
15
+{ "tag": "const", "name": "__WCLONE", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-linux-gnu.h:503:18", "type": { "tag": ":int" } },
16
+{ "tag": "const", "name": "__USE_FORTIFY_LEVEL", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-linux-gnu.h:504:18", "type": { "tag": ":int" } },
17
+{ "tag": "const", "name": "__WALL", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-linux-gnu.h:505:18", "type": { "tag": ":int" } },
18
+{ "tag": "const", "name": "_STRUCT_TIMEVAL", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-linux-gnu.h:506:18", "type": { "tag": ":int" } },
19
+{ "tag": "const", "name": "WCONTINUED", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-linux-gnu.h:507:18", "type": { "tag": ":int" } },
20
+{ "tag": "const", "name": "__SIZEOF_PTHREAD_CONDATTR_T", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-linux-gnu.h:508:18", "type": { "tag": ":int" } },
21
+{ "tag": "const", "name": "_XLOCALE_H", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-linux-gnu.h:509:18", "type": { "tag": ":int" } },
22
+{ "tag": "const", "name": "__SIZEOF_PTHREAD_COND_T", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-linux-gnu.h:510:18", "type": { "tag": ":int" } },
23
+{ "tag": "const", "name": "WNOWAIT", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-linux-gnu.h:511:18", "type": { "tag": ":int" } },
24
+{ "tag": "const", "name": "__USE_SVID", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-linux-gnu.h:512:18", "type": { "tag": ":int" } },
25
+{ "tag": "const", "name": "__USE_MISC", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-linux-gnu.h:513:18", "type": { "tag": ":int" } },
26
+{ "tag": "const", "name": "WUNTRACED", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-linux-gnu.h:514:18", "type": { "tag": ":int" } },
27
+{ "tag": "const", "name": "__USE_BSD", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-linux-gnu.h:515:18", "type": { "tag": ":int" } },
28
+{ "tag": "const", "name": "__USE_ANSI", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-linux-gnu.h:516:18", "type": { "tag": ":int" } },
29
+{ "tag": "const", "name": "WEXITED", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-linux-gnu.h:517:18", "type": { "tag": ":int" } },
30
+{ "tag": "const", "name": "WSTOPPED", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-linux-gnu.h:518:18", "type": { "tag": ":int" } },
31
+{ "tag": "const", "name": "RAND_MAX", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-linux-gnu.h:519:18", "type": { "tag": ":int" } },
32
+{ "tag": "const", "name": "__BIT_TYPES_DEFINED__", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-linux-gnu.h:520:18", "type": { "tag": ":int" } },
33
+{ "tag": "const", "name": "__FD_ZERO_STOS", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-linux-gnu.h:521:13", "type": { "tag": ":pointer", "type": { "tag": ":char" } }, "value": "stosl" },
34
+{ "tag": "const", "name": "EXIT_SUCCESS", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-linux-gnu.h:522:18", "type": { "tag": ":int" } },
35
+{ "tag": "const", "name": "EXIT_FAILURE", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-linux-gnu.h:523:18", "type": { "tag": ":int" } },
36
+{ "tag": "const", "name": "_SYS_SELECT_H", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-linux-gnu.h:524:18", "type": { "tag": ":int" } },
37
+{ "tag": "const", "name": "_SVID_SOURCE", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-linux-gnu.h:525:18", "type": { "tag": ":int" } },
38
+{ "tag": "const", "name": "_SYS_SYSMACROS_H", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-linux-gnu.h:526:18", "type": { "tag": ":int" } },
39
+{ "tag": "const", "name": "_POSIX_C_SOURCE", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-linux-gnu.h:527:18", "type": { "tag": ":int" } },
40
+{ "tag": "const", "name": "_POSIX_SOURCE", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-linux-gnu.h:528:18", "type": { "tag": ":int" } },
41
+{ "tag": "const", "name": "__WORDSIZE", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-linux-gnu.h:529:18", "type": { "tag": ":int" } },
42
+{ "tag": "const", "name": "_BSD_SOURCE", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-linux-gnu.h:530:18", "type": { "tag": ":int" } },
43
+{ "tag": "const", "name": "__ldiv_t_defined", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-linux-gnu.h:531:18", "type": { "tag": ":int" } },
44
+{ "tag": "const", "name": "__lldiv_t_defined", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-linux-gnu.h:532:18", "type": { "tag": ":int" } },
45
+{ "tag": "const", "name": "__SIZEOF_PTHREAD_BARRIERATTR_T", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-linux-gnu.h:533:18", "type": { "tag": ":int" } },
46
+{ "tag": "const", "name": "_IOS_APPEND", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-linux-gnu.h:534:18", "type": { "tag": ":int" } },
47
+{ "tag": "const", "name": "__timespec_defined", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-linux-gnu.h:535:18", "type": { "tag": ":int" } },
48
+{ "tag": "const", "name": "_IOS_NOCREATE", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-linux-gnu.h:536:18", "type": { "tag": ":int" } },
49
+{ "tag": "const", "name": "_IOS_TRUNC", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-linux-gnu.h:537:18", "type": { "tag": ":int" } },
50
+{ "tag": "const", "name": "_IO_UNIFIED_JUMPTABLES", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-linux-gnu.h:538:18", "type": { "tag": ":int" } },
51
+{ "tag": "const", "name": "EOF", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-linux-gnu.h:539:18", "type": { "tag": ":int" } },
52
+{ "tag": "const", "name": "_IOS_INPUT", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-linux-gnu.h:540:18", "type": { "tag": ":int" } },
53
+{ "tag": "const", "name": "_BITS_BYTESWAP_H", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-linux-gnu.h:541:18", "type": { "tag": ":int" } },
54
+{ "tag": "const", "name": "_BITS_TYPES_H", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-linux-gnu.h:542:18", "type": { "tag": ":int" } },
55
+{ "tag": "const", "name": "__WCOREFLAG", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-linux-gnu.h:543:18", "type": { "tag": ":int" } },
56
+{ "tag": "const", "name": "_IOS_OUTPUT", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-linux-gnu.h:544:18", "type": { "tag": ":int" } },
57
+{ "tag": "const", "name": "__BIG_ENDIAN", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-linux-gnu.h:545:18", "type": { "tag": ":int" } },
58
+{ "tag": "const", "name": "__W_CONTINUED", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-linux-gnu.h:546:18", "type": { "tag": ":int" } },
59
+{ "tag": "const", "name": "__clock_t_defined", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-linux-gnu.h:547:18", "type": { "tag": ":int" } },
60
+{ "tag": "const", "name": "_ENDIAN_H", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-linux-gnu.h:548:18", "type": { "tag": ":int" } },
61
+{ "tag": "const", "name": "__LITTLE_ENDIAN", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-linux-gnu.h:549:18", "type": { "tag": ":int" } },
62
+{ "tag": "const", "name": "__time_t_defined", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-linux-gnu.h:550:18", "type": { "tag": ":int" } },
63
+{ "tag": "const", "name": "_OLD_STDIO_MAGIC", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-linux-gnu.h:551:18", "type": { "tag": ":int" } },
64
+{ "tag": "const", "name": "__USE_XOPEN2K8", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-linux-gnu.h:552:18", "type": { "tag": ":int" } },
65
+{ "tag": "const", "name": "_IOS_ATEND", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-linux-gnu.h:553:18", "type": { "tag": ":int" } },
66
+{ "tag": "const", "name": "__PDP_ENDIAN", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-linux-gnu.h:554:18", "type": { "tag": ":int" } },
67
+{ "tag": "const", "name": "__have_pthread_attr_t", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-linux-gnu.h:555:18", "type": { "tag": ":int" } },
68
+{ "tag": "const", "name": "__USE_XOPEN2K", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-linux-gnu.h:556:18", "type": { "tag": ":int" } },
69
+{ "tag": "const", "name": "__clockid_t_defined", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-linux-gnu.h:557:18", "type": { "tag": ":int" } },
70
+{ "tag": "const", "name": "_IO_UNBUFFERED", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-linux-gnu.h:558:18", "type": { "tag": ":int" } },
71
+{ "tag": "const", "name": "__USE_POSIX199309", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-linux-gnu.h:559:18", "type": { "tag": ":int" } },
72
+{ "tag": "const", "name": "__USE_POSIX199506", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-linux-gnu.h:560:18", "type": { "tag": ":int" } },
73
+{ "tag": "const", "name": "_IO_MAGIC_MASK", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-linux-gnu.h:561:18", "type": { "tag": ":int" } },
74
+{ "tag": "const", "name": "__SIZEOF_PTHREAD_BARRIER_T", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-linux-gnu.h:562:18", "type": { "tag": ":int" } },
75
+{ "tag": "const", "name": "__timer_t_defined", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-linux-gnu.h:563:18", "type": { "tag": ":int" } },
76
+{ "tag": "const", "name": "__FD_SETSIZE", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-linux-gnu.h:564:18", "type": { "tag": ":int" } },
77
+{ "tag": "const", "name": "_IO_USER_BUF", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-linux-gnu.h:565:18", "type": { "tag": ":int" } },
78
+{ "tag": "const", "name": "_IO_MAGIC", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-linux-gnu.h:566:18", "type": { "tag": ":int" } },
79
+{ "tag": "const", "name": "_IOS_BIN", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-linux-gnu.h:567:18", "type": { "tag": ":int" } },
80
+{ "tag": "const", "name": "_IOS_NOREPLACE", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-linux-gnu.h:568:18", "type": { "tag": ":int" } },
81
+{ "tag": "const", "name": "__USE_POSIX", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-linux-gnu.h:569:18", "type": { "tag": ":int" } },
82
+{ "tag": "const", "name": "__USE_POSIX2", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-linux-gnu.h:570:18", "type": { "tag": ":int" } },
83
+{ "tag": "const", "name": "__USE_ISOC99", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-linux-gnu.h:571:18", "type": { "tag": ":int" } },
84
+{ "tag": "const", "name": "__USE_ISOC95", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-linux-gnu.h:572:18", "type": { "tag": ":int" } },
85
+{ "tag": "const", "name": "_IO_NO_READS", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-linux-gnu.h:573:18", "type": { "tag": ":int" } },
86
+{ "tag": "const", "name": "_STDLIB_H", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-linux-gnu.h:574:18", "type": { "tag": ":int" } },
87
+{ "tag": "const", "name": "_FEATURES_H", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-linux-gnu.h:575:18", "type": { "tag": ":int" } },
88
+{ "tag": "const", "name": "_IOFBF", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-linux-gnu.h:576:18", "type": { "tag": ":int" } },
89
+{ "tag": "const", "name": "_ATFILE_SOURCE", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-linux-gnu.h:577:18", "type": { "tag": ":int" } },
90
+{ "tag": "const", "name": "__USE_POSIX_IMPLICITLY", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-linux-gnu.h:578:18", "type": { "tag": ":int" } },
91
+{ "tag": "const", "name": "__STDC_NO_THREADS__", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-linux-gnu.h:579:18", "type": { "tag": ":int" } },
92
+{ "tag": "const", "name": "__GNU_LIBRARY__", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-linux-gnu.h:580:18", "type": { "tag": ":int" } },
93
+{ "tag": "const", "name": "__STDC_IEC_559_COMPLEX__", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-linux-gnu.h:581:18", "type": { "tag": ":int" } },
94
+{ "tag": "const", "name": "__STDC_ISO_10646__", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-linux-gnu.h:582:18", "type": { "tag": ":int" } },
95
+{ "tag": "const", "name": "_BITS_TYPESIZES_H", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-linux-gnu.h:583:18", "type": { "tag": ":int" } },
96
+{ "tag": "const", "name": "__STDC_IEC_559__", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-linux-gnu.h:584:18", "type": { "tag": ":int" } },
97
+{ "tag": "const", "name": "_STDC_PREDEF_H", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-linux-gnu.h:585:18", "type": { "tag": ":int" } },
98
+{ "tag": "const", "name": "__NFDBITS", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-linux-gnu.h:586:18", "type": { "tag": ":int" } },
99
+{ "tag": "const", "name": "_SYS_CDEFS_H", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-linux-gnu.h:587:18", "type": { "tag": ":int" } },
100
+{ "tag": "const", "name": "__GLIBC_HAVE_LONG_LONG", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-linux-gnu.h:588:18", "type": { "tag": ":int" } },
101
+{ "tag": "const", "name": "__GLIBC__", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-linux-gnu.h:589:18", "type": { "tag": ":int" } },
102
+{ "tag": "const", "name": "__GLIBC_MINOR__", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-linux-gnu.h:590:18", "type": { "tag": ":int" } },
103
+{ "tag": "const", "name": "L_tmpnam", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-linux-gnu.h:591:18", "type": { "tag": ":int" } },
104
+{ "tag": "const", "name": "SEEK_END", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-linux-gnu.h:592:18", "type": { "tag": ":int" } },
105
+{ "tag": "const", "name": "P_tmpdir", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-linux-gnu.h:593:13", "type": { "tag": ":pointer", "type": { "tag": ":char" } }, "value": "/tmp" },
106
+{ "tag": "const", "name": "_IO_DELETE_DONT_CLOSE", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-linux-gnu.h:594:18", "type": { "tag": ":int" } },
107
+{ "tag": "const", "name": "_IONBF", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-linux-gnu.h:595:18", "type": { "tag": ":int" } },
108
+{ "tag": "const", "name": "SEEK_CUR", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-linux-gnu.h:596:18", "type": { "tag": ":int" } },
109
+{ "tag": "const", "name": "_IO_LINKED", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-linux-gnu.h:597:18", "type": { "tag": ":int" } },
110
+{ "tag": "const", "name": "SEEK_SET", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-linux-gnu.h:598:18", "type": { "tag": ":int" } },
111
+{ "tag": "const", "name": "_IO_EOF_SEEN", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-linux-gnu.h:599:18", "type": { "tag": ":int" } },
112
+{ "tag": "const", "name": "L_ctermid", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-linux-gnu.h:600:18", "type": { "tag": ":int" } },
113
+{ "tag": "const", "name": "TMP_MAX", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-linux-gnu.h:601:18", "type": { "tag": ":int" } },
114
+{ "tag": "const", "name": "_IO_ERR_SEEN", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-linux-gnu.h:602:18", "type": { "tag": ":int" } },
115
+{ "tag": "const", "name": "_IO_TIED_PUT_GET", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-linux-gnu.h:603:18", "type": { "tag": ":int" } },
116
+{ "tag": "const", "name": "_IOLBF", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-linux-gnu.h:604:18", "type": { "tag": ":int" } },
117
+{ "tag": "const", "name": "_IO_CURRENTLY_PUTTING", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-linux-gnu.h:605:18", "type": { "tag": ":int" } },
118
+{ "tag": "const", "name": "_IO_IN_BACKUP", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-linux-gnu.h:606:18", "type": { "tag": ":int" } },
119
+{ "tag": "const", "name": "_IO_LINE_BUF", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-linux-gnu.h:607:18", "type": { "tag": ":int" } },
120
+{ "tag": "const", "name": "FOPEN_MAX", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-linux-gnu.h:608:18", "type": { "tag": ":int" } },
121
+{ "tag": "const", "name": "FILENAME_MAX", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-linux-gnu.h:609:18", "type": { "tag": ":int" } },
122
+{ "tag": "const", "name": "_IO_USER_LOCK", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-linux-gnu.h:610:18", "type": { "tag": ":int" } },
123
+{ "tag": "const", "name": "_IO_FLAGS2_MMAP", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-linux-gnu.h:611:18", "type": { "tag": ":int" } },
124
+{ "tag": "const", "name": "_IO_IS_APPENDING", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-linux-gnu.h:612:18", "type": { "tag": ":int" } },
125
+{ "tag": "const", "name": "_IO_IS_FILEBUF", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-linux-gnu.h:613:18", "type": { "tag": ":int" } },
126
+{ "tag": "const", "name": "_IO_BAD_SEEN", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-linux-gnu.h:614:18", "type": { "tag": ":int" } },
127
+{ "tag": "const", "name": "_IO_SKIPWS", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-linux-gnu.h:615:18", "type": { "tag": ":int" } },
128
+{ "tag": "const", "name": "_IO_LEFT", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-linux-gnu.h:616:18", "type": { "tag": ":int" } },
129
+{ "tag": "const", "name": "_IO_FLAGS2_NOTCANCEL", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-linux-gnu.h:617:18", "type": { "tag": ":int" } },
130
+{ "tag": "const", "name": "_IO_FLAGS2_USER_WBUF", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-linux-gnu.h:618:18", "type": { "tag": ":int" } },
131
+{ "tag": "const", "name": "_IO_OCT", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-linux-gnu.h:619:18", "type": { "tag": ":int" } },
132
+{ "tag": "const", "name": "_IO_HEX", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-linux-gnu.h:620:18", "type": { "tag": ":int" } },
133
+{ "tag": "const", "name": "_IO_RIGHT", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-linux-gnu.h:621:18", "type": { "tag": ":int" } },
134
+{ "tag": "const", "name": "_IO_DEC", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-linux-gnu.h:622:18", "type": { "tag": ":int" } },
135
+{ "tag": "const", "name": "_IO_INTERNAL", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-linux-gnu.h:623:18", "type": { "tag": ":int" } },
136
+{ "tag": "const", "name": "_IO_SHOWPOS", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-linux-gnu.h:624:18", "type": { "tag": ":int" } },
137
+{ "tag": "const", "name": "_IO_UPPERCASE", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-linux-gnu.h:625:18", "type": { "tag": ":int" } },
138
+{ "tag": "const", "name": "_IO_SCIENTIFIC", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-linux-gnu.h:626:18", "type": { "tag": ":int" } },
139
+{ "tag": "const", "name": "_IO_SHOWBASE", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-linux-gnu.h:627:18", "type": { "tag": ":int" } },
140
+{ "tag": "const", "name": "_IO_SHOWPOINT", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-linux-gnu.h:628:18", "type": { "tag": ":int" } },
141
+{ "tag": "const", "name": "_IO_STDIO", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-linux-gnu.h:629:18", "type": { "tag": ":int" } },
142
+{ "tag": "const", "name": "_IO_DONT_CLOSE", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-linux-gnu.h:630:18", "type": { "tag": ":int" } },
143
+{ "tag": "const", "name": "_IO_FIXED", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-linux-gnu.h:631:18", "type": { "tag": ":int" } },
144
+{ "tag": "const", "name": "_IO_UNITBUF", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-linux-gnu.h:632:18", "type": { "tag": ":int" } },
145
+{ "tag": "const", "name": "_IO_BOOLALPHA", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-linux-gnu.h:633:18", "type": { "tag": ":int" } },
146
+{ "tag": "const", "name": "____mbstate_t_defined", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-linux-gnu.h:634:18", "type": { "tag": ":int" } },
147
+{ "tag": "const", "name": "____FILE_defined", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-linux-gnu.h:635:18", "type": { "tag": ":int" } },
148
+{ "tag": "const", "name": "_G_config_h", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-linux-gnu.h:636:18", "type": { "tag": ":int" } },
149
+{ "tag": "const", "name": "_G_IO_IO_FILE_VERSION", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-linux-gnu.h:637:18", "type": { "tag": ":int" } },
150
+{ "tag": "const", "name": "_G_HAVE_MREMAP", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-linux-gnu.h:638:18", "type": { "tag": ":int" } },
151
+{ "tag": "const", "name": "_G_HAVE_MMAP", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-linux-gnu.h:639:18", "type": { "tag": ":int" } },
152
+{ "tag": "const", "name": "_G_BUFSIZ", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-linux-gnu.h:640:18", "type": { "tag": ":int" } },
153
+{ "tag": "const", "name": "_ALLOCA_H", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-linux-gnu.h:641:18", "type": { "tag": ":int" } },
154
+{ "tag": "const", "name": "YAML_NULL_TAG", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-linux-gnu.h:642:13", "type": { "tag": ":pointer", "type": { "tag": ":char" } }, "value": "tag:yaml.org,2002:null" },
155
+{ "tag": "const", "name": "YAML_BOOL_TAG", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-linux-gnu.h:643:13", "type": { "tag": ":pointer", "type": { "tag": ":char" } }, "value": "tag:yaml.org,2002:bool" },
156
+{ "tag": "const", "name": "YAML_SEQ_TAG", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-linux-gnu.h:644:13", "type": { "tag": ":pointer", "type": { "tag": ":char" } }, "value": "tag:yaml.org,2002:seq" },
157
+{ "tag": "const", "name": "YAML_INT_TAG", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-linux-gnu.h:645:13", "type": { "tag": ":pointer", "type": { "tag": ":char" } }, "value": "tag:yaml.org,2002:int" },
158
+{ "tag": "const", "name": "YAML_MAP_TAG", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-linux-gnu.h:646:13", "type": { "tag": ":pointer", "type": { "tag": ":char" } }, "value": "tag:yaml.org,2002:map" },
159
+{ "tag": "const", "name": "YAML_STR_TAG", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-linux-gnu.h:647:13", "type": { "tag": ":pointer", "type": { "tag": ":char" } }, "value": "tag:yaml.org,2002:str" },
160
+{ "tag": "const", "name": "YAML_TIMESTAMP_TAG", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-linux-gnu.h:648:13", "type": { "tag": ":pointer", "type": { "tag": ":char" } }, "value": "tag:yaml.org,2002:timestamp" },
161
+{ "tag": "const", "name": "YAML_FLOAT_TAG", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-linux-gnu.h:649:13", "type": { "tag": ":pointer", "type": { "tag": ":char" } }, "value": "tag:yaml.org,2002:float" },
162
+{ "tag": "const", "name": "__FILE_defined", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-linux-gnu.h:650:18", "type": { "tag": ":int" } },
163
+{ "tag": "const", "name": "_STDIO_H", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-linux-gnu.h:651:18", "type": { "tag": ":int" } },
164
+{ "tag": "const", "name": "_IO_NO_WRITES", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-linux-gnu.h:652:18", "type": { "tag": ":int" } }
165
+]
0 166
new file mode 100755
... ...
@@ -0,0 +1,515 @@
1
+[
2
+{ "tag": "typedef", "name": "size_t", "location": "/usr/include/stddef.h:213:23", "type": { "tag": ":unsigned-int" } },
3
+{ "tag": "typedef", "name": "wchar_t", "location": "/usr/include/stddef.h:325:24", "type": { "tag": ":int" } },
4
+{ "tag": "typedef", "name": "__u_char", "location": "/usr/include/bits/types.h:30:23", "type": { "tag": ":unsigned-char" } },
5
+{ "tag": "typedef", "name": "__u_short", "location": "/usr/include/bits/types.h:31:28", "type": { "tag": ":unsigned-short" } },
6
+{ "tag": "typedef", "name": "__u_int", "location": "/usr/include/bits/types.h:32:22", "type": { "tag": ":unsigned-int" } },
7
+{ "tag": "typedef", "name": "__u_long", "location": "/usr/include/bits/types.h:33:27", "type": { "tag": ":unsigned-long" } },
8
+{ "tag": "typedef", "name": "__int8_t", "location": "/usr/include/bits/types.h:36:21", "type": { "tag": ":signed-char" } },
9
+{ "tag": "typedef", "name": "__uint8_t", "location": "/usr/include/bits/types.h:37:23", "type": { "tag": ":unsigned-char" } },
10
+{ "tag": "typedef", "name": "__int16_t", "location": "/usr/include/bits/types.h:38:26", "type": { "tag": ":short" } },
11
+{ "tag": "typedef", "name": "__uint16_t", "location": "/usr/include/bits/types.h:39:28", "type": { "tag": ":unsigned-short" } },
12
+{ "tag": "typedef", "name": "__int32_t", "location": "/usr/include/bits/types.h:40:20", "type": { "tag": ":int" } },
13
+{ "tag": "typedef", "name": "__uint32_t", "location": "/usr/include/bits/types.h:41:22", "type": { "tag": ":unsigned-int" } },
14
+{ "tag": "typedef", "name": "__int64_t", "location": "/usr/include/bits/types.h:46:44", "type": { "tag": ":long-long" } },
15
+{ "tag": "typedef", "name": "__uint64_t", "location": "/usr/include/bits/types.h:47:46", "type": { "tag": ":unsigned-long-long" } },
16
+{ "tag": "typedef", "name": "__quad_t", "location": "/usr/include/bits/types.h:55:37", "type": { "tag": ":long-long" } },
17
+{ "tag": "typedef", "name": "__u_quad_t", "location": "/usr/include/bits/types.h:56:46", "type": { "tag": ":unsigned-long-long" } },
18
+{ "tag": "typedef", "name": "__dev_t", "location": "/usr/include/bits/types.h:133:25", "type": { "tag": "__u_quad_t" } },
19
+{ "tag": "typedef", "name": "__uid_t", "location": "/usr/include/bits/types.h:134:25", "type": { "tag": ":unsigned-int" } },
20
+{ "tag": "typedef", "name": "__gid_t", "location": "/usr/include/bits/types.h:135:25", "type": { "tag": ":unsigned-int" } },
21
+{ "tag": "typedef", "name": "__ino_t", "location": "/usr/include/bits/types.h:136:25", "type": { "tag": ":unsigned-long" } },
22
+{ "tag": "typedef", "name": "__ino64_t", "location": "/usr/include/bits/types.h:137:27", "type": { "tag": "__u_quad_t" } },
23
+{ "tag": "typedef", "name": "__mode_t", "location": "/usr/include/bits/types.h:138:26", "type": { "tag": ":unsigned-int" } },
24
+{ "tag": "typedef", "name": "__nlink_t", "location": "/usr/include/bits/types.h:139:27", "type": { "tag": ":unsigned-int" } },
25
+{ "tag": "typedef", "name": "__off_t", "location": "/usr/include/bits/types.h:140:25", "type": { "tag": ":long" } },
26
+{ "tag": "typedef", "name": "__off64_t", "location": "/usr/include/bits/types.h:141:27", "type": { "tag": "__quad_t" } },
27
+{ "tag": "typedef", "name": "__pid_t", "location": "/usr/include/bits/types.h:142:25", "type": { "tag": ":int" } },
28
+{ "tag": "typedef", "name": "__fsid_t", "location": "/usr/include/bits/types.h:143:26", "type": { "tag": "struct", "name": "", "id": 1, "location": "/usr/include/bits/types.h:143:12 <Spelling=/usr/include/bits/typesizes.h:72:24>", "bit-size": 64, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "__val", "bit-offset": 0, "bit-size": 64, "bit-alignment": 32, "type": { "tag": ":array", "type": { "tag": ":int" }, "size": 2 } }] } },
29
+{ "tag": "typedef", "name": "__clock_t", "location": "/usr/include/bits/types.h:144:27", "type": { "tag": ":long" } },
30
+{ "tag": "typedef", "name": "__rlim_t", "location": "/usr/include/bits/types.h:145:26", "type": { "tag": ":unsigned-long" } },
31
+{ "tag": "typedef", "name": "__rlim64_t", "location": "/usr/include/bits/types.h:146:28", "type": { "tag": "__u_quad_t" } },
32
+{ "tag": "typedef", "name": "__id_t", "location": "/usr/include/bits/types.h:147:24", "type": { "tag": ":unsigned-int" } },
33
+{ "tag": "typedef", "name": "__time_t", "location": "/usr/include/bits/types.h:148:26", "type": { "tag": ":long" } },
34
+{ "tag": "typedef", "name": "__useconds_t", "location": "/usr/include/bits/types.h:149:30", "type": { "tag": ":unsigned-int" } },
35
+{ "tag": "typedef", "name": "__suseconds_t", "location": "/usr/include/bits/types.h:150:31", "type": { "tag": ":long" } },
36
+{ "tag": "typedef", "name": "__daddr_t", "location": "/usr/include/bits/types.h:152:27", "type": { "tag": ":int" } },
37
+{ "tag": "typedef", "name": "__key_t", "location": "/usr/include/bits/types.h:153:25", "type": { "tag": ":int" } },
38
+{ "tag": "typedef", "name": "__clockid_t", "location": "/usr/include/bits/types.h:156:29", "type": { "tag": ":int" } },
39
+{ "tag": "typedef", "name": "__timer_t", "location": "/usr/include/bits/types.h:159:27", "type": { "tag": ":pointer", "type": { "tag": ":void" } } },
40
+{ "tag": "typedef", "name": "__blksize_t", "location": "/usr/include/bits/types.h:162:29", "type": { "tag": ":long" } },
41
+{ "tag": "typedef", "name": "__blkcnt_t", "location": "/usr/include/bits/types.h:167:28", "type": { "tag": ":long" } },
42
+{ "tag": "typedef", "name": "__blkcnt64_t", "location": "/usr/include/bits/types.h:168:30", "type": { "tag": "__quad_t" } },
43
+{ "tag": "typedef", "name": "__fsblkcnt_t", "location": "/usr/include/bits/types.h:171:30", "type": { "tag": ":unsigned-long" } },
44
+{ "tag": "typedef", "name": "__fsblkcnt64_t", "location": "/usr/include/bits/types.h:172:32", "type": { "tag": "__u_quad_t" } },
45
+{ "tag": "typedef", "name": "__fsfilcnt_t", "location": "/usr/include/bits/types.h:175:30", "type": { "tag": ":unsigned-long" } },
46
+{ "tag": "typedef", "name": "__fsfilcnt64_t", "location": "/usr/include/bits/types.h:176:32", "type": { "tag": "__u_quad_t" } },
47
+{ "tag": "typedef", "name": "__fsword_t", "location": "/usr/include/bits/types.h:179:28", "type": { "tag": ":int" } },
48
+{ "tag": "typedef", "name": "__ssize_t", "location": "/usr/include/bits/types.h:181:27", "type": { "tag": ":int" } },
49
+{ "tag": "typedef", "name": "__syscall_slong_t", "location": "/usr/include/bits/types.h:184:33", "type": { "tag": ":long" } },
50
+{ "tag": "typedef", "name": "__syscall_ulong_t", "location": "/usr/include/bits/types.h:186:33", "type": { "tag": ":unsigned-long" } },
51
+{ "tag": "typedef", "name": "__loff_t", "location": "/usr/include/bits/types.h:190:19", "type": { "tag": "__off64_t" } },
52
+{ "tag": "typedef", "name": "__qaddr_t", "location": "/usr/include/bits/types.h:191:19", "type": { "tag": ":pointer", "type": { "tag": "__quad_t" } } },
53
+{ "tag": "typedef", "name": "__caddr_t", "location": "/usr/include/bits/types.h:192:15", "type": { "tag": ":pointer", "type": { "tag": ":char" } } },
54
+{ "tag": "typedef", "name": "__intptr_t", "location": "/usr/include/bits/types.h:195:25", "type": { "tag": ":int" } },
55
+{ "tag": "typedef", "name": "__socklen_t", "location": "/usr/include/bits/types.h:198:23", "type": { "tag": ":unsigned-int" } },
56
+{ "tag": "union", "name": "wait", "id": 0, "location": "/usr/include/bits/waitstatus.h:66:7", "bit-size": 32, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "w_status", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "__wait_terminated", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "struct", "name": "", "id": 2, "location": "/usr/include/bits/waitstatus.h:69:5", "bit-size": 32, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "__w_termsig", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":bitfield", "width": 7, "type": { "tag": ":unsigned-int" } } }, { "tag": "field", "name": "__w_coredump", "bit-offset": 7, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":bitfield", "width": 1, "type": { "tag": ":unsigned-int" } } }, { "tag": "field", "name": "__w_retcode", "bit-offset": 8, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":bitfield", "width": 8, "type": { "tag": ":unsigned-int" } } }, { "tag": "field", "name": "", "bit-offset": 16, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":bitfield", "width": 16, "type": { "tag": ":unsigned-int" } } }] } }, { "tag": "field", "name": "__wait_stopped", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "struct", "name": "", "id": 3, "location": "/usr/include/bits/waitstatus.h:84:5", "bit-size": 32, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "__w_stopval", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":bitfield", "width": 8, "type": { "tag": ":unsigned-int" } } }, { "tag": "field", "name": "__w_stopsig", "bit-offset": 8, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":bitfield", "width": 8, "type": { "tag": ":unsigned-int" } } }, { "tag": "field", "name": "", "bit-offset": 16, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":bitfield", "width": 16, "type": { "tag": ":unsigned-int" } } }] } }] },
57
+{ "tag": "typedef", "name": "__WAIT_STATUS", "location": "/usr/include/stdlib.h:71:5", "type": { "tag": "union", "name": "", "id": 4, "location": "/usr/include/stdlib.h:67:9", "bit-size": 32, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "__uptr", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": ":union", "name": "wait", "id": 0 } } }, { "tag": "field", "name": "__iptr", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": ":int" } } }] } },
58
+{ "tag": "typedef", "name": "div_t", "location": "/usr/include/stdlib.h:101:5", "type": { "tag": "struct", "name": "", "id": 5, "location": "/usr/include/stdlib.h:97:9", "bit-size": 64, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "quot", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "rem", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }] } },
59
+{ "tag": "typedef", "name": "ldiv_t", "location": "/usr/include/stdlib.h:109:5", "type": { "tag": "struct", "name": "", "id": 6, "location": "/usr/include/stdlib.h:105:9", "bit-size": 64, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "quot", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":long" } }, { "tag": "field", "name": "rem", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":long" } }] } },
60
+{ "tag": "typedef", "name": "lldiv_t", "location": "/usr/include/stdlib.h:121:5", "type": { "tag": "struct", "name": "", "id": 7, "location": "/usr/include/stdlib.h:117:23", "bit-size": 128, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "quot", "bit-offset": 0, "bit-size": 64, "bit-alignment": 32, "type": { "tag": ":long-long" } }, { "tag": "field", "name": "rem", "bit-offset": 64, "bit-size": 64, "bit-alignment": 32, "type": { "tag": ":long-long" } }] } },
61
+{ "tag": "function", "name": "__ctype_get_mb_cur_max", "location": "/usr/include/stdlib.h:139:15", "variadic": false, "parameters": [], "return-type": { "tag": "size_t" } },
62
+{ "tag": "function", "name": "atof", "location": "/usr/include/stdlib.h:144:15", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__nptr", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":double" } },
63
+{ "tag": "function", "name": "atoi", "location": "/usr/include/stdlib.h:147:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__nptr", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":int" } },
64
+{ "tag": "function", "name": "atol", "location": "/usr/include/stdlib.h:150:17", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__nptr", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":long" } },
65
+{ "tag": "function", "name": "atoll", "location": "/usr/include/stdlib.h:157:36", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__nptr", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":long-long" } },
66
+{ "tag": "function", "name": "strtod", "location": "/usr/include/stdlib.h:164:15", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__nptr", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__endptr", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char" } } } }], "return-type": { "tag": ":double" } },
67
+{ "tag": "function", "name": "strtof", "location": "/usr/include/stdlib.h:172:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__nptr", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__endptr", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char" } } } }], "return-type": { "tag": ":float" } },
68
+{ "tag": "function", "name": "strtold", "location": "/usr/include/stdlib.h:175:20", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__nptr", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__endptr", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char" } } } }], "return-type": { "tag": ":long-double" } },
69
+{ "tag": "function", "name": "strtol", "location": "/usr/include/stdlib.h:183:17", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__nptr", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__endptr", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char" } } } }, { "tag": "parameter", "name": "__base", "type": { "tag": ":int" } }], "return-type": { "tag": ":long" } },
70
+{ "tag": "function", "name": "strtoul", "location": "/usr/include/stdlib.h:187:26", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__nptr", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__endptr", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char" } } } }, { "tag": "parameter", "name": "__base", "type": { "tag": ":int" } }], "return-type": { "tag": ":unsigned-long" } },
71
+{ "tag": "function", "name": "strtoq", "location": "/usr/include/stdlib.h:195:22", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__nptr", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__endptr", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char" } } } }, { "tag": "parameter", "name": "__base", "type": { "tag": ":int" } }], "return-type": { "tag": ":long-long" } },
72
+{ "tag": "function", "name": "strtouq", "location": "/usr/include/stdlib.h:200:31", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__nptr", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__endptr", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char" } } } }, { "tag": "parameter", "name": "__base", "type": { "tag": ":int" } }], "return-type": { "tag": ":unsigned-long-long" } },
73
+{ "tag": "function", "name": "strtoll", "location": "/usr/include/stdlib.h:209:22", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__nptr", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__endptr", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char" } } } }, { "tag": "parameter", "name": "__base", "type": { "tag": ":int" } }], "return-type": { "tag": ":long-long" } },
74
+{ "tag": "function", "name": "strtoull", "location": "/usr/include/stdlib.h:214:31", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__nptr", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__endptr", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char" } } } }, { "tag": "parameter", "name": "__base", "type": { "tag": ":int" } }], "return-type": { "tag": ":unsigned-long-long" } },
75
+{ "tag": "function", "name": "l64a", "location": "/usr/include/stdlib.h:305:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__n", "type": { "tag": ":long" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
76
+{ "tag": "function", "name": "a64l", "location": "/usr/include/stdlib.h:308:17", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":long" } },
77
+{ "tag": "typedef", "name": "u_char", "location": "/usr/include/sys/types.h:33:18", "type": { "tag": "__u_char" } },
78
+{ "tag": "typedef", "name": "u_short", "location": "/usr/include/sys/types.h:34:19", "type": { "tag": "__u_short" } },
79
+{ "tag": "typedef", "name": "u_int", "location": "/usr/include/sys/types.h:35:17", "type": { "tag": "__u_int" } },
80
+{ "tag": "typedef", "name": "u_long", "location": "/usr/include/sys/types.h:36:18", "type": { "tag": "__u_long" } },
81
+{ "tag": "typedef", "name": "quad_t", "location": "/usr/include/sys/types.h:37:18", "type": { "tag": "__quad_t" } },
82
+{ "tag": "typedef", "name": "u_quad_t", "location": "/usr/include/sys/types.h:38:20", "type": { "tag": "__u_quad_t" } },
83
+{ "tag": "typedef", "name": "fsid_t", "location": "/usr/include/sys/types.h:39:18", "type": { "tag": "__fsid_t" } },
84
+{ "tag": "typedef", "name": "loff_t", "location": "/usr/include/sys/types.h:44:18", "type": { "tag": "__loff_t" } },
85
+{ "tag": "typedef", "name": "ino_t", "location": "/usr/include/sys/types.h:48:17", "type": { "tag": "__ino_t" } },
86
+{ "tag": "typedef", "name": "dev_t", "location": "/usr/include/sys/types.h:60:17", "type": { "tag": "__dev_t" } },
87
+{ "tag": "typedef", "name": "gid_t", "location": "/usr/include/sys/types.h:65:17", "type": { "tag": "__gid_t" } },
88
+{ "tag": "typedef", "name": "mode_t", "location": "/usr/include/sys/types.h:70:18", "type": { "tag": "__mode_t" } },
89
+{ "tag": "typedef", "name": "nlink_t", "location": "/usr/include/sys/types.h:75:19", "type": { "tag": "__nlink_t" } },
90
+{ "tag": "typedef", "name": "uid_t", "location": "/usr/include/sys/types.h:80:17", "type": { "tag": "__uid_t" } },
91
+{ "tag": "typedef", "name": "off_t", "location": "/usr/include/sys/types.h:86:17", "type": { "tag": "__off_t" } },
92
+{ "tag": "typedef", "name": "pid_t", "location": "/usr/include/sys/types.h:98:17", "type": { "tag": "__pid_t" } },
93
+{ "tag": "typedef", "name": "id_t", "location": "/usr/include/sys/types.h:104:16", "type": { "tag": "__id_t" } },
94
+{ "tag": "typedef", "name": "ssize_t", "location": "/usr/include/sys/types.h:109:19", "type": { "tag": "__ssize_t" } },
95
+{ "tag": "typedef", "name": "daddr_t", "location": "/usr/include/sys/types.h:115:19", "type": { "tag": "__daddr_t" } },
96
+{ "tag": "typedef", "name": "caddr_t", "location": "/usr/include/sys/types.h:116:19", "type": { "tag": "__caddr_t" } },
97
+{ "tag": "typedef", "name": "key_t", "location": "/usr/include/sys/types.h:122:17", "type": { "tag": "__key_t" } },
98
+{ "tag": "typedef", "name": "clock_t", "location": "/usr/include/time.h:59:19", "type": { "tag": "__clock_t" } },
99
+{ "tag": "typedef", "name": "time_t", "location": "/usr/include/time.h:75:18", "type": { "tag": "__time_t" } },
100
+{ "tag": "typedef", "name": "clockid_t", "location": "/usr/include/time.h:91:21", "type": { "tag": "__clockid_t" } },
101
+{ "tag": "typedef", "name": "timer_t", "location": "/usr/include/time.h:103:19", "type": { "tag": "__timer_t" } },
102
+{ "tag": "typedef", "name": "ulong", "location": "/usr/include/sys/types.h:150:27", "type": { "tag": ":unsigned-long" } },
103
+{ "tag": "typedef", "name": "ushort", "location": "/usr/include/sys/types.h:151:28", "type": { "tag": ":unsigned-short" } },
104
+{ "tag": "typedef", "name": "uint", "location": "/usr/include/sys/types.h:152:22", "type": { "tag": ":unsigned-int" } },
105
+{ "tag": "typedef", "name": "int8_t", "location": "/usr/include/sys/types.h:194:1 <Spelling=<scratch space>:3:1>", "type": { "tag": ":int" } },
106
+{ "tag": "typedef", "name": "int16_t", "location": "/usr/include/sys/types.h:195:1 <Spelling=<scratch space>:3:1>", "type": { "tag": ":int" } },
107
+{ "tag": "typedef", "name": "int32_t", "location": "/usr/include/sys/types.h:196:1 <Spelling=<scratch space>:3:1>", "type": { "tag": ":int" } },
108
+{ "tag": "typedef", "name": "int64_t", "location": "/usr/include/sys/types.h:197:1 <Spelling=<scratch space>:3:1>", "type": { "tag": ":int" } },
109
+{ "tag": "typedef", "name": "u_int8_t", "location": "/usr/include/sys/types.h:200:1 <Spelling=<scratch space>:3:1>", "type": { "tag": ":unsigned-int" } },
110
+{ "tag": "typedef", "name": "u_int16_t", "location": "/usr/include/sys/types.h:201:1 <Spelling=<scratch space>:3:1>", "type": { "tag": ":unsigned-int" } },
111
+{ "tag": "typedef", "name": "u_int32_t", "location": "/usr/include/sys/types.h:202:1 <Spelling=<scratch space>:3:1>", "type": { "tag": ":unsigned-int" } },
112
+{ "tag": "typedef", "name": "u_int64_t", "location": "/usr/include/sys/types.h:203:1 <Spelling=<scratch space>:3:1>", "type": { "tag": ":unsigned-int" } },
113
+{ "tag": "typedef", "name": "register_t", "location": "/usr/include/sys/types.h:205:13", "type": { "tag": ":int" } },
114
+{ "tag": "typedef", "name": "__sig_atomic_t", "location": "/usr/include/bits/sigset.h:23:13", "type": { "tag": ":int" } },
115
+{ "tag": "typedef", "name": "__sigset_t", "location": "/usr/include/bits/sigset.h:31:5", "type": { "tag": "struct", "name": "", "id": 8, "location": "/usr/include/bits/sigset.h:28:9", "bit-size": 1024, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "__val", "bit-offset": 0, "bit-size": 1024, "bit-alignment": 32, "type": { "tag": ":array", "type": { "tag": ":unsigned-long" }, "size": 32 } }] } },
116
+{ "tag": "typedef", "name": "sigset_t", "location": "/usr/include/sys/select.h:37:20", "type": { "tag": "__sigset_t" } },
117
+{ "tag": "struct", "name": "timespec", "id": 0, "location": "/usr/include/time.h:120:8", "bit-size": 64, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "tv_sec", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "__time_t" } }, { "tag": "field", "name": "tv_nsec", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "__syscall_slong_t" } }] },
118
+{ "tag": "struct", "name": "timeval", "id": 0, "location": "/usr/include/bits/time.h:30:8", "bit-size": 64, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "tv_sec", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "__time_t" } }, { "tag": "field", "name": "tv_usec", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "__suseconds_t" } }] },
119
+{ "tag": "typedef", "name": "suseconds_t", "location": "/usr/include/sys/select.h:48:23", "type": { "tag": "__suseconds_t" } },
120
+{ "tag": "typedef", "name": "__fd_mask", "location": "/usr/include/sys/select.h:54:18", "type": { "tag": ":long" } },
121
+{ "tag": "typedef", "name": "fd_set", "location": "/usr/include/sys/select.h:75:5", "type": { "tag": "struct", "name": "", "id": 9, "location": "/usr/include/sys/select.h:64:9", "bit-size": 1024, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "__fds_bits", "bit-offset": 0, "bit-size": 1024, "bit-alignment": 32, "type": { "tag": ":array", "type": { "tag": "__fd_mask" }, "size": 32 } }] } },
122
+{ "tag": "typedef", "name": "fd_mask", "location": "/usr/include/sys/select.h:82:19", "type": { "tag": "__fd_mask" } },
123
+{ "tag": "function", "name": "select", "location": "/usr/include/sys/select.h:106:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__nfds", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__readfds", "type": { "tag": ":pointer", "type": { "tag": "fd_set" } } }, { "tag": "parameter", "name": "__writefds", "type": { "tag": ":pointer", "type": { "tag": "fd_set" } } }, { "tag": "parameter", "name": "__exceptfds", "type": { "tag": ":pointer", "type": { "tag": "fd_set" } } }, { "tag": "parameter", "name": "__timeout", "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "timeval", "id": 0 } } }], "return-type": { "tag": ":int" } },
124
+{ "tag": "function", "name": "pselect", "location": "/usr/include/sys/select.h:118:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__nfds", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__readfds", "type": { "tag": ":pointer", "type": { "tag": "fd_set" } } }, { "tag": "parameter", "name": "__writefds", "type": { "tag": ":pointer", "type": { "tag": "fd_set" } } }, { "tag": "parameter", "name": "__exceptfds", "type": { "tag": ":pointer", "type": { "tag": "fd_set" } } }, { "tag": "parameter", "name": "__timeout", "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "timespec", "id": 0 } } }, { "tag": "parameter", "name": "__sigmask", "type": { "tag": ":pointer", "type": { "tag": "__sigset_t" } } }], "return-type": { "tag": ":int" } },
125
+{ "tag": "function", "name": "gnu_dev_major", "location": "/usr/include/sys/sysmacros.h:32:21", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__dev", "type": { "tag": ":unsigned-long-long" } }], "return-type": { "tag": ":unsigned-int" } },
126
+{ "tag": "function", "name": "gnu_dev_minor", "location": "/usr/include/sys/sysmacros.h:35:21", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__dev", "type": { "tag": ":unsigned-long-long" } }], "return-type": { "tag": ":unsigned-int" } },
127
+{ "tag": "function", "name": "gnu_dev_makedev", "location": "/usr/include/sys/sysmacros.h:38:31", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__major", "type": { "tag": ":unsigned-int" } }, { "tag": "parameter", "name": "__minor", "type": { "tag": ":unsigned-int" } }], "return-type": { "tag": ":unsigned-long-long" } },
128
+{ "tag": "typedef", "name": "blksize_t", "location": "/usr/include/sys/types.h:228:21", "type": { "tag": "__blksize_t" } },
129
+{ "tag": "typedef", "name": "blkcnt_t", "location": "/usr/include/sys/types.h:235:20", "type": { "tag": "__blkcnt_t" } },
130
+{ "tag": "typedef", "name": "fsblkcnt_t", "location": "/usr/include/sys/types.h:239:22", "type": { "tag": "__fsblkcnt_t" } },
131
+{ "tag": "typedef", "name": "fsfilcnt_t", "location": "/usr/include/sys/types.h:243:22", "type": { "tag": "__fsfilcnt_t" } },
132
+{ "tag": "typedef", "name": "pthread_t", "location": "/usr/include/bits/pthreadtypes.h:60:27", "type": { "tag": ":unsigned-long" } },
133
+{ "tag": "union", "name": "pthread_attr_t", "id": 0, "location": "/usr/include/bits/pthreadtypes.h:63:7", "bit-size": 288, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "__size", "bit-offset": 0, "bit-size": 288, "bit-alignment": 8, "type": { "tag": ":array", "type": { "tag": ":char" }, "size": 36 } }, { "tag": "field", "name": "__align", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":long" } }] },
134
+{ "tag": "typedef", "name": "pthread_attr_t", "location": "/usr/include/bits/pthreadtypes.h:69:30", "type": { "tag": ":union", "name": "pthread_attr_t", "id": 0 } },
135
+{ "tag": "struct", "name": "__pthread_internal_slist", "id": 0, "location": "/usr/include/bits/pthreadtypes.h:81:16", "bit-size": 32, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "__next", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "__pthread_internal_slist", "id": 0 } } }] },
136
+{ "tag": "typedef", "name": "__pthread_slist_t", "location": "/usr/include/bits/pthreadtypes.h:84:3", "type": { "tag": ":struct", "name": "__pthread_internal_slist", "id": 0 } },
137
+{ "tag": "typedef", "name": "pthread_mutex_t", "location": "/usr/include/bits/pthreadtypes.h:118:3", "type": { "tag": "union", "name": "", "id": 10, "location": "/usr/include/bits/pthreadtypes.h:90:9", "bit-size": 192, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "__data", "bit-offset": 0, "bit-size": 192, "bit-alignment": 32, "type": { "tag": "struct", "name": "__pthread_mutex_s", "id": 0, "location": "/usr/include/bits/pthreadtypes.h:92:10", "bit-size": 192, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "__lock", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "__count", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":unsigned-int" } }, { "tag": "field", "name": "__owner", "bit-offset": 64, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "__kind", "bit-offset": 96, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "__nusers", "bit-offset": 128, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":unsigned-int" } }, { "tag": "field", "name": "", "bit-offset": 160, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "union", "name": "", "id": 11, "location": "/usr/include/bits/pthreadtypes.h:109:19", "bit-size": 32, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "__spins", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "__list", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "__pthread_slist_t" } }] } }] } }, { "tag": "field", "name": "__size", "bit-offset": 0, "bit-size": 192, "bit-alignment": 8, "type": { "tag": ":array", "type": { "tag": ":char" }, "size": 24 } }, { "tag": "field", "name": "__align", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":long" } }] } },
138
+{ "tag": "typedef", "name": "pthread_mutexattr_t", "location": "/usr/include/bits/pthreadtypes.h:124:3", "type": { "tag": "union", "name": "", "id": 12, "location": "/usr/include/bits/pthreadtypes.h:120:9", "bit-size": 32, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "__size", "bit-offset": 0, "bit-size": 32, "bit-alignment": 8, "type": { "tag": ":array", "type": { "tag": ":char" }, "size": 4 } }, { "tag": "field", "name": "__align", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }] } },
139
+{ "tag": "typedef", "name": "pthread_cond_t", "location": "/usr/include/bits/pthreadtypes.h:144:3", "type": { "tag": "union", "name": "", "id": 13, "location": "/usr/include/bits/pthreadtypes.h:129:9", "bit-size": 384, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "__data", "bit-offset": 0, "bit-size": 352, "bit-alignment": 32, "type": { "tag": "struct", "name": "", "id": 14, "location": "/usr/include/bits/pthreadtypes.h:131:3", "bit-size": 352, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "__lock", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "__futex", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":unsigned-int" } }, { "tag": "field", "name": "__total_seq", "bit-offset": 64, "bit-size": 64, "bit-alignment": 32, "type": { "tag": ":unsigned-long-long" } }, { "tag": "field", "name": "__wakeup_seq", "bit-offset": 128, "bit-size": 64, "bit-alignment": 32, "type": { "tag": ":unsigned-long-long" } }, { "tag": "field", "name": "__woken_seq", "bit-offset": 192, "bit-size": 64, "bit-alignment": 32, "type": { "tag": ":unsigned-long-long" } }, { "tag": "field", "name": "__mutex", "bit-offset": 256, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "field", "name": "__nwaiters", "bit-offset": 288, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":unsigned-int" } }, { "tag": "field", "name": "__broadcast_seq", "bit-offset": 320, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":unsigned-int" } }] } }, { "tag": "field", "name": "__size", "bit-offset": 0, "bit-size": 384, "bit-alignment": 8, "type": { "tag": ":array", "type": { "tag": ":char" }, "size": 48 } }, { "tag": "field", "name": "__align", "bit-offset": 0, "bit-size": 64, "bit-alignment": 32, "type": { "tag": ":long-long" } }] } },
140
+{ "tag": "typedef", "name": "pthread_condattr_t", "location": "/usr/include/bits/pthreadtypes.h:150:3", "type": { "tag": "union", "name": "", "id": 15, "location": "/usr/include/bits/pthreadtypes.h:146:9", "bit-size": 32, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "__size", "bit-offset": 0, "bit-size": 32, "bit-alignment": 8, "type": { "tag": ":array", "type": { "tag": ":char" }, "size": 4 } }, { "tag": "field", "name": "__align", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }] } },
141
+{ "tag": "typedef", "name": "pthread_key_t", "location": "/usr/include/bits/pthreadtypes.h:154:22", "type": { "tag": ":unsigned-int" } },
142
+{ "tag": "typedef", "name": "pthread_once_t", "location": "/usr/include/bits/pthreadtypes.h:158:13", "type": { "tag": ":int" } },
143
+{ "tag": "typedef", "name": "pthread_rwlock_t", "location": "/usr/include/bits/pthreadtypes.h:204:3", "type": { "tag": "union", "name": "", "id": 16, "location": "/usr/include/bits/pthreadtypes.h:164:9", "bit-size": 256, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "__data", "bit-offset": 0, "bit-size": 256, "bit-alignment": 32, "type": { "tag": "struct", "name": "", "id": 17, "location": "/usr/include/bits/pthreadtypes.h:185:3", "bit-size": 256, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "__lock", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "__nr_readers", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":unsigned-int" } }, { "tag": "field", "name": "__readers_wakeup", "bit-offset": 64, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":unsigned-int" } }, { "tag": "field", "name": "__writer_wakeup", "bit-offset": 96, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":unsigned-int" } }, { "tag": "field", "name": "__nr_readers_queued", "bit-offset": 128, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":unsigned-int" } }, { "tag": "field", "name": "__nr_writers_queued", "bit-offset": 160, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":unsigned-int" } }, { "tag": "field", "name": "__flags", "bit-offset": 192, "bit-size": 8, "bit-alignment": 8, "type": { "tag": ":unsigned-char" } }, { "tag": "field", "name": "__shared", "bit-offset": 200, "bit-size": 8, "bit-alignment": 8, "type": { "tag": ":unsigned-char" } }, { "tag": "field", "name": "__pad1", "bit-offset": 208, "bit-size": 8, "bit-alignment": 8, "type": { "tag": ":unsigned-char" } }, { "tag": "field", "name": "__pad2", "bit-offset": 216, "bit-size": 8, "bit-alignment": 8, "type": { "tag": ":unsigned-char" } }, { "tag": "field", "name": "__writer", "bit-offset": 224, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }] } }, { "tag": "field", "name": "__size", "bit-offset": 0, "bit-size": 256, "bit-alignment": 8, "type": { "tag": ":array", "type": { "tag": ":char" }, "size": 32 } }, { "tag": "field", "name": "__align", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":long" } }] } },
144
+{ "tag": "typedef", "name": "pthread_rwlockattr_t", "location": "/usr/include/bits/pthreadtypes.h:210:3", "type": { "tag": "union", "name": "", "id": 18, "location": "/usr/include/bits/pthreadtypes.h:206:9", "bit-size": 64, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "__size", "bit-offset": 0, "bit-size": 64, "bit-alignment": 8, "type": { "tag": ":array", "type": { "tag": ":char" }, "size": 8 } }, { "tag": "field", "name": "__align", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":long" } }] } },
145
+{ "tag": "typedef", "name": "pthread_spinlock_t", "location": "/usr/include/bits/pthreadtypes.h:216:22", "type": { "tag": ":int" } },
146
+{ "tag": "typedef", "name": "pthread_barrier_t", "location": "/usr/include/bits/pthreadtypes.h:225:3", "type": { "tag": "union", "name": "", "id": 19, "location": "/usr/include/bits/pthreadtypes.h:221:9", "bit-size": 160, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "__size", "bit-offset": 0, "bit-size": 160, "bit-alignment": 8, "type": { "tag": ":array", "type": { "tag": ":char" }, "size": 20 } }, { "tag": "field", "name": "__align", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":long" } }] } },
147
+{ "tag": "typedef", "name": "pthread_barrierattr_t", "location": "/usr/include/bits/pthreadtypes.h:231:3", "type": { "tag": "union", "name": "", "id": 20, "location": "/usr/include/bits/pthreadtypes.h:227:9", "bit-size": 32, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "__size", "bit-offset": 0, "bit-size": 32, "bit-alignment": 8, "type": { "tag": ":array", "type": { "tag": ":char" }, "size": 4 } }, { "tag": "field", "name": "__align", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }] } },
148
+{ "tag": "function", "name": "random", "location": "/usr/include/stdlib.h:321:17", "variadic": false, "parameters": [], "return-type": { "tag": ":long" } },
149
+{ "tag": "function", "name": "srandom", "location": "/usr/include/stdlib.h:324:13", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__seed", "type": { "tag": ":unsigned-int" } }], "return-type": { "tag": ":void" } },
150
+{ "tag": "function", "name": "initstate", "location": "/usr/include/stdlib.h:330:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__seed", "type": { "tag": ":unsigned-int" } }, { "tag": "parameter", "name": "__statebuf", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__statelen", "type": { "tag": "size_t" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
151
+{ "tag": "function", "name": "setstate", "location": "/usr/include/stdlib.h:335:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__statebuf", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
152
+{ "tag": "struct", "name": "random_data", "id": 0, "location": "/usr/include/stdlib.h:343:8", "bit-size": 224, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "fptr", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "int32_t" } } }, { "tag": "field", "name": "rptr", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "int32_t" } } }, { "tag": "field", "name": "state", "bit-offset": 64, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "int32_t" } } }, { "tag": "field", "name": "rand_type", "bit-offset": 96, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "rand_deg", "bit-offset": 128, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "rand_sep", "bit-offset": 160, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "end_ptr", "bit-offset": 192, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "int32_t" } } }] },
153
+{ "tag": "function", "name": "random_r", "location": "/usr/include/stdlib.h:354:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__buf", "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "random_data", "id": 0 } } }, { "tag": "parameter", "name": "__result", "type": { "tag": ":pointer", "type": { "tag": "int32_t" } } }], "return-type": { "tag": ":int" } },
154
+{ "tag": "function", "name": "srandom_r", "location": "/usr/include/stdlib.h:357:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__seed", "type": { "tag": ":unsigned-int" } }, { "tag": "parameter", "name": "__buf", "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "random_data", "id": 0 } } }], "return-type": { "tag": ":int" } },
155
+{ "tag": "function", "name": "initstate_r", "location": "/usr/include/stdlib.h:360:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__seed", "type": { "tag": ":unsigned-int" } }, { "tag": "parameter", "name": "__statebuf", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__statelen", "type": { "tag": "size_t" } }, { "tag": "parameter", "name": "__buf", "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "random_data", "id": 0 } } }], "return-type": { "tag": ":int" } },
156
+{ "tag": "function", "name": "setstate_r", "location": "/usr/include/stdlib.h:365:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__statebuf", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__buf", "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "random_data", "id": 0 } } }], "return-type": { "tag": ":int" } },
157
+{ "tag": "function", "name": "rand", "location": "/usr/include/stdlib.h:374:12", "variadic": false, "parameters": [], "return-type": { "tag": ":int" } },
158
+{ "tag": "function", "name": "srand", "location": "/usr/include/stdlib.h:376:13", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__seed", "type": { "tag": ":unsigned-int" } }], "return-type": { "tag": ":void" } },
159
+{ "tag": "function", "name": "rand_r", "location": "/usr/include/stdlib.h:381:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__seed", "type": { "tag": ":pointer", "type": { "tag": ":unsigned-int" } } }], "return-type": { "tag": ":int" } },
160
+{ "tag": "function", "name": "drand48", "location": "/usr/include/stdlib.h:389:15", "variadic": false, "parameters": [], "return-type": { "tag": ":double" } },
161
+{ "tag": "function", "name": "erand48", "location": "/usr/include/stdlib.h:390:15", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__xsubi", "type": { "tag": ":array", "type": { "tag": ":unsigned-short" }, "size": 3 } }], "return-type": { "tag": ":double" } },
162
+{ "tag": "function", "name": "lrand48", "location": "/usr/include/stdlib.h:393:17", "variadic": false, "parameters": [], "return-type": { "tag": ":long" } },
163
+{ "tag": "function", "name": "nrand48", "location": "/usr/include/stdlib.h:394:17", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__xsubi", "type": { "tag": ":array", "type": { "tag": ":unsigned-short" }, "size": 3 } }], "return-type": { "tag": ":long" } },
164
+{ "tag": "function", "name": "mrand48", "location": "/usr/include/stdlib.h:398:17", "variadic": false, "parameters": [], "return-type": { "tag": ":long" } },
165
+{ "tag": "function", "name": "jrand48", "location": "/usr/include/stdlib.h:399:17", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__xsubi", "type": { "tag": ":array", "type": { "tag": ":unsigned-short" }, "size": 3 } }], "return-type": { "tag": ":long" } },
166
+{ "tag": "function", "name": "srand48", "location": "/usr/include/stdlib.h:403:13", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__seedval", "type": { "tag": ":long" } }], "return-type": { "tag": ":void" } },
167
+{ "tag": "function", "name": "seed48", "location": "/usr/include/stdlib.h:404:28", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__seed16v", "type": { "tag": ":array", "type": { "tag": ":unsigned-short" }, "size": 3 } }], "return-type": { "tag": ":pointer", "type": { "tag": ":unsigned-short" } } },
168
+{ "tag": "function", "name": "lcong48", "location": "/usr/include/stdlib.h:406:13", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__param", "type": { "tag": ":array", "type": { "tag": ":unsigned-short" }, "size": 7 } }], "return-type": { "tag": ":void" } },
169
+{ "tag": "struct", "name": "drand48_data", "id": 0, "location": "/usr/include/stdlib.h:412:8", "bit-size": 192, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "__x", "bit-offset": 0, "bit-size": 48, "bit-alignment": 16, "type": { "tag": ":array", "type": { "tag": ":unsigned-short" }, "size": 3 } }, { "tag": "field", "name": "__old_x", "bit-offset": 48, "bit-size": 48, "bit-alignment": 16, "type": { "tag": ":array", "type": { "tag": ":unsigned-short" }, "size": 3 } }, { "tag": "field", "name": "__c", "bit-offset": 96, "bit-size": 16, "bit-alignment": 16, "type": { "tag": ":unsigned-short" } }, { "tag": "field", "name": "__init", "bit-offset": 112, "bit-size": 16, "bit-alignment": 16, "type": { "tag": ":unsigned-short" } }, { "tag": "field", "name": "__a", "bit-offset": 128, "bit-size": 64, "bit-alignment": 32, "type": { "tag": ":unsigned-long-long" } }] },
170
+{ "tag": "function", "name": "drand48_r", "location": "/usr/include/stdlib.h:422:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__buffer", "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "drand48_data", "id": 0 } } }, { "tag": "parameter", "name": "__result", "type": { "tag": ":pointer", "type": { "tag": ":double" } } }], "return-type": { "tag": ":int" } },
171
+{ "tag": "function", "name": "erand48_r", "location": "/usr/include/stdlib.h:424:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__xsubi", "type": { "tag": ":array", "type": { "tag": ":unsigned-short" }, "size": 3 } }, { "tag": "parameter", "name": "__buffer", "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "drand48_data", "id": 0 } } }, { "tag": "parameter", "name": "__result", "type": { "tag": ":pointer", "type": { "tag": ":double" } } }], "return-type": { "tag": ":int" } },
172
+{ "tag": "function", "name": "lrand48_r", "location": "/usr/include/stdlib.h:429:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__buffer", "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "drand48_data", "id": 0 } } }, { "tag": "parameter", "name": "__result", "type": { "tag": ":pointer", "type": { "tag": ":long" } } }], "return-type": { "tag": ":int" } },
173
+{ "tag": "function", "name": "nrand48_r", "location": "/usr/include/stdlib.h:432:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__xsubi", "type": { "tag": ":array", "type": { "tag": ":unsigned-short" }, "size": 3 } }, { "tag": "parameter", "name": "__buffer", "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "drand48_data", "id": 0 } } }, { "tag": "parameter", "name": "__result", "type": { "tag": ":pointer", "type": { "tag": ":long" } } }], "return-type": { "tag": ":int" } },
174
+{ "tag": "function", "name": "mrand48_r", "location": "/usr/include/stdlib.h:438:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__buffer", "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "drand48_data", "id": 0 } } }, { "tag": "parameter", "name": "__result", "type": { "tag": ":pointer", "type": { "tag": ":long" } } }], "return-type": { "tag": ":int" } },
175
+{ "tag": "function", "name": "jrand48_r", "location": "/usr/include/stdlib.h:441:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__xsubi", "type": { "tag": ":array", "type": { "tag": ":unsigned-short" }, "size": 3 } }, { "tag": "parameter", "name": "__buffer", "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "drand48_data", "id": 0 } } }, { "tag": "parameter", "name": "__result", "type": { "tag": ":pointer", "type": { "tag": ":long" } } }], "return-type": { "tag": ":int" } },
176
+{ "tag": "function", "name": "srand48_r", "location": "/usr/include/stdlib.h:447:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__seedval", "type": { "tag": ":long" } }, { "tag": "parameter", "name": "__buffer", "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "drand48_data", "id": 0 } } }], "return-type": { "tag": ":int" } },
177
+{ "tag": "function", "name": "seed48_r", "location": "/usr/include/stdlib.h:450:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__seed16v", "type": { "tag": ":array", "type": { "tag": ":unsigned-short" }, "size": 3 } }, { "tag": "parameter", "name": "__buffer", "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "drand48_data", "id": 0 } } }], "return-type": { "tag": ":int" } },
178
+{ "tag": "function", "name": "lcong48_r", "location": "/usr/include/stdlib.h:453:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__param", "type": { "tag": ":array", "type": { "tag": ":unsigned-short" }, "size": 7 } }, { "tag": "parameter", "name": "__buffer", "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "drand48_data", "id": 0 } } }], "return-type": { "tag": ":int" } },
179
+{ "tag": "function", "name": "malloc", "location": "/usr/include/stdlib.h:465:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__size", "type": { "tag": "size_t" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":void" } } },
180
+{ "tag": "function", "name": "calloc", "location": "/usr/include/stdlib.h:467:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__nmemb", "type": { "tag": "size_t" } }, { "tag": "parameter", "name": "__size", "type": { "tag": "size_t" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":void" } } },
181
+{ "tag": "function", "name": "realloc", "location": "/usr/include/stdlib.h:479:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__ptr", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__size", "type": { "tag": "size_t" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":void" } } },
182
+{ "tag": "function", "name": "free", "location": "/usr/include/stdlib.h:482:13", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__ptr", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": ":void" } },
183
+{ "tag": "function", "name": "cfree", "location": "/usr/include/stdlib.h:487:13", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__ptr", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": ":void" } },
184
+{ "tag": "function", "name": "alloca", "location": "/usr/include/alloca.h:32:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__size", "type": { "tag": "size_t" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":void" } } },
185
+{ "tag": "function", "name": "valloc", "location": "/usr/include/stdlib.h:497:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__size", "type": { "tag": "size_t" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":void" } } },
186
+{ "tag": "function", "name": "posix_memalign", "location": "/usr/include/stdlib.h:502:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__memptr", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":void" } } } }, { "tag": "parameter", "name": "__alignment", "type": { "tag": "size_t" } }, { "tag": "parameter", "name": "__size", "type": { "tag": "size_t" } }], "return-type": { "tag": ":int" } },
187
+{ "tag": "function", "name": "abort", "location": "/usr/include/stdlib.h:514:13", "variadic": false, "parameters": [], "return-type": { "tag": ":void" } },
188
+{ "tag": "function", "name": "atexit", "location": "/usr/include/stdlib.h:518:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__func", "type": { "tag": ":function-pointer" } }], "return-type": { "tag": ":int" } },
189
+{ "tag": "function", "name": "on_exit", "location": "/usr/include/stdlib.h:534:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__func", "type": { "tag": ":function-pointer" } }, { "tag": "parameter", "name": "__arg", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": ":int" } },
190
+{ "tag": "function", "name": "exit", "location": "/usr/include/stdlib.h:542:13", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__status", "type": { "tag": ":int" } }], "return-type": { "tag": ":void" } },
191
+{ "tag": "function", "name": "_Exit", "location": "/usr/include/stdlib.h:556:13", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__status", "type": { "tag": ":int" } }], "return-type": { "tag": ":void" } },
192
+{ "tag": "function", "name": "getenv", "location": "/usr/include/stdlib.h:563:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__name", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
193
+{ "tag": "function", "name": "putenv", "location": "/usr/include/stdlib.h:577:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__string", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":int" } },
194
+{ "tag": "function", "name": "setenv", "location": "/usr/include/stdlib.h:583:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__name", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__value", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__replace", "type": { "tag": ":int" } }], "return-type": { "tag": ":int" } },
195
+{ "tag": "function", "name": "unsetenv", "location": "/usr/include/stdlib.h:587:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__name", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":int" } },
196
+{ "tag": "function", "name": "clearenv", "location": "/usr/include/stdlib.h:594:12", "variadic": false, "parameters": [], "return-type": { "tag": ":int" } },
197
+{ "tag": "function", "name": "mktemp", "location": "/usr/include/stdlib.h:605:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__template", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
198
+{ "tag": "function", "name": "mkstemp", "location": "/usr/include/stdlib.h:619:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__template", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":int" } },
199
+{ "tag": "function", "name": "mkstemps", "location": "/usr/include/stdlib.h:641:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__template", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__suffixlen", "type": { "tag": ":int" } }], "return-type": { "tag": ":int" } },
200
+{ "tag": "function", "name": "mkdtemp", "location": "/usr/include/stdlib.h:662:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__template", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
201
+{ "tag": "function", "name": "system", "location": "/usr/include/stdlib.h:716:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__command", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":int" } },
202
+{ "tag": "function", "name": "realpath", "location": "/usr/include/stdlib.h:733:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__name", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__resolved", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
203
+{ "tag": "typedef", "name": "__compar_fn_t", "location": "/usr/include/stdlib.h:741:15", "type": { "tag": ":function-pointer" } },
204
+{ "tag": "function", "name": "bsearch", "location": "/usr/include/stdlib.h:754:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__key", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__base", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__nmemb", "type": { "tag": "size_t" } }, { "tag": "parameter", "name": "__size", "type": { "tag": "size_t" } }, { "tag": "parameter", "name": "__compar", "type": { "tag": "__compar_fn_t" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":void" } } },
205
+{ "tag": "function", "name": "qsort", "location": "/usr/include/stdlib.h:760:13", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__base", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__nmemb", "type": { "tag": "size_t" } }, { "tag": "parameter", "name": "__size", "type": { "tag": "size_t" } }, { "tag": "parameter", "name": "__compar", "type": { "tag": "__compar_fn_t" } }], "return-type": { "tag": ":void" } },
206
+{ "tag": "function", "name": "abs", "location": "/usr/include/stdlib.h:770:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":int" } }], "return-type": { "tag": ":int" } },
207
+{ "tag": "function", "name": "labs", "location": "/usr/include/stdlib.h:771:17", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":long" } }], "return-type": { "tag": ":long" } },
208
+{ "tag": "function", "name": "llabs", "location": "/usr/include/stdlib.h:775:36", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":long-long" } }], "return-type": { "tag": ":long-long" } },
209
+{ "tag": "function", "name": "div", "location": "/usr/include/stdlib.h:784:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__numer", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__denom", "type": { "tag": ":int" } }], "return-type": { "tag": "div_t" } },
210
+{ "tag": "function", "name": "ldiv", "location": "/usr/include/stdlib.h:786:15", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__numer", "type": { "tag": ":long" } }, { "tag": "parameter", "name": "__denom", "type": { "tag": ":long" } }], "return-type": { "tag": "ldiv_t" } },
211
+{ "tag": "function", "name": "lldiv", "location": "/usr/include/stdlib.h:792:30", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__numer", "type": { "tag": ":long-long" } }, { "tag": "parameter", "name": "__denom", "type": { "tag": ":long-long" } }], "return-type": { "tag": "lldiv_t" } },
212
+{ "tag": "function", "name": "ecvt", "location": "/usr/include/stdlib.h:807:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__value", "type": { "tag": ":double" } }, { "tag": "parameter", "name": "__ndigit", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__decpt", "type": { "tag": ":pointer", "type": { "tag": ":int" } } }, { "tag": "parameter", "name": "__sign", "type": { "tag": ":pointer", "type": { "tag": ":int" } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
213
+{ "tag": "function", "name": "fcvt", "location": "/usr/include/stdlib.h:813:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__value", "type": { "tag": ":double" } }, { "tag": "parameter", "name": "__ndigit", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__decpt", "type": { "tag": ":pointer", "type": { "tag": ":int" } } }, { "tag": "parameter", "name": "__sign", "type": { "tag": ":pointer", "type": { "tag": ":int" } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
214
+{ "tag": "function", "name": "gcvt", "location": "/usr/include/stdlib.h:819:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__value", "type": { "tag": ":double" } }, { "tag": "parameter", "name": "__ndigit", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__buf", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
215
+{ "tag": "function", "name": "qecvt", "location": "/usr/include/stdlib.h:825:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__value", "type": { "tag": ":long-double" } }, { "tag": "parameter", "name": "__ndigit", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__decpt", "type": { "tag": ":pointer", "type": { "tag": ":int" } } }, { "tag": "parameter", "name": "__sign", "type": { "tag": ":pointer", "type": { "tag": ":int" } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
216
+{ "tag": "function", "name": "qfcvt", "location": "/usr/include/stdlib.h:828:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__value", "type": { "tag": ":long-double" } }, { "tag": "parameter", "name": "__ndigit", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__decpt", "type": { "tag": ":pointer", "type": { "tag": ":int" } } }, { "tag": "parameter", "name": "__sign", "type": { "tag": ":pointer", "type": { "tag": ":int" } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
217
+{ "tag": "function", "name": "qgcvt", "location": "/usr/include/stdlib.h:831:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__value", "type": { "tag": ":long-double" } }, { "tag": "parameter", "name": "__ndigit", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__buf", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
218
+{ "tag": "function", "name": "ecvt_r", "location": "/usr/include/stdlib.h:837:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__value", "type": { "tag": ":double" } }, { "tag": "parameter", "name": "__ndigit", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__decpt", "type": { "tag": ":pointer", "type": { "tag": ":int" } } }, { "tag": "parameter", "name": "__sign", "type": { "tag": ":pointer", "type": { "tag": ":int" } } }, { "tag": "parameter", "name": "__buf", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__len", "type": { "tag": "size_t" } }], "return-type": { "tag": ":int" } },
219
+{ "tag": "function", "name": "fcvt_r", "location": "/usr/include/stdlib.h:840:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__value", "type": { "tag": ":double" } }, { "tag": "parameter", "name": "__ndigit", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__decpt", "type": { "tag": ":pointer", "type": { "tag": ":int" } } }, { "tag": "parameter", "name": "__sign", "type": { "tag": ":pointer", "type": { "tag": ":int" } } }, { "tag": "parameter", "name": "__buf", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__len", "type": { "tag": "size_t" } }], "return-type": { "tag": ":int" } },
220
+{ "tag": "function", "name": "qecvt_r", "location": "/usr/include/stdlib.h:844:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__value", "type": { "tag": ":long-double" } }, { "tag": "parameter", "name": "__ndigit", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__decpt", "type": { "tag": ":pointer", "type": { "tag": ":int" } } }, { "tag": "parameter", "name": "__sign", "type": { "tag": ":pointer", "type": { "tag": ":int" } } }, { "tag": "parameter", "name": "__buf", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__len", "type": { "tag": "size_t" } }], "return-type": { "tag": ":int" } },
221
+{ "tag": "function", "name": "qfcvt_r", "location": "/usr/include/stdlib.h:848:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__value", "type": { "tag": ":long-double" } }, { "tag": "parameter", "name": "__ndigit", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__decpt", "type": { "tag": ":pointer", "type": { "tag": ":int" } } }, { "tag": "parameter", "name": "__sign", "type": { "tag": ":pointer", "type": { "tag": ":int" } } }, { "tag": "parameter", "name": "__buf", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__len", "type": { "tag": "size_t" } }], "return-type": { "tag": ":int" } },
222
+{ "tag": "function", "name": "mblen", "location": "/usr/include/stdlib.h:859:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }], "return-type": { "tag": ":int" } },
223
+{ "tag": "function", "name": "mbtowc", "location": "/usr/include/stdlib.h:862:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__pwc", "type": { "tag": ":pointer", "type": { "tag": "wchar_t" } } }, { "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }], "return-type": { "tag": ":int" } },
224
+{ "tag": "function", "name": "wctomb", "location": "/usr/include/stdlib.h:866:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__wchar", "type": { "tag": "wchar_t" } }], "return-type": { "tag": ":int" } },
225
+{ "tag": "function", "name": "mbstowcs", "location": "/usr/include/stdlib.h:870:15", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__pwcs", "type": { "tag": ":pointer", "type": { "tag": "wchar_t" } } }, { "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }], "return-type": { "tag": "size_t" } },
226
+{ "tag": "function", "name": "wcstombs", "location": "/usr/include/stdlib.h:873:15", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__pwcs", "type": { "tag": ":pointer", "type": { "tag": "wchar_t" } } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }], "return-type": { "tag": "size_t" } },
227
+{ "tag": "function", "name": "rpmatch", "location": "/usr/include/stdlib.h:884:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__response", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":int" } },
228
+{ "tag": "function", "name": "getsubopt", "location": "/usr/include/stdlib.h:895:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__optionp", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char" } } } }, { "tag": "parameter", "name": "__tokens", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char" } } } }, { "tag": "parameter", "name": "__valuep", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char" } } } }], "return-type": { "tag": ":int" } },
229
+{ "tag": "function", "name": "getloadavg", "location": "/usr/include/stdlib.h:947:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__loadavg", "type": { "tag": ":pointer", "type": { "tag": ":double" } } }, { "tag": "parameter", "name": "__nelem", "type": { "tag": ":int" } }], "return-type": { "tag": ":int" } },
230
+{ "tag": "struct", "name": "_IO_FILE", "id": 0, "location": "/usr/include/stdio.h:44:8", "bit-size": 0, "bit-alignment": 0, "fields": [] },
231
+{ "tag": "typedef", "name": "FILE", "location": "/usr/include/stdio.h:48:25", "type": { "tag": ":struct", "name": "_IO_FILE", "id": 0 } },
232
+{ "tag": "typedef", "name": "__FILE", "location": "/usr/include/stdio.h:64:25", "type": { "tag": ":struct", "name": "_IO_FILE", "id": 0 } },
233
+{ "tag": "typedef", "name": "__mbstate_t", "location": "/usr/include/wchar.h:94:3", "type": { "tag": "struct", "name": "", "id": 21, "location": "/usr/include/wchar.h:82:9", "bit-size": 64, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "__count", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "__value", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "union", "name": "", "id": 22, "location": "/usr/include/wchar.h:85:3", "bit-size": 32, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "__wch", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":unsigned-int" } }, { "tag": "field", "name": "__wchb", "bit-offset": 0, "bit-size": 32, "bit-alignment": 8, "type": { "tag": ":array", "type": { "tag": ":char" }, "size": 4 } }] } }] } },
234
+{ "tag": "typedef", "name": "_G_fpos_t", "location": "/usr/include/_G_config.h:25:3", "type": { "tag": "struct", "name": "", "id": 23, "location": "/usr/include/_G_config.h:21:9", "bit-size": 96, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "__pos", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "__off_t" } }, { "tag": "field", "name": "__state", "bit-offset": 32, "bit-size": 64, "bit-alignment": 32, "type": { "tag": "__mbstate_t" } }] } },
235
+{ "tag": "typedef", "name": "_G_fpos64_t", "location": "/usr/include/_G_config.h:30:3", "type": { "tag": "struct", "name": "", "id": 24, "location": "/usr/include/_G_config.h:26:9", "bit-size": 128, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "__pos", "bit-offset": 0, "bit-size": 64, "bit-alignment": 32, "type": { "tag": "__off64_t" } }, { "tag": "field", "name": "__state", "bit-offset": 64, "bit-size": 64, "bit-alignment": 32, "type": { "tag": "__mbstate_t" } }] } },
236
+{ "tag": "typedef", "name": "__gnuc_va_list", "location": "/usr/include/stdarg.h:40:27", "type": { "tag": "__builtin_va_list" } },
237
+{ "tag": "struct", "name": "_IO_jump_t", "id": 0, "location": "/usr/include/libio.h:145:8", "bit-size": 0, "bit-alignment": 0, "fields": [] },
238
+{ "tag": "struct", "name": "_IO_FILE", "id": 0, "location": "/usr/include/libio.h:145:28", "bit-size": 0, "bit-alignment": 0, "fields": [] },
239
+{ "tag": "typedef", "name": "_IO_lock_t", "location": "/usr/include/libio.h:155:14", "type": { "tag": ":void" } },
240
+{ "tag": "struct", "name": "_IO_marker", "id": 0, "location": "/usr/include/libio.h:161:8", "bit-size": 96, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "_next", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "_IO_marker", "id": 0 } } }, { "tag": "field", "name": "_sbuf", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "_IO_FILE", "id": 0 } } }, { "tag": "field", "name": "_pos", "bit-offset": 64, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }] },
241
+{ "tag": "enum", "name": "__codecvt_result", "id": 0, "location": "/usr/include/libio.h:181:6", "fields": [{ "tag": "field", "name": "__codecvt_ok", "value": 0 }, { "tag": "field", "name": "__codecvt_partial", "value": 1 }, { "tag": "field", "name": "__codecvt_error", "value": 2 }, { "tag": "field", "name": "__codecvt_noconv", "value": 3 }] },
242
+{ "tag": "struct", "name": "_IO_FILE", "id": 0, "location": "/usr/include/libio.h:246:8", "bit-size": 1184, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "_flags", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "_IO_read_ptr", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "field", "name": "_IO_read_end", "bit-offset": 64, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "field", "name": "_IO_read_base", "bit-offset": 96, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "field", "name": "_IO_write_base", "bit-offset": 128, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "field", "name": "_IO_write_ptr", "bit-offset": 160, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "field", "name": "_IO_write_end", "bit-offset": 192, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "field", "name": "_IO_buf_base", "bit-offset": 224, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "field", "name": "_IO_buf_end", "bit-offset": 256, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "field", "name": "_IO_save_base", "bit-offset": 288, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "field", "name": "_IO_backup_base", "bit-offset": 320, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "field", "name": "_IO_save_end", "bit-offset": 352, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "field", "name": "_markers", "bit-offset": 384, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "_IO_marker", "id": 0 } } }, { "tag": "field", "name": "_chain", "bit-offset": 416, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "_IO_FILE", "id": 0 } } }, { "tag": "field", "name": "_fileno", "bit-offset": 448, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "_flags2", "bit-offset": 480, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "_old_offset", "bit-offset": 512, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "__off_t" } }, { "tag": "field", "name": "_cur_column", "bit-offset": 544, "bit-size": 16, "bit-alignment": 16, "type": { "tag": ":unsigned-short" } }, { "tag": "field", "name": "_vtable_offset", "bit-offset": 560, "bit-size": 8, "bit-alignment": 8, "type": { "tag": ":signed-char" } }, { "tag": "field", "name": "_shortbuf", "bit-offset": 568, "bit-size": 8, "bit-alignment": 8, "type": { "tag": ":array", "type": { "tag": ":char" }, "size": 1 } }, { "tag": "field", "name": "_lock", "bit-offset": 576, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "field", "name": "_offset", "bit-offset": 608, "bit-size": 64, "bit-alignment": 32, "type": { "tag": "__off64_t" } }, { "tag": "field", "name": "__pad1", "bit-offset": 672, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "field", "name": "__pad2", "bit-offset": 704, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "field", "name": "__pad3", "bit-offset": 736, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "field", "name": "__pad4", "bit-offset": 768, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "field", "name": "__pad5", "bit-offset": 800, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "size_t" } }, { "tag": "field", "name": "_mode", "bit-offset": 832, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "_unused2", "bit-offset": 864, "bit-size": 320, "bit-alignment": 8, "type": { "tag": ":array", "type": { "tag": ":char" }, "size": 40 } }] },
243
+{ "tag": "typedef", "name": "_IO_FILE", "location": "/usr/include/libio.h:316:25", "type": { "tag": ":struct", "name": "_IO_FILE", "id": 0 } },
244
+{ "tag": "struct", "name": "_IO_FILE_plus", "id": 0, "location": "/usr/include/libio.h:319:8", "bit-size": 0, "bit-alignment": 0, "fields": [] },
245
+{ "tag": "extern", "name": "_IO_2_1_stdin_", "location": "/usr/include/libio.h:321:29", "type": { "tag": ":struct", "name": "_IO_FILE_plus", "id": 0 } },
246
+{ "tag": "extern", "name": "_IO_2_1_stdout_", "location": "/usr/include/libio.h:322:29", "type": { "tag": ":struct", "name": "_IO_FILE_plus", "id": 0 } },
247
+{ "tag": "extern", "name": "_IO_2_1_stderr_", "location": "/usr/include/libio.h:323:29", "type": { "tag": ":struct", "name": "_IO_FILE_plus", "id": 0 } },
248
+{ "tag": "typedef", "name": "__io_read_fn", "location": "/usr/include/libio.h:339:19", "type": { "tag": ":function" } },
249
+{ "tag": "typedef", "name": "__io_write_fn", "location": "/usr/include/libio.h:347:19", "type": { "tag": ":function" } },
250
+{ "tag": "typedef", "name": "__io_seek_fn", "location": "/usr/include/libio.h:356:13", "type": { "tag": ":function" } },
251
+{ "tag": "typedef", "name": "__io_close_fn", "location": "/usr/include/libio.h:359:13", "type": { "tag": ":function" } },
252
+{ "tag": "function", "name": "__underflow", "location": "/usr/include/libio.h:391:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": "_IO_FILE" } } }], "return-type": { "tag": ":int" } },
253
+{ "tag": "function", "name": "__uflow", "location": "/usr/include/libio.h:392:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": "_IO_FILE" } } }], "return-type": { "tag": ":int" } },
254
+{ "tag": "function", "name": "__overflow", "location": "/usr/include/libio.h:393:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": "_IO_FILE" } } }, { "tag": "parameter", "name": "", "type": { "tag": ":int" } }], "return-type": { "tag": ":int" } },
255
+{ "tag": "function", "name": "_IO_getc", "location": "/usr/include/libio.h:435:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__fp", "type": { "tag": ":pointer", "type": { "tag": "_IO_FILE" } } }], "return-type": { "tag": ":int" } },
256
+{ "tag": "function", "name": "_IO_putc", "location": "/usr/include/libio.h:436:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__c", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__fp", "type": { "tag": ":pointer", "type": { "tag": "_IO_FILE" } } }], "return-type": { "tag": ":int" } },
257
+{ "tag": "function", "name": "_IO_feof", "location": "/usr/include/libio.h:437:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__fp", "type": { "tag": ":pointer", "type": { "tag": "_IO_FILE" } } }], "return-type": { "tag": ":int" } },
258
+{ "tag": "function", "name": "_IO_ferror", "location": "/usr/include/libio.h:438:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__fp", "type": { "tag": ":pointer", "type": { "tag": "_IO_FILE" } } }], "return-type": { "tag": ":int" } },
259
+{ "tag": "function", "name": "_IO_peekc_locked", "location": "/usr/include/libio.h:440:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__fp", "type": { "tag": ":pointer", "type": { "tag": "_IO_FILE" } } }], "return-type": { "tag": ":int" } },
260
+{ "tag": "function", "name": "_IO_flockfile", "location": "/usr/include/libio.h:446:13", "variadic": false, "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": "_IO_FILE" } } }], "return-type": { "tag": ":void" } },
261
+{ "tag": "function", "name": "_IO_funlockfile", "location": "/usr/include/libio.h:447:13", "variadic": false, "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": "_IO_FILE" } } }], "return-type": { "tag": ":void" } },
262
+{ "tag": "function", "name": "_IO_ftrylockfile", "location": "/usr/include/libio.h:448:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": "_IO_FILE" } } }], "return-type": { "tag": ":int" } },
263
+{ "tag": "function", "name": "_IO_vfscanf", "location": "/usr/include/libio.h:465:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": "_IO_FILE" } } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "", "type": { "tag": "__gnuc_va_list" } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":int" } } }], "return-type": { "tag": ":int" } },
264
+{ "tag": "function", "name": "_IO_vfprintf", "location": "/usr/include/libio.h:467:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": "_IO_FILE" } } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "", "type": { "tag": "__gnuc_va_list" } }], "return-type": { "tag": ":int" } },
265
+{ "tag": "function", "name": "_IO_padn", "location": "/usr/include/libio.h:469:20", "variadic": false, "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": "_IO_FILE" } } }, { "tag": "parameter", "name": "", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "", "type": { "tag": "__ssize_t" } }], "return-type": { "tag": "__ssize_t" } },
266
+{ "tag": "function", "name": "_IO_sgetn", "location": "/usr/include/libio.h:470:19", "variadic": false, "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": "_IO_FILE" } } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "", "type": { "tag": "size_t" } }], "return-type": { "tag": "size_t" } },
267
+{ "tag": "function", "name": "_IO_seekoff", "location": "/usr/include/libio.h:472:20", "variadic": false, "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": "_IO_FILE" } } }, { "tag": "parameter", "name": "", "type": { "tag": "__off64_t" } }, { "tag": "parameter", "name": "", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "", "type": { "tag": ":int" } }], "return-type": { "tag": "__off64_t" } },
268
+{ "tag": "function", "name": "_IO_seekpos", "location": "/usr/include/libio.h:473:20", "variadic": false, "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": "_IO_FILE" } } }, { "tag": "parameter", "name": "", "type": { "tag": "__off64_t" } }, { "tag": "parameter", "name": "", "type": { "tag": ":int" } }], "return-type": { "tag": "__off64_t" } },
269
+{ "tag": "function", "name": "_IO_free_backup_area", "location": "/usr/include/libio.h:475:13", "variadic": false, "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": "_IO_FILE" } } }], "return-type": { "tag": ":void" } },
270
+{ "tag": "typedef", "name": "va_list", "location": "/usr/include/stdio.h:79:20", "type": { "tag": "__gnuc_va_list" } },
271
+{ "tag": "typedef", "name": "fpos_t", "location": "/usr/include/stdio.h:110:19", "type": { "tag": "_G_fpos_t" } },
272
+{ "tag": "extern", "name": "stdin", "location": "/usr/include/stdio.h:168:25", "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "_IO_FILE", "id": 0 } } },
273
+{ "tag": "extern", "name": "stdout", "location": "/usr/include/stdio.h:169:25", "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "_IO_FILE", "id": 0 } } },
274
+{ "tag": "extern", "name": "stderr", "location": "/usr/include/stdio.h:170:25", "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "_IO_FILE", "id": 0 } } },
275
+{ "tag": "function", "name": "remove", "location": "/usr/include/stdio.h:178:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__filename", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":int" } },
276
+{ "tag": "function", "name": "rename", "location": "/usr/include/stdio.h:180:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__old", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__new", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":int" } },
277
+{ "tag": "function", "name": "renameat", "location": "/usr/include/stdio.h:185:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__oldfd", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__old", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__newfd", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__new", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":int" } },
278
+{ "tag": "function", "name": "tmpfile", "location": "/usr/include/stdio.h:195:14", "variadic": false, "parameters": [], "return-type": { "tag": ":pointer", "type": { "tag": "FILE" } } },
279
+{ "tag": "function", "name": "tmpnam", "location": "/usr/include/stdio.h:209:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
280
+{ "tag": "function", "name": "tmpnam_r", "location": "/usr/include/stdio.h:215:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
281
+{ "tag": "function", "name": "tempnam", "location": "/usr/include/stdio.h:227:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__dir", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__pfx", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
282
+{ "tag": "function", "name": "fclose", "location": "/usr/include/stdio.h:237:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":int" } },
283
+{ "tag": "function", "name": "fflush", "location": "/usr/include/stdio.h:242:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":int" } },
284
+{ "tag": "function", "name": "fflush_unlocked", "location": "/usr/include/stdio.h:252:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":int" } },
285
+{ "tag": "function", "name": "fopen", "location": "/usr/include/stdio.h:272:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__filename", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__modes", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":pointer", "type": { "tag": "FILE" } } },
286
+{ "tag": "function", "name": "freopen", "location": "/usr/include/stdio.h:278:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__filename", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__modes", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":pointer", "type": { "tag": "FILE" } } },
287
+{ "tag": "function", "name": "fdopen", "location": "/usr/include/stdio.h:306:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__fd", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__modes", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":pointer", "type": { "tag": "FILE" } } },
288
+{ "tag": "function", "name": "fmemopen", "location": "/usr/include/stdio.h:319:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__len", "type": { "tag": "size_t" } }, { "tag": "parameter", "name": "__modes", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":pointer", "type": { "tag": "FILE" } } },
289
+{ "tag": "function", "name": "open_memstream", "location": "/usr/include/stdio.h:325:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__bufloc", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char" } } } }, { "tag": "parameter", "name": "__sizeloc", "type": { "tag": ":pointer", "type": { "tag": "size_t" } } }], "return-type": { "tag": ":pointer", "type": { "tag": "FILE" } } },
290
+{ "tag": "function", "name": "setbuf", "location": "/usr/include/stdio.h:332:13", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }, { "tag": "parameter", "name": "__buf", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":void" } },
291
+{ "tag": "function", "name": "setvbuf", "location": "/usr/include/stdio.h:336:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }, { "tag": "parameter", "name": "__buf", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__modes", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }], "return-type": { "tag": ":int" } },
292
+{ "tag": "function", "name": "setbuffer", "location": "/usr/include/stdio.h:343:13", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }, { "tag": "parameter", "name": "__buf", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__size", "type": { "tag": "size_t" } }], "return-type": { "tag": ":void" } },
293
+{ "tag": "function", "name": "setlinebuf", "location": "/usr/include/stdio.h:347:13", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":void" } },
294
+{ "tag": "function", "name": "fprintf", "location": "/usr/include/stdio.h:356:12", "variadic": true, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }, { "tag": "parameter", "name": "__format", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":int" } },
295
+{ "tag": "function", "name": "printf", "location": "/usr/include/stdio.h:362:12", "variadic": true, "parameters": [{ "tag": "parameter", "name": "__format", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":int" } },
296
+{ "tag": "function", "name": "sprintf", "location": "/usr/include/stdio.h:364:12", "variadic": true, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__format", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":int" } },
297
+{ "tag": "function", "name": "vfprintf", "location": "/usr/include/stdio.h:371:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }, { "tag": "parameter", "name": "__format", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__arg", "type": { "tag": "__gnuc_va_list" } }], "return-type": { "tag": ":int" } },
298
+{ "tag": "function", "name": "vprintf", "location": "/usr/include/stdio.h:377:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__format", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__arg", "type": { "tag": "__gnuc_va_list" } }], "return-type": { "tag": ":int" } },
299
+{ "tag": "function", "name": "vsprintf", "location": "/usr/include/stdio.h:379:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__format", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__arg", "type": { "tag": "__gnuc_va_list" } }], "return-type": { "tag": ":int" } },
300
+{ "tag": "function", "name": "snprintf", "location": "/usr/include/stdio.h:386:12", "variadic": true, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__maxlen", "type": { "tag": "size_t" } }, { "tag": "parameter", "name": "__format", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":int" } },
301
+{ "tag": "function", "name": "vsnprintf", "location": "/usr/include/stdio.h:390:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__maxlen", "type": { "tag": "size_t" } }, { "tag": "parameter", "name": "__format", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__arg", "type": { "tag": "__gnuc_va_list" } }], "return-type": { "tag": ":int" } },
302
+{ "tag": "function", "name": "vdprintf", "location": "/usr/include/stdio.h:412:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__fd", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__fmt", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__arg", "type": { "tag": "__gnuc_va_list" } }], "return-type": { "tag": ":int" } },
303
+{ "tag": "function", "name": "dprintf", "location": "/usr/include/stdio.h:415:12", "variadic": true, "parameters": [{ "tag": "parameter", "name": "__fd", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__fmt", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":int" } },
304
+{ "tag": "function", "name": "fscanf", "location": "/usr/include/stdio.h:425:12", "variadic": true, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }, { "tag": "parameter", "name": "__format", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":int" } },
305
+{ "tag": "function", "name": "scanf", "location": "/usr/include/stdio.h:431:12", "variadic": true, "parameters": [{ "tag": "parameter", "name": "__format", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":int" } },
306
+{ "tag": "function", "name": "sscanf", "location": "/usr/include/stdio.h:433:12", "variadic": true, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__format", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":int" } },
307
+{ "tag": "function", "name": "fscanf", "location": "/usr/include/stdio.h:443:12 <Spelling=/usr/include/stdio.h:443:24>", "variadic": true, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }, { "tag": "parameter", "name": "__format", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":int" } },
308
+{ "tag": "function", "name": "scanf", "location": "/usr/include/stdio.h:446:12 <Spelling=/usr/include/stdio.h:446:24>", "variadic": true, "parameters": [{ "tag": "parameter", "name": "__format", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":int" } },
309
+{ "tag": "function", "name": "sscanf", "location": "/usr/include/stdio.h:448:12 <Spelling=/usr/include/stdio.h:448:28>", "variadic": true, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__format", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":int" } },
310
+{ "tag": "function", "name": "vfscanf", "location": "/usr/include/stdio.h:471:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }, { "tag": "parameter", "name": "__format", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__arg", "type": { "tag": "__gnuc_va_list" } }], "return-type": { "tag": ":int" } },
311
+{ "tag": "function", "name": "vscanf", "location": "/usr/include/stdio.h:479:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__format", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__arg", "type": { "tag": "__gnuc_va_list" } }], "return-type": { "tag": ":int" } },
312
+{ "tag": "function", "name": "vsscanf", "location": "/usr/include/stdio.h:483:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__format", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__arg", "type": { "tag": "__gnuc_va_list" } }], "return-type": { "tag": ":int" } },
313
+{ "tag": "function", "name": "vfscanf", "location": "/usr/include/stdio.h:494:12 <Spelling=/usr/include/stdio.h:494:24>", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }, { "tag": "parameter", "name": "__format", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__arg", "type": { "tag": "__gnuc_va_list" } }], "return-type": { "tag": ":int" } },
314
+{ "tag": "function", "name": "vscanf", "location": "/usr/include/stdio.h:499:12 <Spelling=/usr/include/stdio.h:499:24>", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__format", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__arg", "type": { "tag": "__gnuc_va_list" } }], "return-type": { "tag": ":int" } },
315
+{ "tag": "function", "name": "vsscanf", "location": "/usr/include/stdio.h:502:12 <Spelling=/usr/include/stdio.h:502:28>", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__format", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__arg", "type": { "tag": "__gnuc_va_list" } }], "return-type": { "tag": ":int" } },
316
+{ "tag": "function", "name": "fgetc", "location": "/usr/include/stdio.h:531:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":int" } },
317
+{ "tag": "function", "name": "getc", "location": "/usr/include/stdio.h:532:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":int" } },
318
+{ "tag": "function", "name": "getchar", "location": "/usr/include/stdio.h:538:12", "variadic": false, "parameters": [], "return-type": { "tag": ":int" } },
319
+{ "tag": "function", "name": "getc_unlocked", "location": "/usr/include/stdio.h:550:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":int" } },
320
+{ "tag": "function", "name": "getchar_unlocked", "location": "/usr/include/stdio.h:551:12", "variadic": false, "parameters": [], "return-type": { "tag": ":int" } },
321
+{ "tag": "function", "name": "fgetc_unlocked", "location": "/usr/include/stdio.h:561:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":int" } },
322
+{ "tag": "function", "name": "fputc", "location": "/usr/include/stdio.h:573:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__c", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":int" } },
323
+{ "tag": "function", "name": "putc", "location": "/usr/include/stdio.h:574:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__c", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":int" } },
324
+{ "tag": "function", "name": "putchar", "location": "/usr/include/stdio.h:580:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__c", "type": { "tag": ":int" } }], "return-type": { "tag": ":int" } },
325
+{ "tag": "function", "name": "fputc_unlocked", "location": "/usr/include/stdio.h:594:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__c", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":int" } },
326
+{ "tag": "function", "name": "putc_unlocked", "location": "/usr/include/stdio.h:602:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__c", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":int" } },
327
+{ "tag": "function", "name": "putchar_unlocked", "location": "/usr/include/stdio.h:603:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__c", "type": { "tag": ":int" } }], "return-type": { "tag": ":int" } },
328
+{ "tag": "function", "name": "getw", "location": "/usr/include/stdio.h:610:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":int" } },
329
+{ "tag": "function", "name": "putw", "location": "/usr/include/stdio.h:613:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__w", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":int" } },
330
+{ "tag": "function", "name": "fgets", "location": "/usr/include/stdio.h:622:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__n", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
331
+{ "tag": "function", "name": "gets", "location": "/usr/include/stdio.h:638:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
332
+{ "tag": "function", "name": "__getdelim", "location": "/usr/include/stdio.h:665:20", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__lineptr", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char" } } } }, { "tag": "parameter", "name": "__n", "type": { "tag": ":pointer", "type": { "tag": "size_t" } } }, { "tag": "parameter", "name": "__delimiter", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": "__ssize_t" } },
333
+{ "tag": "function", "name": "getdelim", "location": "/usr/include/stdio.h:668:20", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__lineptr", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char" } } } }, { "tag": "parameter", "name": "__n", "type": { "tag": ":pointer", "type": { "tag": "size_t" } } }, { "tag": "parameter", "name": "__delimiter", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": "__ssize_t" } },
334
+{ "tag": "function", "name": "getline", "location": "/usr/include/stdio.h:678:20", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__lineptr", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char" } } } }, { "tag": "parameter", "name": "__n", "type": { "tag": ":pointer", "type": { "tag": "size_t" } } }, { "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": "__ssize_t" } },
335
+{ "tag": "function", "name": "fputs", "location": "/usr/include/stdio.h:689:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":int" } },
336
+{ "tag": "function", "name": "puts", "location": "/usr/include/stdio.h:695:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":int" } },
337
+{ "tag": "function", "name": "ungetc", "location": "/usr/include/stdio.h:702:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__c", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":int" } },
338
+{ "tag": "function", "name": "fread", "location": "/usr/include/stdio.h:709:15", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__ptr", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__size", "type": { "tag": "size_t" } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }, { "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": "size_t" } },
339
+{ "tag": "function", "name": "fwrite", "location": "/usr/include/stdio.h:715:15", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__ptr", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__size", "type": { "tag": "size_t" } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }, { "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": "size_t" } },
340
+{ "tag": "function", "name": "fread_unlocked", "location": "/usr/include/stdio.h:737:15", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__ptr", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__size", "type": { "tag": "size_t" } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }, { "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": "size_t" } },
341
+{ "tag": "function", "name": "fwrite_unlocked", "location": "/usr/include/stdio.h:739:15", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__ptr", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__size", "type": { "tag": "size_t" } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }, { "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": "size_t" } },
342
+{ "tag": "function", "name": "fseek", "location": "/usr/include/stdio.h:749:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }, { "tag": "parameter", "name": "__off", "type": { "tag": ":long" } }, { "tag": "parameter", "name": "__whence", "type": { "tag": ":int" } }], "return-type": { "tag": ":int" } },
343
+{ "tag": "function", "name": "ftell", "location": "/usr/include/stdio.h:754:17", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":long" } },
344
+{ "tag": "function", "name": "rewind", "location": "/usr/include/stdio.h:759:13", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":void" } },
345
+{ "tag": "function", "name": "fseeko", "location": "/usr/include/stdio.h:773:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }, { "tag": "parameter", "name": "__off", "type": { "tag": "__off_t" } }, { "tag": "parameter", "name": "__whence", "type": { "tag": ":int" } }], "return-type": { "tag": ":int" } },
346
+{ "tag": "function", "name": "ftello", "location": "/usr/include/stdio.h:778:16", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": "__off_t" } },
347
+{ "tag": "function", "name": "fgetpos", "location": "/usr/include/stdio.h:798:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }, { "tag": "parameter", "name": "__pos", "type": { "tag": ":pointer", "type": { "tag": "fpos_t" } } }], "return-type": { "tag": ":int" } },
348
+{ "tag": "function", "name": "fsetpos", "location": "/usr/include/stdio.h:803:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }, { "tag": "parameter", "name": "__pos", "type": { "tag": ":pointer", "type": { "tag": "fpos_t" } } }], "return-type": { "tag": ":int" } },
349
+{ "tag": "function", "name": "clearerr", "location": "/usr/include/stdio.h:826:13", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":void" } },
350
+{ "tag": "function", "name": "feof", "location": "/usr/include/stdio.h:828:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":int" } },
351
+{ "tag": "function", "name": "ferror", "location": "/usr/include/stdio.h:830:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":int" } },
352
+{ "tag": "function", "name": "clearerr_unlocked", "location": "/usr/include/stdio.h:835:13", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":void" } },
353
+{ "tag": "function", "name": "feof_unlocked", "location": "/usr/include/stdio.h:836:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":int" } },
354
+{ "tag": "function", "name": "ferror_unlocked", "location": "/usr/include/stdio.h:837:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":int" } },
355
+{ "tag": "function", "name": "perror", "location": "/usr/include/stdio.h:846:13", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":void" } },
356
+{ "tag": "extern", "name": "sys_nerr", "location": "/usr/include/bits/sys_errlist.h:26:12", "type": { "tag": ":int" } },
357
+{ "tag": "extern", "name": "sys_errlist", "location": "/usr/include/bits/sys_errlist.h:27:26", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char" } } } },
358
+{ "tag": "function", "name": "fileno", "location": "/usr/include/stdio.h:858:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":int" } },
359
+{ "tag": "function", "name": "fileno_unlocked", "location": "/usr/include/stdio.h:863:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":int" } },
360
+{ "tag": "function", "name": "popen", "location": "/usr/include/stdio.h:873:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__command", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__modes", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":pointer", "type": { "tag": "FILE" } } },
361
+{ "tag": "function", "name": "pclose", "location": "/usr/include/stdio.h:879:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":int" } },
362
+{ "tag": "function", "name": "ctermid", "location": "/usr/include/stdio.h:885:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
363
+{ "tag": "function", "name": "flockfile", "location": "/usr/include/stdio.h:913:13", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":void" } },
364
+{ "tag": "function", "name": "ftrylockfile", "location": "/usr/include/stdio.h:917:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":int" } },
365
+{ "tag": "function", "name": "funlockfile", "location": "/usr/include/stdio.h:920:13", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":void" } },
366
+{ "tag": "function", "name": "memcpy", "location": "/usr/include/string.h:42:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__dest", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__src", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":void" } } },
367
+{ "tag": "function", "name": "memmove", "location": "/usr/include/string.h:46:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__dest", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__src", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":void" } } },
368
+{ "tag": "function", "name": "memccpy", "location": "/usr/include/string.h:54:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__dest", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__src", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__c", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":void" } } },
369
+{ "tag": "function", "name": "memset", "location": "/usr/include/string.h:62:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__c", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":void" } } },
370
+{ "tag": "function", "name": "memcmp", "location": "/usr/include/string.h:65:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s1", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__s2", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }], "return-type": { "tag": ":int" } },
371
+{ "tag": "function", "name": "memchr", "location": "/usr/include/string.h:92:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__c", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":void" } } },
372
+{ "tag": "function", "name": "strcpy", "location": "/usr/include/string.h:125:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__dest", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__src", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
373
+{ "tag": "function", "name": "strncpy", "location": "/usr/include/string.h:128:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__dest", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__src", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
374
+{ "tag": "function", "name": "strcat", "location": "/usr/include/string.h:133:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__dest", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__src", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
375
+{ "tag": "function", "name": "strncat", "location": "/usr/include/string.h:136:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__dest", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__src", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
376
+{ "tag": "function", "name": "strcmp", "location": "/usr/include/string.h:140:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s1", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__s2", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":int" } },
377
+{ "tag": "function", "name": "strncmp", "location": "/usr/include/string.h:143:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s1", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__s2", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }], "return-type": { "tag": ":int" } },
378
+{ "tag": "function", "name": "strcoll", "location": "/usr/include/string.h:147:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s1", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__s2", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":int" } },
379
+{ "tag": "function", "name": "strxfrm", "location": "/usr/include/string.h:150:15", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__dest", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__src", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }], "return-type": { "tag": "size_t" } },
380
+{ "tag": "struct", "name": "__locale_struct", "id": 0, "location": "/usr/include/xlocale.h:27:16", "bit-size": 928, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "__locales", "bit-offset": 0, "bit-size": 416, "bit-alignment": 32, "type": { "tag": ":array", "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "__locale_data", "id": 0 } }, "size": 13 } }, { "tag": "field", "name": "__ctype_b", "bit-offset": 416, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": ":unsigned-short" } } }, { "tag": "field", "name": "__ctype_tolower", "bit-offset": 448, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": ":int" } } }, { "tag": "field", "name": "__ctype_toupper", "bit-offset": 480, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": ":int" } } }, { "tag": "field", "name": "__names", "bit-offset": 512, "bit-size": 416, "bit-alignment": 32, "type": { "tag": ":array", "type": { "tag": ":pointer", "type": { "tag": ":char" } }, "size": 13 } }] },
381
+{ "tag": "typedef", "name": "__locale_t", "location": "/usr/include/xlocale.h:39:4", "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "__locale_struct", "id": 0 } } },
382
+{ "tag": "typedef", "name": "locale_t", "location": "/usr/include/xlocale.h:42:20", "type": { "tag": "__locale_t" } },
383
+{ "tag": "function", "name": "strcoll_l", "location": "/usr/include/string.h:162:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s1", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__s2", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__l", "type": { "tag": "__locale_t" } }], "return-type": { "tag": ":int" } },
384
+{ "tag": "function", "name": "strxfrm_l", "location": "/usr/include/string.h:165:15", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__dest", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__src", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }, { "tag": "parameter", "name": "__l", "type": { "tag": "__locale_t" } }], "return-type": { "tag": "size_t" } },
385
+{ "tag": "function", "name": "strdup", "location": "/usr/include/string.h:172:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
386
+{ "tag": "function", "name": "strndup", "location": "/usr/include/string.h:180:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__string", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
387
+{ "tag": "function", "name": "strchr", "location": "/usr/include/string.h:232:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__c", "type": { "tag": ":int" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
388
+{ "tag": "function", "name": "strrchr", "location": "/usr/include/string.h:259:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__c", "type": { "tag": ":int" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
389
+{ "tag": "function", "name": "strcspn", "location": "/usr/include/string.h:281:15", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__reject", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": "size_t" } },
390
+{ "tag": "function", "name": "strspn", "location": "/usr/include/string.h:285:15", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__accept", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": "size_t" } },
391
+{ "tag": "function", "name": "strpbrk", "location": "/usr/include/string.h:311:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__accept", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
392
+{ "tag": "function", "name": "strstr", "location": "/usr/include/string.h:338:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__haystack", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__needle", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
393
+{ "tag": "function", "name": "strtok", "location": "/usr/include/string.h:344:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__delim", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
394
+{ "tag": "function", "name": "__strtok_r", "location": "/usr/include/string.h:350:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__delim", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__save_ptr", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char" } } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
395
+{ "tag": "function", "name": "strtok_r", "location": "/usr/include/string.h:355:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__delim", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__save_ptr", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char" } } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
396
+{ "tag": "function", "name": "strlen", "location": "/usr/include/string.h:395:15", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": "size_t" } },
397
+{ "tag": "function", "name": "strnlen", "location": "/usr/include/string.h:402:15", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__string", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__maxlen", "type": { "tag": "size_t" } }], "return-type": { "tag": "size_t" } },
398
+{ "tag": "function", "name": "strerror", "location": "/usr/include/string.h:409:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__errnum", "type": { "tag": ":int" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
399
+{ "tag": "function", "name": "strerror_r", "location": "/usr/include/string.h:423:12 <Spelling=/usr/include/string.h:423:28>", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__errnum", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__buf", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__buflen", "type": { "tag": "size_t" } }], "return-type": { "tag": ":int" } },
400
+{ "tag": "function", "name": "strerror_l", "location": "/usr/include/string.h:441:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__errnum", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__l", "type": { "tag": "__locale_t" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
401
+{ "tag": "function", "name": "__bzero", "location": "/usr/include/string.h:447:13", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }], "return-type": { "tag": ":void" } },
402
+{ "tag": "function", "name": "bcopy", "location": "/usr/include/string.h:451:13", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__src", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__dest", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }], "return-type": { "tag": ":void" } },
403
+{ "tag": "function", "name": "bzero", "location": "/usr/include/string.h:455:13", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }], "return-type": { "tag": ":void" } },
404
+{ "tag": "function", "name": "bcmp", "location": "/usr/include/string.h:458:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s1", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__s2", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }], "return-type": { "tag": ":int" } },
405
+{ "tag": "function", "name": "index", "location": "/usr/include/string.h:485:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__c", "type": { "tag": ":int" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
406
+{ "tag": "function", "name": "rindex", "location": "/usr/include/string.h:513:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__c", "type": { "tag": ":int" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
407
+{ "tag": "function", "name": "ffs", "location": "/usr/include/string.h:519:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__i", "type": { "tag": ":int" } }], "return-type": { "tag": ":int" } },
408
+{ "tag": "function", "name": "strcasecmp", "location": "/usr/include/string.h:532:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s1", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__s2", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":int" } },
409
+{ "tag": "function", "name": "strncasecmp", "location": "/usr/include/string.h:536:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s1", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__s2", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }], "return-type": { "tag": ":int" } },
410
+{ "tag": "function", "name": "strsep", "location": "/usr/include/string.h:555:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stringp", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char" } } } }, { "tag": "parameter", "name": "__delim", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
411
+{ "tag": "function", "name": "strsignal", "location": "/usr/include/string.h:562:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__sig", "type": { "tag": ":int" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
412
+{ "tag": "function", "name": "__stpcpy", "location": "/usr/include/string.h:565:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__dest", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__src", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
413
+{ "tag": "function", "name": "stpcpy", "location": "/usr/include/string.h:567:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__dest", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__src", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
414
+{ "tag": "function", "name": "__stpncpy", "location": "/usr/include/string.h:572:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__dest", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__src", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
415
+{ "tag": "function", "name": "stpncpy", "location": "/usr/include/string.h:575:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__dest", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__src", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
416
+{ "tag": "function", "name": "yaml_get_version_string", "location": "/usr/include/yaml.h:57:1", "variadic": false, "parameters": [], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
417
+{ "tag": "function", "name": "yaml_get_version", "location": "/usr/include/yaml.h:68:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "major", "type": { "tag": ":pointer", "type": { "tag": ":int" } } }, { "tag": "parameter", "name": "minor", "type": { "tag": ":pointer", "type": { "tag": ":int" } } }, { "tag": "parameter", "name": "patch", "type": { "tag": ":pointer", "type": { "tag": ":int" } } }], "return-type": { "tag": ":void" } },
418
+{ "tag": "typedef", "name": "yaml_char_t", "location": "/usr/include/yaml.h:78:23", "type": { "tag": ":unsigned-char" } },
419
+{ "tag": "struct", "name": "yaml_version_directive_s", "id": 0, "location": "/usr/include/yaml.h:81:16", "bit-size": 64, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "major", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "minor", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }] },
420
+{ "tag": "typedef", "name": "yaml_version_directive_t", "location": "/usr/include/yaml.h:86:3", "type": { "tag": ":struct", "name": "yaml_version_directive_s", "id": 0 } },
421
+{ "tag": "struct", "name": "yaml_tag_directive_s", "id": 0, "location": "/usr/include/yaml.h:89:16", "bit-size": 64, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "handle", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "field", "name": "prefix", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }] },
422
+{ "tag": "typedef", "name": "yaml_tag_directive_t", "location": "/usr/include/yaml.h:94:3", "type": { "tag": ":struct", "name": "yaml_tag_directive_s", "id": 0 } },
423
+{ "tag": "enum", "name": "yaml_encoding_e", "id": 0, "location": "/usr/include/yaml.h:97:14", "fields": [{ "tag": "field", "name": "YAML_ANY_ENCODING", "value": 0 }, { "tag": "field", "name": "YAML_UTF8_ENCODING", "value": 1 }, { "tag": "field", "name": "YAML_UTF16LE_ENCODING", "value": 2 }, { "tag": "field", "name": "YAML_UTF16BE_ENCODING", "value": 3 }] },
424
+{ "tag": "typedef", "name": "yaml_encoding_t", "location": "/usr/include/yaml.h:106:3", "type": { "tag": ":enum", "name": "yaml_encoding_e", "id": 0 } },
425
+{ "tag": "enum", "name": "yaml_break_e", "id": 0, "location": "/usr/include/yaml.h:110:14", "fields": [{ "tag": "field", "name": "YAML_ANY_BREAK", "value": 0 }, { "tag": "field", "name": "YAML_CR_BREAK", "value": 1 }, { "tag": "field", "name": "YAML_LN_BREAK", "value": 2 }, { "tag": "field", "name": "YAML_CRLN_BREAK", "value": 3 }] },
426
+{ "tag": "typedef", "name": "yaml_break_t", "location": "/usr/include/yaml.h:119:3", "type": { "tag": ":enum", "name": "yaml_break_e", "id": 0 } },
427
+{ "tag": "enum", "name": "yaml_error_type_e", "id": 0, "location": "/usr/include/yaml.h:122:14", "fields": [{ "tag": "field", "name": "YAML_NO_ERROR", "value": 0 }, { "tag": "field", "name": "YAML_MEMORY_ERROR", "value": 1 }, { "tag": "field", "name": "YAML_READER_ERROR", "value": 2 }, { "tag": "field", "name": "YAML_SCANNER_ERROR", "value": 3 }, { "tag": "field", "name": "YAML_PARSER_ERROR", "value": 4 }, { "tag": "field", "name": "YAML_COMPOSER_ERROR", "value": 5 }, { "tag": "field", "name": "YAML_WRITER_ERROR", "value": 6 }, { "tag": "field", "name": "YAML_EMITTER_ERROR", "value": 7 }] },
428
+{ "tag": "typedef", "name": "yaml_error_type_t", "location": "/usr/include/yaml.h:142:3", "type": { "tag": ":enum", "name": "yaml_error_type_e", "id": 0 } },
429
+{ "tag": "struct", "name": "yaml_mark_s", "id": 0, "location": "/usr/include/yaml.h:145:16", "bit-size": 96, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "index", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "size_t" } }, { "tag": "field", "name": "line", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "size_t" } }, { "tag": "field", "name": "column", "bit-offset": 64, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "size_t" } }] },
430
+{ "tag": "typedef", "name": "yaml_mark_t", "location": "/usr/include/yaml.h:154:3", "type": { "tag": ":struct", "name": "yaml_mark_s", "id": 0 } },
431
+{ "tag": "enum", "name": "yaml_scalar_style_e", "id": 0, "location": "/usr/include/yaml.h:164:14", "fields": [{ "tag": "field", "name": "YAML_ANY_SCALAR_STYLE", "value": 0 }, { "tag": "field", "name": "YAML_PLAIN_SCALAR_STYLE", "value": 1 }, { "tag": "field", "name": "YAML_SINGLE_QUOTED_SCALAR_STYLE", "value": 2 }, { "tag": "field", "name": "YAML_DOUBLE_QUOTED_SCALAR_STYLE", "value": 3 }, { "tag": "field", "name": "YAML_LITERAL_SCALAR_STYLE", "value": 4 }, { "tag": "field", "name": "YAML_FOLDED_SCALAR_STYLE", "value": 5 }] },
432
+{ "tag": "typedef", "name": "yaml_scalar_style_t", "location": "/usr/include/yaml.h:180:3", "type": { "tag": ":enum", "name": "yaml_scalar_style_e", "id": 0 } },
433
+{ "tag": "enum", "name": "yaml_sequence_style_e", "id": 0, "location": "/usr/include/yaml.h:183:14", "fields": [{ "tag": "field", "name": "YAML_ANY_SEQUENCE_STYLE", "value": 0 }, { "tag": "field", "name": "YAML_BLOCK_SEQUENCE_STYLE", "value": 1 }, { "tag": "field", "name": "YAML_FLOW_SEQUENCE_STYLE", "value": 2 }] },
434
+{ "tag": "typedef", "name": "yaml_sequence_style_t", "location": "/usr/include/yaml.h:191:3", "type": { "tag": ":enum", "name": "yaml_sequence_style_e", "id": 0 } },
435
+{ "tag": "enum", "name": "yaml_mapping_style_e", "id": 0, "location": "/usr/include/yaml.h:194:14", "fields": [{ "tag": "field", "name": "YAML_ANY_MAPPING_STYLE", "value": 0 }, { "tag": "field", "name": "YAML_BLOCK_MAPPING_STYLE", "value": 1 }, { "tag": "field", "name": "YAML_FLOW_MAPPING_STYLE", "value": 2 }] },
436
+{ "tag": "typedef", "name": "yaml_mapping_style_t", "location": "/usr/include/yaml.h:203:3", "type": { "tag": ":enum", "name": "yaml_mapping_style_e", "id": 0 } },
437
+{ "tag": "enum", "name": "yaml_token_type_e", "id": 0, "location": "/usr/include/yaml.h:213:14", "fields": [{ "tag": "field", "name": "YAML_NO_TOKEN", "value": 0 }, { "tag": "field", "name": "YAML_STREAM_START_TOKEN", "value": 1 }, { "tag": "field", "name": "YAML_STREAM_END_TOKEN", "value": 2 }, { "tag": "field", "name": "YAML_VERSION_DIRECTIVE_TOKEN", "value": 3 }, { "tag": "field", "name": "YAML_TAG_DIRECTIVE_TOKEN", "value": 4 }, { "tag": "field", "name": "YAML_DOCUMENT_START_TOKEN", "value": 5 }, { "tag": "field", "name": "YAML_DOCUMENT_END_TOKEN", "value": 6 }, { "tag": "field", "name": "YAML_BLOCK_SEQUENCE_START_TOKEN", "value": 7 }, { "tag": "field", "name": "YAML_BLOCK_MAPPING_START_TOKEN", "value": 8 }, { "tag": "field", "name": "YAML_BLOCK_END_TOKEN", "value": 9 }, { "tag": "field", "name": "YAML_FLOW_SEQUENCE_START_TOKEN", "value": 10 }, { "tag": "field", "name": "YAML_FLOW_SEQUENCE_END_TOKEN", "value": 11 }, { "tag": "field", "name": "YAML_FLOW_MAPPING_START_TOKEN", "value": 12 }, { "tag": "field", "name": "YAML_FLOW_MAPPING_END_TOKEN", "value": 13 }, { "tag": "field", "name": "YAML_BLOCK_ENTRY_TOKEN", "value": 14 }, { "tag": "field", "name": "YAML_FLOW_ENTRY_TOKEN", "value": 15 }, { "tag": "field", "name": "YAML_KEY_TOKEN", "value": 16 }, { "tag": "field", "name": "YAML_VALUE_TOKEN", "value": 17 }, { "tag": "field", "name": "YAML_ALIAS_TOKEN", "value": 18 }, { "tag": "field", "name": "YAML_ANCHOR_TOKEN", "value": 19 }, { "tag": "field", "name": "YAML_TAG_TOKEN", "value": 20 }, { "tag": "field", "name": "YAML_SCALAR_TOKEN", "value": 21 }] },
438
+{ "tag": "typedef", "name": "yaml_token_type_t", "location": "/usr/include/yaml.h:264:3", "type": { "tag": ":enum", "name": "yaml_token_type_e", "id": 0 } },
439
+{ "tag": "struct", "name": "yaml_token_s", "id": 0, "location": "/usr/include/yaml.h:267:16", "bit-size": 320, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "type", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "yaml_token_type_t" } }, { "tag": "field", "name": "data", "bit-offset": 32, "bit-size": 96, "bit-alignment": 32, "type": { "tag": "union", "name": "", "id": 25, "location": "/usr/include/yaml.h:273:5", "bit-size": 96, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "stream_start", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "struct", "name": "", "id": 26, "location": "/usr/include/yaml.h:276:9", "bit-size": 32, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "encoding", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "yaml_encoding_t" } }] } }, { "tag": "field", "name": "alias", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "struct", "name": "", "id": 27, "location": "/usr/include/yaml.h:282:9", "bit-size": 32, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "value", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }] } }, { "tag": "field", "name": "anchor", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "struct", "name": "", "id": 28, "location": "/usr/include/yaml.h:288:9", "bit-size": 32, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "value", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }] } }, { "tag": "field", "name": "tag", "bit-offset": 0, "bit-size": 64, "bit-alignment": 32, "type": { "tag": "struct", "name": "", "id": 29, "location": "/usr/include/yaml.h:294:9", "bit-size": 64, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "handle", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "field", "name": "suffix", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }] } }, { "tag": "field", "name": "scalar", "bit-offset": 0, "bit-size": 96, "bit-alignment": 32, "type": { "tag": "struct", "name": "", "id": 30, "location": "/usr/include/yaml.h:302:9", "bit-size": 96, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "value", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "field", "name": "length", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "size_t" } }, { "tag": "field", "name": "style", "bit-offset": 64, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "yaml_scalar_style_t" } }] } }, { "tag": "field", "name": "version_directive", "bit-offset": 0, "bit-size": 64, "bit-alignment": 32, "type": { "tag": "struct", "name": "", "id": 31, "location": "/usr/include/yaml.h:312:9", "bit-size": 64, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "major", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "minor", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }] } }, { "tag": "field", "name": "tag_directive", "bit-offset": 0, "bit-size": 64, "bit-alignment": 32, "type": { "tag": "struct", "name": "", "id": 32, "location": "/usr/include/yaml.h:320:9", "bit-size": 64, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "handle", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "field", "name": "prefix", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }] } }] } }, { "tag": "field", "name": "start_mark", "bit-offset": 128, "bit-size": 96, "bit-alignment": 32, "type": { "tag": "yaml_mark_t" } }, { "tag": "field", "name": "end_mark", "bit-offset": 224, "bit-size": 96, "bit-alignment": 32, "type": { "tag": "yaml_mark_t" } }] },
440
+{ "tag": "typedef", "name": "yaml_token_t", "location": "/usr/include/yaml.h:334:3", "type": { "tag": ":struct", "name": "yaml_token_s", "id": 0 } },
441
+{ "tag": "function", "name": "yaml_token_delete", "location": "/usr/include/yaml.h:343:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "token", "type": { "tag": ":pointer", "type": { "tag": "yaml_token_t" } } }], "return-type": { "tag": ":void" } },
442
+{ "tag": "enum", "name": "yaml_event_type_e", "id": 0, "location": "/usr/include/yaml.h:353:14", "fields": [{ "tag": "field", "name": "YAML_NO_EVENT", "value": 0 }, { "tag": "field", "name": "YAML_STREAM_START_EVENT", "value": 1 }, { "tag": "field", "name": "YAML_STREAM_END_EVENT", "value": 2 }, { "tag": "field", "name": "YAML_DOCUMENT_START_EVENT", "value": 3 }, { "tag": "field", "name": "YAML_DOCUMENT_END_EVENT", "value": 4 }, { "tag": "field", "name": "YAML_ALIAS_EVENT", "value": 5 }, { "tag": "field", "name": "YAML_SCALAR_EVENT", "value": 6 }, { "tag": "field", "name": "YAML_SEQUENCE_START_EVENT", "value": 7 }, { "tag": "field", "name": "YAML_SEQUENCE_END_EVENT", "value": 8 }, { "tag": "field", "name": "YAML_MAPPING_START_EVENT", "value": 9 }, { "tag": "field", "name": "YAML_MAPPING_END_EVENT", "value": 10 }] },
443
+{ "tag": "typedef", "name": "yaml_event_type_t", "location": "/usr/include/yaml.h:381:3", "type": { "tag": ":enum", "name": "yaml_event_type_e", "id": 0 } },
444
+{ "tag": "struct", "name": "yaml_event_s", "id": 0, "location": "/usr/include/yaml.h:384:16", "bit-size": 448, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "type", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "yaml_event_type_t" } }, { "tag": "field", "name": "data", "bit-offset": 32, "bit-size": 224, "bit-alignment": 32, "type": { "tag": "union", "name": "", "id": 33, "location": "/usr/include/yaml.h:390:5", "bit-size": 224, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "stream_start", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "struct", "name": "", "id": 34, "location": "/usr/include/yaml.h:393:9", "bit-size": 32, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "encoding", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "yaml_encoding_t" } }] } }, { "tag": "field", "name": "document_start", "bit-offset": 0, "bit-size": 128, "bit-alignment": 32, "type": { "tag": "struct", "name": "", "id": 35, "location": "/usr/include/yaml.h:399:9", "bit-size": 128, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "version_directive", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_version_directive_t" } } }, { "tag": "field", "name": "tag_directives", "bit-offset": 32, "bit-size": 64, "bit-alignment": 32, "type": { "tag": "struct", "name": "", "id": 36, "location": "/usr/include/yaml.h:404:13", "bit-size": 64, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "start", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_tag_directive_t" } } }, { "tag": "field", "name": "end", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_tag_directive_t" } } }] } }, { "tag": "field", "name": "implicit", "bit-offset": 96, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }] } }, { "tag": "field", "name": "document_end", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "struct", "name": "", "id": 37, "location": "/usr/include/yaml.h:416:9", "bit-size": 32, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "implicit", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }] } }, { "tag": "field", "name": "alias", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "struct", "name": "", "id": 38, "location": "/usr/include/yaml.h:422:9", "bit-size": 32, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "anchor", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }] } }, { "tag": "field", "name": "scalar", "bit-offset": 0, "bit-size": 224, "bit-alignment": 32, "type": { "tag": "struct", "name": "", "id": 39, "location": "/usr/include/yaml.h:428:9", "bit-size": 224, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "anchor", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "field", "name": "tag", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "field", "name": "value", "bit-offset": 64, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "field", "name": "length", "bit-offset": 96, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "size_t" } }, { "tag": "field", "name": "plain_implicit", "bit-offset": 128, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "quoted_implicit", "bit-offset": 160, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "style", "bit-offset": 192, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "yaml_scalar_style_t" } }] } }, { "tag": "field", "name": "sequence_start", "bit-offset": 0, "bit-size": 128, "bit-alignment": 32, "type": { "tag": "struct", "name": "", "id": 40, "location": "/usr/include/yaml.h:446:9", "bit-size": 128, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "anchor", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "field", "name": "tag", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "field", "name": "implicit", "bit-offset": 64, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "style", "bit-offset": 96, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "yaml_sequence_style_t" } }] } }, { "tag": "field", "name": "mapping_start", "bit-offset": 0, "bit-size": 128, "bit-alignment": 32, "type": { "tag": "struct", "name": "", "id": 41, "location": "/usr/include/yaml.h:458:9", "bit-size": 128, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "anchor", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "field", "name": "tag", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "field", "name": "implicit", "bit-offset": 64, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "style", "bit-offset": 96, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "yaml_mapping_style_t" } }] } }] } }, { "tag": "field", "name": "start_mark", "bit-offset": 256, "bit-size": 96, "bit-alignment": 32, "type": { "tag": "yaml_mark_t" } }, { "tag": "field", "name": "end_mark", "bit-offset": 352, "bit-size": 96, "bit-alignment": 32, "type": { "tag": "yaml_mark_t" } }] },
445
+{ "tag": "typedef", "name": "yaml_event_t", "location": "/usr/include/yaml.h:476:3", "type": { "tag": ":struct", "name": "yaml_event_s", "id": 0 } },
446
+{ "tag": "function", "name": "yaml_stream_start_event_initialize", "location": "/usr/include/yaml.h:488:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "event", "type": { "tag": ":pointer", "type": { "tag": "yaml_event_t" } } }, { "tag": "parameter", "name": "encoding", "type": { "tag": "yaml_encoding_t" } }], "return-type": { "tag": ":int" } },
447
+{ "tag": "function", "name": "yaml_stream_end_event_initialize", "location": "/usr/include/yaml.h:500:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "event", "type": { "tag": ":pointer", "type": { "tag": "yaml_event_t" } } }], "return-type": { "tag": ":int" } },
448
+{ "tag": "function", "name": "yaml_document_start_event_initialize", "location": "/usr/include/yaml.h:522:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "event", "type": { "tag": ":pointer", "type": { "tag": "yaml_event_t" } } }, { "tag": "parameter", "name": "version_directive", "type": { "tag": ":pointer", "type": { "tag": "yaml_version_directive_t" } } }, { "tag": "parameter", "name": "tag_directives_start", "type": { "tag": ":pointer", "type": { "tag": "yaml_tag_directive_t" } } }, { "tag": "parameter", "name": "tag_directives_end", "type": { "tag": ":pointer", "type": { "tag": "yaml_tag_directive_t" } } }, { "tag": "parameter", "name": "implicit", "type": { "tag": ":int" } }], "return-type": { "tag": ":int" } },
449
+{ "tag": "function", "name": "yaml_document_end_event_initialize", "location": "/usr/include/yaml.h:541:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "event", "type": { "tag": ":pointer", "type": { "tag": "yaml_event_t" } } }, { "tag": "parameter", "name": "implicit", "type": { "tag": ":int" } }], "return-type": { "tag": ":int" } },
450
+{ "tag": "function", "name": "yaml_alias_event_initialize", "location": "/usr/include/yaml.h:553:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "event", "type": { "tag": ":pointer", "type": { "tag": "yaml_event_t" } } }, { "tag": "parameter", "name": "anchor", "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }], "return-type": { "tag": ":int" } },
451
+{ "tag": "function", "name": "yaml_scalar_event_initialize", "location": "/usr/include/yaml.h:578:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "event", "type": { "tag": ":pointer", "type": { "tag": "yaml_event_t" } } }, { "tag": "parameter", "name": "anchor", "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "parameter", "name": "tag", "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "parameter", "name": "value", "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "parameter", "name": "length", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "plain_implicit", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "quoted_implicit", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "style", "type": { "tag": "yaml_scalar_style_t" } }], "return-type": { "tag": ":int" } },
452
+{ "tag": "function", "name": "yaml_sequence_start_event_initialize", "location": "/usr/include/yaml.h:601:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "event", "type": { "tag": ":pointer", "type": { "tag": "yaml_event_t" } } }, { "tag": "parameter", "name": "anchor", "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "parameter", "name": "tag", "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "parameter", "name": "implicit", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "style", "type": { "tag": "yaml_sequence_style_t" } }], "return-type": { "tag": ":int" } },
453
+{ "tag": "function", "name": "yaml_sequence_end_event_initialize", "location": "/usr/include/yaml.h:614:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "event", "type": { "tag": ":pointer", "type": { "tag": "yaml_event_t" } } }], "return-type": { "tag": ":int" } },
454
+{ "tag": "function", "name": "yaml_mapping_start_event_initialize", "location": "/usr/include/yaml.h:633:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "event", "type": { "tag": ":pointer", "type": { "tag": "yaml_event_t" } } }, { "tag": "parameter", "name": "anchor", "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "parameter", "name": "tag", "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "parameter", "name": "implicit", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "style", "type": { "tag": "yaml_mapping_style_t" } }], "return-type": { "tag": ":int" } },
455
+{ "tag": "function", "name": "yaml_mapping_end_event_initialize", "location": "/usr/include/yaml.h:646:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "event", "type": { "tag": ":pointer", "type": { "tag": "yaml_event_t" } } }], "return-type": { "tag": ":int" } },
456
+{ "tag": "function", "name": "yaml_event_delete", "location": "/usr/include/yaml.h:655:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "event", "type": { "tag": ":pointer", "type": { "tag": "yaml_event_t" } } }], "return-type": { "tag": ":void" } },
457
+{ "tag": "enum", "name": "yaml_node_type_e", "id": 0, "location": "/usr/include/yaml.h:690:14", "fields": [{ "tag": "field", "name": "YAML_NO_NODE", "value": 0 }, { "tag": "field", "name": "YAML_SCALAR_NODE", "value": 1 }, { "tag": "field", "name": "YAML_SEQUENCE_NODE", "value": 2 }, { "tag": "field", "name": "YAML_MAPPING_NODE", "value": 3 }] },
458
+{ "tag": "typedef", "name": "yaml_node_type_t", "location": "/usr/include/yaml.h:700:3", "type": { "tag": ":enum", "name": "yaml_node_type_e", "id": 0 } },
459
+{ "tag": "struct", "name": "yaml_node_s", "id": 0, "location": "/usr/include/yaml.h:703:16", "bit-size": 0, "bit-alignment": 0, "fields": [] },
460
+{ "tag": "typedef", "name": "yaml_node_t", "location": "/usr/include/yaml.h:703:28", "type": { "tag": ":struct", "name": "yaml_node_s", "id": 0 } },
461
+{ "tag": "typedef", "name": "yaml_node_item_t", "location": "/usr/include/yaml.h:706:13", "type": { "tag": ":int" } },
462
+{ "tag": "struct", "name": "yaml_node_pair_s", "id": 0, "location": "/usr/include/yaml.h:709:16", "bit-size": 64, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "key", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "value", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }] },
463
+{ "tag": "typedef", "name": "yaml_node_pair_t", "location": "/usr/include/yaml.h:714:3", "type": { "tag": ":struct", "name": "yaml_node_pair_s", "id": 0 } },
464
+{ "tag": "struct", "name": "yaml_node_s", "id": 0, "location": "/usr/include/yaml.h:717:8", "bit-size": 384, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "type", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "yaml_node_type_t" } }, { "tag": "field", "name": "tag", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "field", "name": "data", "bit-offset": 64, "bit-size": 128, "bit-alignment": 32, "type": { "tag": "union", "name": "", "id": 42, "location": "/usr/include/yaml.h:726:5", "bit-size": 128, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "scalar", "bit-offset": 0, "bit-size": 96, "bit-alignment": 32, "type": { "tag": "struct", "name": "", "id": 43, "location": "/usr/include/yaml.h:729:9", "bit-size": 96, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "value", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "field", "name": "length", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "size_t" } }, { "tag": "field", "name": "style", "bit-offset": 64, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "yaml_scalar_style_t" } }] } }, { "tag": "field", "name": "sequence", "bit-offset": 0, "bit-size": 128, "bit-alignment": 32, "type": { "tag": "struct", "name": "", "id": 44, "location": "/usr/include/yaml.h:739:9", "bit-size": 128, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "items", "bit-offset": 0, "bit-size": 96, "bit-alignment": 32, "type": { "tag": "struct", "name": "", "id": 45, "location": "/usr/include/yaml.h:741:13", "bit-size": 96, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "start", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_node_item_t" } } }, { "tag": "field", "name": "end", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_node_item_t" } } }, { "tag": "field", "name": "top", "bit-offset": 64, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_node_item_t" } } }] } }, { "tag": "field", "name": "style", "bit-offset": 96, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "yaml_sequence_style_t" } }] } }, { "tag": "field", "name": "mapping", "bit-offset": 0, "bit-size": 128, "bit-alignment": 32, "type": { "tag": "struct", "name": "", "id": 46, "location": "/usr/include/yaml.h:754:9", "bit-size": 128, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "pairs", "bit-offset": 0, "bit-size": 96, "bit-alignment": 32, "type": { "tag": "struct", "name": "", "id": 47, "location": "/usr/include/yaml.h:756:13", "bit-size": 96, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "start", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_node_pair_t" } } }, { "tag": "field", "name": "end", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_node_pair_t" } } }, { "tag": "field", "name": "top", "bit-offset": 64, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_node_pair_t" } } }] } }, { "tag": "field", "name": "style", "bit-offset": 96, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "yaml_mapping_style_t" } }] } }] } }, { "tag": "field", "name": "start_mark", "bit-offset": 192, "bit-size": 96, "bit-alignment": 32, "type": { "tag": "yaml_mark_t" } }, { "tag": "field", "name": "end_mark", "bit-offset": 288, "bit-size": 96, "bit-alignment": 32, "type": { "tag": "yaml_mark_t" } }] },
465
+{ "tag": "struct", "name": "yaml_document_s", "id": 0, "location": "/usr/include/yaml.h:778:16", "bit-size": 448, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "nodes", "bit-offset": 0, "bit-size": 96, "bit-alignment": 32, "type": { "tag": "struct", "name": "", "id": 48, "location": "/usr/include/yaml.h:781:5", "bit-size": 96, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "start", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_node_t" } } }, { "tag": "field", "name": "end", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_node_t" } } }, { "tag": "field", "name": "top", "bit-offset": 64, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_node_t" } } }] } }, { "tag": "field", "name": "version_directive", "bit-offset": 96, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_version_directive_t" } } }, { "tag": "field", "name": "tag_directives", "bit-offset": 128, "bit-size": 64, "bit-alignment": 32, "type": { "tag": "struct", "name": "", "id": 49, "location": "/usr/include/yaml.h:794:5", "bit-size": 64, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "start", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_tag_directive_t" } } }, { "tag": "field", "name": "end", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_tag_directive_t" } } }] } }, { "tag": "field", "name": "start_implicit", "bit-offset": 192, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "end_implicit", "bit-offset": 224, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "start_mark", "bit-offset": 256, "bit-size": 96, "bit-alignment": 32, "type": { "tag": "yaml_mark_t" } }, { "tag": "field", "name": "end_mark", "bit-offset": 352, "bit-size": 96, "bit-alignment": 32, "type": { "tag": "yaml_mark_t" } }] },
466
+{ "tag": "typedef", "name": "yaml_document_t", "location": "/usr/include/yaml.h:811:3", "type": { "tag": ":struct", "name": "yaml_document_s", "id": 0 } },
467
+{ "tag": "function", "name": "yaml_document_initialize", "location": "/usr/include/yaml.h:832:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "document", "type": { "tag": ":pointer", "type": { "tag": "yaml_document_t" } } }, { "tag": "parameter", "name": "version_directive", "type": { "tag": ":pointer", "type": { "tag": "yaml_version_directive_t" } } }, { "tag": "parameter", "name": "tag_directives_start", "type": { "tag": ":pointer", "type": { "tag": "yaml_tag_directive_t" } } }, { "tag": "parameter", "name": "tag_directives_end", "type": { "tag": ":pointer", "type": { "tag": "yaml_tag_directive_t" } } }, { "tag": "parameter", "name": "start_implicit", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "end_implicit", "type": { "tag": ":int" } }], "return-type": { "tag": ":int" } },
468
+{ "tag": "function", "name": "yaml_document_delete", "location": "/usr/include/yaml.h:845:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "document", "type": { "tag": ":pointer", "type": { "tag": "yaml_document_t" } } }], "return-type": { "tag": ":void" } },
469
+{ "tag": "function", "name": "yaml_document_get_node", "location": "/usr/include/yaml.h:860:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "document", "type": { "tag": ":pointer", "type": { "tag": "yaml_document_t" } } }, { "tag": "parameter", "name": "index", "type": { "tag": ":int" } }], "return-type": { "tag": ":pointer", "type": { "tag": "yaml_node_t" } } },
470
+{ "tag": "function", "name": "yaml_document_get_root_node", "location": "/usr/include/yaml.h:879:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "document", "type": { "tag": ":pointer", "type": { "tag": "yaml_document_t" } } }], "return-type": { "tag": ":pointer", "type": { "tag": "yaml_node_t" } } },
471
+{ "tag": "function", "name": "yaml_document_add_scalar", "location": "/usr/include/yaml.h:896:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "document", "type": { "tag": ":pointer", "type": { "tag": "yaml_document_t" } } }, { "tag": "parameter", "name": "tag", "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "parameter", "name": "value", "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "parameter", "name": "length", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "style", "type": { "tag": "yaml_scalar_style_t" } }], "return-type": { "tag": ":int" } },
472
+{ "tag": "function", "name": "yaml_document_add_sequence", "location": "/usr/include/yaml.h:913:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "document", "type": { "tag": ":pointer", "type": { "tag": "yaml_document_t" } } }, { "tag": "parameter", "name": "tag", "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "parameter", "name": "style", "type": { "tag": "yaml_sequence_style_t" } }], "return-type": { "tag": ":int" } },
473
+{ "tag": "function", "name": "yaml_document_add_mapping", "location": "/usr/include/yaml.h:929:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "document", "type": { "tag": ":pointer", "type": { "tag": "yaml_document_t" } } }, { "tag": "parameter", "name": "tag", "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "parameter", "name": "style", "type": { "tag": "yaml_mapping_style_t" } }], "return-type": { "tag": ":int" } },
474
+{ "tag": "function", "name": "yaml_document_append_sequence_item", "location": "/usr/include/yaml.h:943:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "document", "type": { "tag": ":pointer", "type": { "tag": "yaml_document_t" } } }, { "tag": "parameter", "name": "sequence", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "item", "type": { "tag": ":int" } }], "return-type": { "tag": ":int" } },
475
+{ "tag": "function", "name": "yaml_document_append_mapping_pair", "location": "/usr/include/yaml.h:958:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "document", "type": { "tag": ":pointer", "type": { "tag": "yaml_document_t" } } }, { "tag": "parameter", "name": "mapping", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "key", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "value", "type": { "tag": ":int" } }], "return-type": { "tag": ":int" } },
476
+{ "tag": "typedef", "name": "yaml_read_handler_t", "location": "/usr/include/yaml.h:986:13", "type": { "tag": ":function" } },
477
+{ "tag": "struct", "name": "yaml_simple_key_s", "id": 0, "location": "/usr/include/yaml.h:993:16", "bit-size": 192, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "possible", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "required", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "token_number", "bit-offset": 64, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "size_t" } }, { "tag": "field", "name": "mark", "bit-offset": 96, "bit-size": 96, "bit-alignment": 32, "type": { "tag": "yaml_mark_t" } }] },
478
+{ "tag": "typedef", "name": "yaml_simple_key_t", "location": "/usr/include/yaml.h:1005:3", "type": { "tag": ":struct", "name": "yaml_simple_key_s", "id": 0 } },
479
+{ "tag": "enum", "name": "yaml_parser_state_e", "id": 0, "location": "/usr/include/yaml.h:1010:14", "fields": [{ "tag": "field", "name": "YAML_PARSE_STREAM_START_STATE", "value": 0 }, { "tag": "field", "name": "YAML_PARSE_IMPLICIT_DOCUMENT_START_STATE", "value": 1 }, { "tag": "field", "name": "YAML_PARSE_DOCUMENT_START_STATE", "value": 2 }, { "tag": "field", "name": "YAML_PARSE_DOCUMENT_CONTENT_STATE", "value": 3 }, { "tag": "field", "name": "YAML_PARSE_DOCUMENT_END_STATE", "value": 4 }, { "tag": "field", "name": "YAML_PARSE_BLOCK_NODE_STATE", "value": 5 }, { "tag": "field", "name": "YAML_PARSE_BLOCK_NODE_OR_INDENTLESS_SEQUENCE_STATE", "value": 6 }, { "tag": "field", "name": "YAML_PARSE_FLOW_NODE_STATE", "value": 7 }, { "tag": "field", "name": "YAML_PARSE_BLOCK_SEQUENCE_FIRST_ENTRY_STATE", "value": 8 }, { "tag": "field", "name": "YAML_PARSE_BLOCK_SEQUENCE_ENTRY_STATE", "value": 9 }, { "tag": "field", "name": "YAML_PARSE_INDENTLESS_SEQUENCE_ENTRY_STATE", "value": 10 }, { "tag": "field", "name": "YAML_PARSE_BLOCK_MAPPING_FIRST_KEY_STATE", "value": 11 }, { "tag": "field", "name": "YAML_PARSE_BLOCK_MAPPING_KEY_STATE", "value": 12 }, { "tag": "field", "name": "YAML_PARSE_BLOCK_MAPPING_VALUE_STATE", "value": 13 }, { "tag": "field", "name": "YAML_PARSE_FLOW_SEQUENCE_FIRST_ENTRY_STATE", "value": 14 }, { "tag": "field", "name": "YAML_PARSE_FLOW_SEQUENCE_ENTRY_STATE", "value": 15 }, { "tag": "field", "name": "YAML_PARSE_FLOW_SEQUENCE_ENTRY_MAPPING_KEY_STATE", "value": 16 }, { "tag": "field", "name": "YAML_PARSE_FLOW_SEQUENCE_ENTRY_MAPPING_VALUE_STATE", "value": 17 }, { "tag": "field", "name": "YAML_PARSE_FLOW_SEQUENCE_ENTRY_MAPPING_END_STATE", "value": 18 }, { "tag": "field", "name": "YAML_PARSE_FLOW_MAPPING_FIRST_KEY_STATE", "value": 19 }, { "tag": "field", "name": "YAML_PARSE_FLOW_MAPPING_KEY_STATE", "value": 20 }, { "tag": "field", "name": "YAML_PARSE_FLOW_MAPPING_VALUE_STATE", "value": 21 }, { "tag": "field", "name": "YAML_PARSE_FLOW_MAPPING_EMPTY_VALUE_STATE", "value": 22 }, { "tag": "field", "name": "YAML_PARSE_END_STATE", "value": 23 }] },
480
+{ "tag": "typedef", "name": "yaml_parser_state_t", "location": "/usr/include/yaml.h:1059:3", "type": { "tag": ":enum", "name": "yaml_parser_state_e", "id": 0 } },
481
+{ "tag": "struct", "name": "yaml_alias_data_s", "id": 0, "location": "/usr/include/yaml.h:1065:16", "bit-size": 160, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "anchor", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "field", "name": "index", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "mark", "bit-offset": 64, "bit-size": 96, "bit-alignment": 32, "type": { "tag": "yaml_mark_t" } }] },
482
+{ "tag": "typedef", "name": "yaml_alias_data_t", "location": "/usr/include/yaml.h:1072:3", "type": { "tag": ":struct", "name": "yaml_alias_data_s", "id": 0 } },
483
+{ "tag": "struct", "name": "yaml_parser_s", "id": 0, "location": "/usr/include/yaml.h:1081:16", "bit-size": 1984, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "error", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "yaml_error_type_t" } }, { "tag": "field", "name": "problem", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "field", "name": "problem_offset", "bit-offset": 64, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "size_t" } }, { "tag": "field", "name": "problem_value", "bit-offset": 96, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "problem_mark", "bit-offset": 128, "bit-size": 96, "bit-alignment": 32, "type": { "tag": "yaml_mark_t" } }, { "tag": "field", "name": "context", "bit-offset": 224, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "field", "name": "context_mark", "bit-offset": 256, "bit-size": 96, "bit-alignment": 32, "type": { "tag": "yaml_mark_t" } }, { "tag": "field", "name": "read_handler", "bit-offset": 352, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":function-pointer" } }, { "tag": "field", "name": "read_handler_data", "bit-offset": 384, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "field", "name": "input", "bit-offset": 416, "bit-size": 96, "bit-alignment": 32, "type": { "tag": "union", "name": "", "id": 50, "location": "/usr/include/yaml.h:1119:5", "bit-size": 96, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "string", "bit-offset": 0, "bit-size": 96, "bit-alignment": 32, "type": { "tag": "struct", "name": "", "id": 51, "location": "/usr/include/yaml.h:1121:9", "bit-size": 96, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "start", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": ":unsigned-char" } } }, { "tag": "field", "name": "end", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": ":unsigned-char" } } }, { "tag": "field", "name": "current", "bit-offset": 64, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": ":unsigned-char" } } }] } }, { "tag": "field", "name": "file", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }] } }, { "tag": "field", "name": "eof", "bit-offset": 512, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "buffer", "bit-offset": 544, "bit-size": 128, "bit-alignment": 32, "type": { "tag": "struct", "name": "", "id": 52, "location": "/usr/include/yaml.h:1138:5", "bit-size": 128, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "start", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "field", "name": "end", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "field", "name": "pointer", "bit-offset": 64, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "field", "name": "last", "bit-offset": 96, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }] } }, { "tag": "field", "name": "unread", "bit-offset": 672, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "size_t" } }, { "tag": "field", "name": "raw_buffer", "bit-offset": 704, "bit-size": 128, "bit-alignment": 32, "type": { "tag": "struct", "name": "", "id": 53, "location": "/usr/include/yaml.h:1153:5", "bit-size": 128, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "start", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": ":unsigned-char" } } }, { "tag": "field", "name": "end", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": ":unsigned-char" } } }, { "tag": "field", "name": "pointer", "bit-offset": 64, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": ":unsigned-char" } } }, { "tag": "field", "name": "last", "bit-offset": 96, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": ":unsigned-char" } } }] } }, { "tag": "field", "name": "encoding", "bit-offset": 832, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "yaml_encoding_t" } }, { "tag": "field", "name": "offset", "bit-offset": 864, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "size_t" } }, { "tag": "field", "name": "mark", "bit-offset": 896, "bit-size": 96, "bit-alignment": 32, "type": { "tag": "yaml_mark_t" } }, { "tag": "field", "name": "stream_start_produced", "bit-offset": 992, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "stream_end_produced", "bit-offset": 1024, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "flow_level", "bit-offset": 1056, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "tokens", "bit-offset": 1088, "bit-size": 128, "bit-alignment": 32, "type": { "tag": "struct", "name": "", "id": 54, "location": "/usr/include/yaml.h:1192:5", "bit-size": 128, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "start", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_token_t" } } }, { "tag": "field", "name": "end", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_token_t" } } }, { "tag": "field", "name": "head", "bit-offset": 64, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_token_t" } } }, { "tag": "field", "name": "tail", "bit-offset": 96, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_token_t" } } }] } }, { "tag": "field", "name": "tokens_parsed", "bit-offset": 1216, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "size_t" } }, { "tag": "field", "name": "token_available", "bit-offset": 1248, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "indents", "bit-offset": 1280, "bit-size": 96, "bit-alignment": 32, "type": { "tag": "struct", "name": "", "id": 55, "location": "/usr/include/yaml.h:1210:5", "bit-size": 96, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "start", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": ":int" } } }, { "tag": "field", "name": "end", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": ":int" } } }, { "tag": "field", "name": "top", "bit-offset": 64, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": ":int" } } }] } }, { "tag": "field", "name": "indent", "bit-offset": 1376, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "simple_key_allowed", "bit-offset": 1408, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "simple_keys", "bit-offset": 1440, "bit-size": 96, "bit-alignment": 32, "type": { "tag": "struct", "name": "", "id": 56, "location": "/usr/include/yaml.h:1226:5", "bit-size": 96, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "start", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_simple_key_t" } } }, { "tag": "field", "name": "end", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_simple_key_t" } } }, { "tag": "field", "name": "top", "bit-offset": 64, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_simple_key_t" } } }] } }, { "tag": "field", "name": "states", "bit-offset": 1536, "bit-size": 96, "bit-alignment": 32, "type": { "tag": "struct", "name": "", "id": 57, "location": "/usr/include/yaml.h:1245:5", "bit-size": 96, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "start", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_parser_state_t" } } }, { "tag": "field", "name": "end", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_parser_state_t" } } }, { "tag": "field", "name": "top", "bit-offset": 64, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_parser_state_t" } } }] } }, { "tag": "field", "name": "state", "bit-offset": 1632, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "yaml_parser_state_t" } }, { "tag": "field", "name": "marks", "bit-offset": 1664, "bit-size": 96, "bit-alignment": 32, "type": { "tag": "struct", "name": "", "id": 58, "location": "/usr/include/yaml.h:1258:5", "bit-size": 96, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "start", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_mark_t" } } }, { "tag": "field", "name": "end", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_mark_t" } } }, { "tag": "field", "name": "top", "bit-offset": 64, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_mark_t" } } }] } }, { "tag": "field", "name": "tag_directives", "bit-offset": 1760, "bit-size": 96, "bit-alignment": 32, "type": { "tag": "struct", "name": "", "id": 59, "location": "/usr/include/yaml.h:1268:5", "bit-size": 96, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "start", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_tag_directive_t" } } }, { "tag": "field", "name": "end", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_tag_directive_t" } } }, { "tag": "field", "name": "top", "bit-offset": 64, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_tag_directive_t" } } }] } }, { "tag": "field", "name": "aliases", "bit-offset": 1856, "bit-size": 96, "bit-alignment": 32, "type": { "tag": "struct", "name": "", "id": 60, "location": "/usr/include/yaml.h:1287:5", "bit-size": 96, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "start", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_alias_data_t" } } }, { "tag": "field", "name": "end", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_alias_data_t" } } }, { "tag": "field", "name": "top", "bit-offset": 64, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_alias_data_t" } } }] } }, { "tag": "field", "name": "document", "bit-offset": 1952, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_document_t" } } }] },
484
+{ "tag": "typedef", "name": "yaml_parser_t", "location": "/usr/include/yaml.h:1303:3", "type": { "tag": ":struct", "name": "yaml_parser_s", "id": 0 } },
485
+{ "tag": "function", "name": "yaml_parser_initialize", "location": "/usr/include/yaml.h:1317:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "parser", "type": { "tag": ":pointer", "type": { "tag": "yaml_parser_t" } } }], "return-type": { "tag": ":int" } },
486
+{ "tag": "function", "name": "yaml_parser_delete", "location": "/usr/include/yaml.h:1326:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "parser", "type": { "tag": ":pointer", "type": { "tag": "yaml_parser_t" } } }], "return-type": { "tag": ":void" } },
487
+{ "tag": "function", "name": "yaml_parser_set_input_string", "location": "/usr/include/yaml.h:1341:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "parser", "type": { "tag": ":pointer", "type": { "tag": "yaml_parser_t" } } }, { "tag": "parameter", "name": "input", "type": { "tag": ":pointer", "type": { "tag": ":unsigned-char" } } }, { "tag": "parameter", "name": "size", "type": { "tag": "size_t" } }], "return-type": { "tag": ":void" } },
488
+{ "tag": "function", "name": "yaml_parser_set_input_file", "location": "/usr/include/yaml.h:1355:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "parser", "type": { "tag": ":pointer", "type": { "tag": "yaml_parser_t" } } }, { "tag": "parameter", "name": "file", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":void" } },
489
+{ "tag": "function", "name": "yaml_parser_set_input", "location": "/usr/include/yaml.h:1367:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "parser", "type": { "tag": ":pointer", "type": { "tag": "yaml_parser_t" } } }, { "tag": "parameter", "name": "handler", "type": { "tag": ":function-pointer" } }, { "tag": "parameter", "name": "data", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": ":void" } },
490
+{ "tag": "function", "name": "yaml_parser_set_encoding", "location": "/usr/include/yaml.h:1378:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "parser", "type": { "tag": ":pointer", "type": { "tag": "yaml_parser_t" } } }, { "tag": "parameter", "name": "encoding", "type": { "tag": "yaml_encoding_t" } }], "return-type": { "tag": ":void" } },
491
+{ "tag": "function", "name": "yaml_parser_scan", "location": "/usr/include/yaml.h:1402:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "parser", "type": { "tag": ":pointer", "type": { "tag": "yaml_parser_t" } } }, { "tag": "parameter", "name": "token", "type": { "tag": ":pointer", "type": { "tag": "yaml_token_t" } } }], "return-type": { "tag": ":int" } },
492
+{ "tag": "function", "name": "yaml_parser_parse", "location": "/usr/include/yaml.h:1426:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "parser", "type": { "tag": ":pointer", "type": { "tag": "yaml_parser_t" } } }, { "tag": "parameter", "name": "event", "type": { "tag": ":pointer", "type": { "tag": "yaml_event_t" } } }], "return-type": { "tag": ":int" } },
493
+{ "tag": "function", "name": "yaml_parser_load", "location": "/usr/include/yaml.h:1451:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "parser", "type": { "tag": ":pointer", "type": { "tag": "yaml_parser_t" } } }, { "tag": "parameter", "name": "document", "type": { "tag": ":pointer", "type": { "tag": "yaml_document_t" } } }], "return-type": { "tag": ":int" } },
494
+{ "tag": "typedef", "name": "yaml_write_handler_t", "location": "/usr/include/yaml.h:1476:13", "type": { "tag": ":function" } },
495
+{ "tag": "enum", "name": "yaml_emitter_state_e", "id": 0, "location": "/usr/include/yaml.h:1479:14", "fields": [{ "tag": "field", "name": "YAML_EMIT_STREAM_START_STATE", "value": 0 }, { "tag": "field", "name": "YAML_EMIT_FIRST_DOCUMENT_START_STATE", "value": 1 }, { "tag": "field", "name": "YAML_EMIT_DOCUMENT_START_STATE", "value": 2 }, { "tag": "field", "name": "YAML_EMIT_DOCUMENT_CONTENT_STATE", "value": 3 }, { "tag": "field", "name": "YAML_EMIT_DOCUMENT_END_STATE", "value": 4 }, { "tag": "field", "name": "YAML_EMIT_FLOW_SEQUENCE_FIRST_ITEM_STATE", "value": 5 }, { "tag": "field", "name": "YAML_EMIT_FLOW_SEQUENCE_ITEM_STATE", "value": 6 }, { "tag": "field", "name": "YAML_EMIT_FLOW_MAPPING_FIRST_KEY_STATE", "value": 7 }, { "tag": "field", "name": "YAML_EMIT_FLOW_MAPPING_KEY_STATE", "value": 8 }, { "tag": "field", "name": "YAML_EMIT_FLOW_MAPPING_SIMPLE_VALUE_STATE", "value": 9 }, { "tag": "field", "name": "YAML_EMIT_FLOW_MAPPING_VALUE_STATE", "value": 10 }, { "tag": "field", "name": "YAML_EMIT_BLOCK_SEQUENCE_FIRST_ITEM_STATE", "value": 11 }, { "tag": "field", "name": "YAML_EMIT_BLOCK_SEQUENCE_ITEM_STATE", "value": 12 }, { "tag": "field", "name": "YAML_EMIT_BLOCK_MAPPING_FIRST_KEY_STATE", "value": 13 }, { "tag": "field", "name": "YAML_EMIT_BLOCK_MAPPING_KEY_STATE", "value": 14 }, { "tag": "field", "name": "YAML_EMIT_BLOCK_MAPPING_SIMPLE_VALUE_STATE", "value": 15 }, { "tag": "field", "name": "YAML_EMIT_BLOCK_MAPPING_VALUE_STATE", "value": 16 }, { "tag": "field", "name": "YAML_EMIT_END_STATE", "value": 17 }] },
496
+{ "tag": "typedef", "name": "yaml_emitter_state_t", "location": "/usr/include/yaml.h:1516:3", "type": { "tag": ":enum", "name": "yaml_emitter_state_e", "id": 0 } },
497
+{ "tag": "struct", "name": "yaml_emitter_s", "id": 0, "location": "/usr/include/yaml.h:1525:16", "bit-size": 2112, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "error", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "yaml_error_type_t" } }, { "tag": "field", "name": "problem", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "field", "name": "write_handler", "bit-offset": 64, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":function-pointer" } }, { "tag": "field", "name": "write_handler_data", "bit-offset": 96, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "field", "name": "output", "bit-offset": 128, "bit-size": 96, "bit-alignment": 32, "type": { "tag": "union", "name": "", "id": 61, "location": "/usr/include/yaml.h:1553:5", "bit-size": 96, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "string", "bit-offset": 0, "bit-size": 96, "bit-alignment": 32, "type": { "tag": "struct", "name": "", "id": 62, "location": "/usr/include/yaml.h:1555:9", "bit-size": 96, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "buffer", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": ":unsigned-char" } } }, { "tag": "field", "name": "size", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "size_t" } }, { "tag": "field", "name": "size_written", "bit-offset": 64, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "size_t" } } }] } }, { "tag": "field", "name": "file", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }] } }, { "tag": "field", "name": "buffer", "bit-offset": 224, "bit-size": 128, "bit-alignment": 32, "type": { "tag": "struct", "name": "", "id": 63, "location": "/usr/include/yaml.h:1569:5", "bit-size": 128, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "start", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "field", "name": "end", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "field", "name": "pointer", "bit-offset": 64, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "field", "name": "last", "bit-offset": 96, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }] } }, { "tag": "field", "name": "raw_buffer", "bit-offset": 352, "bit-size": 128, "bit-alignment": 32, "type": { "tag": "struct", "name": "", "id": 64, "location": "/usr/include/yaml.h:1581:5", "bit-size": 128, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "start", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": ":unsigned-char" } } }, { "tag": "field", "name": "end", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": ":unsigned-char" } } }, { "tag": "field", "name": "pointer", "bit-offset": 64, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": ":unsigned-char" } } }, { "tag": "field", "name": "last", "bit-offset": 96, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": ":unsigned-char" } } }] } }, { "tag": "field", "name": "encoding", "bit-offset": 480, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "yaml_encoding_t" } }, { "tag": "field", "name": "canonical", "bit-offset": 512, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "best_indent", "bit-offset": 544, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "best_width", "bit-offset": 576, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "unicode", "bit-offset": 608, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "line_break", "bit-offset": 640, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "yaml_break_t" } }, { "tag": "field", "name": "states", "bit-offset": 672, "bit-size": 96, "bit-alignment": 32, "type": { "tag": "struct", "name": "", "id": 65, "location": "/usr/include/yaml.h:1616:5", "bit-size": 96, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "start", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_emitter_state_t" } } }, { "tag": "field", "name": "end", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_emitter_state_t" } } }, { "tag": "field", "name": "top", "bit-offset": 64, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_emitter_state_t" } } }] } }, { "tag": "field", "name": "state", "bit-offset": 768, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "yaml_emitter_state_t" } }, { "tag": "field", "name": "events", "bit-offset": 800, "bit-size": 128, "bit-alignment": 32, "type": { "tag": "struct", "name": "", "id": 66, "location": "/usr/include/yaml.h:1629:5", "bit-size": 128, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "start", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_event_t" } } }, { "tag": "field", "name": "end", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_event_t" } } }, { "tag": "field", "name": "head", "bit-offset": 64, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_event_t" } } }, { "tag": "field", "name": "tail", "bit-offset": 96, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_event_t" } } }] } }, { "tag": "field", "name": "indents", "bit-offset": 928, "bit-size": 96, "bit-alignment": 32, "type": { "tag": "struct", "name": "", "id": 67, "location": "/usr/include/yaml.h:1641:5", "bit-size": 96, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "start", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": ":int" } } }, { "tag": "field", "name": "end", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": ":int" } } }, { "tag": "field", "name": "top", "bit-offset": 64, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": ":int" } } }] } }, { "tag": "field", "name": "tag_directives", "bit-offset": 1024, "bit-size": 96, "bit-alignment": 32, "type": { "tag": "struct", "name": "", "id": 68, "location": "/usr/include/yaml.h:1651:5", "bit-size": 96, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "start", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_tag_directive_t" } } }, { "tag": "field", "name": "end", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_tag_directive_t" } } }, { "tag": "field", "name": "top", "bit-offset": 64, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_tag_directive_t" } } }] } }, { "tag": "field", "name": "indent", "bit-offset": 1120, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "flow_level", "bit-offset": 1152, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "root_context", "bit-offset": 1184, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "sequence_context", "bit-offset": 1216, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "mapping_context", "bit-offset": 1248, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "simple_key_context", "bit-offset": 1280, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "line", "bit-offset": 1312, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "column", "bit-offset": 1344, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "whitespace", "bit-offset": 1376, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "indention", "bit-offset": 1408, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "open_ended", "bit-offset": 1440, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "anchor_data", "bit-offset": 1472, "bit-size": 96, "bit-alignment": 32, "type": { "tag": "struct", "name": "", "id": 69, "location": "/usr/include/yaml.h:1687:5", "bit-size": 96, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "anchor", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "field", "name": "anchor_length", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "size_t" } }, { "tag": "field", "name": "alias", "bit-offset": 64, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }] } }, { "tag": "field", "name": "tag_data", "bit-offset": 1568, "bit-size": 128, "bit-alignment": 32, "type": { "tag": "struct", "name": "", "id": 70, "location": "/usr/include/yaml.h:1697:5", "bit-size": 128, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "handle", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "field", "name": "handle_length", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "size_t" } }, { "tag": "field", "name": "suffix", "bit-offset": 64, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "field", "name": "suffix_length", "bit-offset": 96, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "size_t" } }] } }, { "tag": "field", "name": "scalar_data", "bit-offset": 1696, "bit-size": 256, "bit-alignment": 32, "type": { "tag": "struct", "name": "", "id": 71, "location": "/usr/include/yaml.h:1709:5", "bit-size": 256, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "value", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "field", "name": "length", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "size_t" } }, { "tag": "field", "name": "multiline", "bit-offset": 64, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "flow_plain_allowed", "bit-offset": 96, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "block_plain_allowed", "bit-offset": 128, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "single_quoted_allowed", "bit-offset": 160, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "block_allowed", "bit-offset": 192, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "style", "bit-offset": 224, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "yaml_scalar_style_t" } }] } }, { "tag": "field", "name": "opened", "bit-offset": 1952, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "closed", "bit-offset": 1984, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "anchors", "bit-offset": 2016, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "struct", "name": "", "id": 72, "location": "/usr/include/yaml.h:1743:5", "bit-size": 96, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "references", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "anchor", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "serialized", "bit-offset": 64, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }] } } }, { "tag": "field", "name": "last_anchor_id", "bit-offset": 2048, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "document", "bit-offset": 2080, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_document_t" } } }] },
498
+{ "tag": "typedef", "name": "yaml_emitter_t", "location": "/usr/include/yaml.h:1762:3", "type": { "tag": ":struct", "name": "yaml_emitter_s", "id": 0 } },
499
+{ "tag": "function", "name": "yaml_emitter_initialize", "location": "/usr/include/yaml.h:1776:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "emitter", "type": { "tag": ":pointer", "type": { "tag": "yaml_emitter_t" } } }], "return-type": { "tag": ":int" } },
500
+{ "tag": "function", "name": "yaml_emitter_delete", "location": "/usr/include/yaml.h:1785:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "emitter", "type": { "tag": ":pointer", "type": { "tag": "yaml_emitter_t" } } }], "return-type": { "tag": ":void" } },
501
+{ "tag": "function", "name": "yaml_emitter_set_output_string", "location": "/usr/include/yaml.h:1803:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "emitter", "type": { "tag": ":pointer", "type": { "tag": "yaml_emitter_t" } } }, { "tag": "parameter", "name": "output", "type": { "tag": ":pointer", "type": { "tag": ":unsigned-char" } } }, { "tag": "parameter", "name": "size", "type": { "tag": "size_t" } }, { "tag": "parameter", "name": "size_written", "type": { "tag": ":pointer", "type": { "tag": "size_t" } } }], "return-type": { "tag": ":void" } },
502
+{ "tag": "function", "name": "yaml_emitter_set_output_file", "location": "/usr/include/yaml.h:1817:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "emitter", "type": { "tag": ":pointer", "type": { "tag": "yaml_emitter_t" } } }, { "tag": "parameter", "name": "file", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":void" } },
503
+{ "tag": "function", "name": "yaml_emitter_set_output", "location": "/usr/include/yaml.h:1829:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "emitter", "type": { "tag": ":pointer", "type": { "tag": "yaml_emitter_t" } } }, { "tag": "parameter", "name": "handler", "type": { "tag": ":function-pointer" } }, { "tag": "parameter", "name": "data", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": ":void" } },
504
+{ "tag": "function", "name": "yaml_emitter_set_encoding", "location": "/usr/include/yaml.h:1840:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "emitter", "type": { "tag": ":pointer", "type": { "tag": "yaml_emitter_t" } } }, { "tag": "parameter", "name": "encoding", "type": { "tag": "yaml_encoding_t" } }], "return-type": { "tag": ":void" } },
505
+{ "tag": "function", "name": "yaml_emitter_set_canonical", "location": "/usr/include/yaml.h:1851:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "emitter", "type": { "tag": ":pointer", "type": { "tag": "yaml_emitter_t" } } }, { "tag": "parameter", "name": "canonical", "type": { "tag": ":int" } }], "return-type": { "tag": ":void" } },
506
+{ "tag": "function", "name": "yaml_emitter_set_indent", "location": "/usr/include/yaml.h:1861:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "emitter", "type": { "tag": ":pointer", "type": { "tag": "yaml_emitter_t" } } }, { "tag": "parameter", "name": "indent", "type": { "tag": ":int" } }], "return-type": { "tag": ":void" } },
507
+{ "tag": "function", "name": "yaml_emitter_set_width", "location": "/usr/include/yaml.h:1871:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "emitter", "type": { "tag": ":pointer", "type": { "tag": "yaml_emitter_t" } } }, { "tag": "parameter", "name": "width", "type": { "tag": ":int" } }], "return-type": { "tag": ":void" } },
508
+{ "tag": "function", "name": "yaml_emitter_set_unicode", "location": "/usr/include/yaml.h:1881:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "emitter", "type": { "tag": ":pointer", "type": { "tag": "yaml_emitter_t" } } }, { "tag": "parameter", "name": "unicode", "type": { "tag": ":int" } }], "return-type": { "tag": ":void" } },
509
+{ "tag": "function", "name": "yaml_emitter_set_break", "location": "/usr/include/yaml.h:1891:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "emitter", "type": { "tag": ":pointer", "type": { "tag": "yaml_emitter_t" } } }, { "tag": "parameter", "name": "line_break", "type": { "tag": "yaml_break_t" } }], "return-type": { "tag": ":void" } },
510
+{ "tag": "function", "name": "yaml_emitter_emit", "location": "/usr/include/yaml.h:1908:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "emitter", "type": { "tag": ":pointer", "type": { "tag": "yaml_emitter_t" } } }, { "tag": "parameter", "name": "event", "type": { "tag": ":pointer", "type": { "tag": "yaml_event_t" } } }], "return-type": { "tag": ":int" } },
511
+{ "tag": "function", "name": "yaml_emitter_open", "location": "/usr/include/yaml.h:1921:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "emitter", "type": { "tag": ":pointer", "type": { "tag": "yaml_emitter_t" } } }], "return-type": { "tag": ":int" } },
512
+{ "tag": "function", "name": "yaml_emitter_close", "location": "/usr/include/yaml.h:1934:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "emitter", "type": { "tag": ":pointer", "type": { "tag": "yaml_emitter_t" } } }], "return-type": { "tag": ":int" } },
513
+{ "tag": "function", "name": "yaml_emitter_dump", "location": "/usr/include/yaml.h:1951:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "emitter", "type": { "tag": ":pointer", "type": { "tag": "yaml_emitter_t" } } }, { "tag": "parameter", "name": "document", "type": { "tag": ":pointer", "type": { "tag": "yaml_document_t" } } }], "return-type": { "tag": ":int" } },
514
+{ "tag": "function", "name": "yaml_emitter_flush", "location": "/usr/include/yaml.h:1962:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "emitter", "type": { "tag": ":pointer", "type": { "tag": "yaml_emitter_t" } } }], "return-type": { "tag": ":int" } }
515
+]
0 516
new file mode 100755
... ...
@@ -0,0 +1,652 @@
1
+/* /usr/include/libio.h:103:9 */
2
+#define _IO_LINKED 0x80
3
+
4
+/* /usr/include/endian.h:33:9 */
5
+#define __PDP_ENDIAN 3412
6
+
7
+/* /usr/include/bits/types.h:24:9 */
8
+#define _BITS_TYPES_H 1
9
+
10
+/* /usr/include/bits/byteswap.h:24:9 */
11
+#define _BITS_BYTESWAP_H 1
12
+
13
+/* /usr/include/bits/waitflags.h:37:9 */
14
+#define __WCLONE 0x80000000
15
+
16
+/* /usr/include/time.h:69:10 */
17
+#define __time_t_defined 1
18
+
19
+/* /usr/include/endian.h:19:9 */
20
+#define _ENDIAN_H 1
21
+
22
+/* /usr/include/endian.h:31:9 */
23
+#define __LITTLE_ENDIAN 1234
24
+
25
+/* /usr/include/time.h:53:10 */
26
+#define __clock_t_defined 1
27
+
28
+/* /usr/include/endian.h:32:9 */
29
+#define __BIG_ENDIAN 4321
30
+
31
+/* /usr/include/time.h:86:10 */
32
+#define __clockid_t_defined 1
33
+
34
+/* /usr/include/time.h:98:10 */
35
+#define __timer_t_defined 1
36
+
37
+/* /usr/include/time.h:114:10 */
38
+#define __timespec_defined 1
39
+
40
+/* /usr/include/bits/waitstatus.h:58:9 */
41
+#define __W_CONTINUED 0xffff
42
+
43
+/* /usr/include/bits/waitstatus.h:59:9 */
44
+#define __WCOREFLAG 0x80
45
+
46
+/* /usr/include/stdc-predef.h:19:9 */
47
+#define _STDC_PREDEF_H 1
48
+
49
+/* /usr/include/libio.h:84:9 */
50
+#define _IOS_NOREPLACE 64
51
+
52
+/* /usr/include/bits/predefs.h:27:9 */
53
+#define __STDC_IEC_559__ 1
54
+
55
+/* /usr/include/libio.h:93:9 */
56
+#define _IO_MAGIC 0xFBAD0000
57
+
58
+/* /usr/include/bits/predefs.h:28:9 */
59
+#define __STDC_IEC_559_COMPLEX__ 1
60
+
61
+/* /usr/include/libio.h:94:9 */
62
+#define _OLD_STDIO_MAGIC 0xFABC0000
63
+
64
+/* /usr/include/libio.h:79:9 */
65
+#define _IOS_OUTPUT 2
66
+
67
+/* /usr/include/libio.h:80:9 */
68
+#define _IOS_ATEND 4
69
+
70
+/* /usr/include/libio.h:81:9 */
71
+#define _IOS_APPEND 8
72
+
73
+/* /usr/include/libio.h:82:9 */
74
+#define _IOS_TRUNC 16
75
+
76
+/* /usr/include/libio.h:83:9 */
77
+#define _IOS_NOCREATE 32
78
+
79
+/* /usr/include/libio.h:60:9 */
80
+#define _IO_UNIFIED_JUMPTABLES 1
81
+
82
+/* /usr/include/libio.h:63:10 */
83
+#define EOF (-1)
84
+
85
+/* /usr/include/libio.h:78:9 */
86
+#define _IOS_INPUT 1
87
+
88
+/* /usr/include/stdc-predef.h:34:9 */
89
+#define __STDC_ISO_10646__ 201103L
90
+
91
+/* /usr/include/stdc-predef.h:37:9 */
92
+#define __STDC_NO_THREADS__ 1
93
+
94
+/* /usr/include/features.h:354:9 */
95
+#define __GLIBC__ 2
96
+
97
+/* /usr/include/features.h:350:9 */
98
+#define __GNU_LIBRARY__ 6
99
+
100
+/* /usr/include/features.h:355:9 */
101
+#define __GLIBC_MINOR__ 17
102
+
103
+/* /usr/include/libio.h:85:9 */
104
+#define _IOS_BIN 128
105
+
106
+/* /usr/include/features.h:365:10 */
107
+#define __GLIBC_HAVE_LONG_LONG 1
108
+
109
+/* /usr/include/sys/cdefs.h:20:9 */
110
+#define _SYS_CDEFS_H 1
111
+
112
+/* /usr/include/libio.h:100:9 */
113
+#define _IO_EOF_SEEN 0x10
114
+
115
+/* /usr/include/libio.h:101:9 */
116
+#define _IO_ERR_SEEN 0x20
117
+
118
+/* /usr/include/libio.h:95:9 */
119
+#define _IO_MAGIC_MASK 0xFFFF0000
120
+
121
+/* /usr/include/libio.h:99:9 */
122
+#define _IO_NO_WRITES 8
123
+
124
+/* /usr/include/bits/pthreadtypes.h:19:9 */
125
+#define _BITS_PTHREADTYPES_H 1
126
+
127
+/* /usr/include/libio.h:96:9 */
128
+#define _IO_USER_BUF 1
129
+
130
+/* /usr/include/features.h:309:10 */
131
+#define __USE_BSD 1
132
+
133
+/* /usr/include/bits/pthreadtypes.h:46:10 */
134
+#define __SIZEOF_PTHREAD_ATTR_T 36
135
+
136
+/* /usr/include/bits/pthreadtypes.h:47:10 */
137
+#define __SIZEOF_PTHREAD_MUTEX_T 24
138
+
139
+/* /usr/include/bits/pthreadtypes.h:48:10 */
140
+#define __SIZEOF_PTHREAD_MUTEXATTR_T 4
141
+
142
+/* /usr/include/libio.h:97:9 */
143
+#define _IO_UNBUFFERED 2
144
+
145
+/* /usr/include/bits/pthreadtypes.h:49:10 */
146
+#define __SIZEOF_PTHREAD_COND_T 48
147
+
148
+/* /usr/include/features.h:261:10 */
149
+#define __USE_XOPEN2K8 1
150
+
151
+/* /usr/include/bits/pthreadtypes.h:50:10 */
152
+#define __SIZEOF_PTHREAD_CONDATTR_T 4
153
+
154
+/* /usr/include/bits/pthreadtypes.h:51:10 */
155
+#define __SIZEOF_PTHREAD_RWLOCK_T 32
156
+
157
+/* /usr/include/features.h:253:10 */
158
+#define __USE_XOPEN2K 1
159
+
160
+/* /usr/include/libio.h:98:9 */
161
+#define _IO_NO_READS 4
162
+
163
+/* /usr/include/bits/pthreadtypes.h:52:10 */
164
+#define __SIZEOF_PTHREAD_RWLOCKATTR_T 8
165
+
166
+/* /usr/include/bits/pthreadtypes.h:54:10 */
167
+#define __SIZEOF_PTHREAD_BARRIERATTR_T 4
168
+
169
+/* /usr/include/string.h:23:9 */
170
+#define _STRING_H 1
171
+
172
+/* /usr/include/bits/typesizes.h:86:9 */
173
+#define __FD_SETSIZE 1024
174
+
175
+/* /usr/include/bits/pthreadtypes.h:70:10 */
176
+#define __have_pthread_attr_t 1
177
+
178
+/* /usr/include/bits/pthreadtypes.h:53:10 */
179
+#define __SIZEOF_PTHREAD_BARRIER_T 20
180
+
181
+/* /usr/include/sys/sysmacros.h:21:9 */
182
+#define _SYS_SYSMACROS_H 1
183
+
184
+/* /usr/include/xlocale.h:21:9 */
185
+#define _XLOCALE_H 1
186
+
187
+/* /usr/include/features.h:257:10 */
188
+#define __USE_ISOC99 1
189
+
190
+/* /usr/include/features.h:19:9 */
191
+#define _FEATURES_H 1
192
+
193
+/* /usr/include/stdlib.h:37:9 */
194
+#define _STDLIB_H 1
195
+
196
+/* /usr/include/features.h:249:10 */
197
+#define __USE_POSIX199506 1
198
+
199
+/* /usr/include/features.h:241:10 */
200
+#define __USE_POSIX2 1
201
+
202
+/* /usr/include/features.h:245:10 */
203
+#define __USE_POSIX199309 1
204
+
205
+/* /usr/include/features.h:255:10 */
206
+#define __USE_ISOC95 1
207
+
208
+/* /usr/include/features.h:237:10 */
209
+#define __USE_POSIX 1
210
+
211
+/* /usr/include/stdio.h:120:9 */
212
+#define _IOFBF 0
213
+
214
+/* /usr/include/bits/waitflags.h:32:9 */
215
+#define WNOWAIT 0x01000000
216
+
217
+/* /usr/include/bits/waitflags.h:31:9 */
218
+#define WCONTINUED 8
219
+
220
+/* /usr/include/bits/waitflags.h:30:9 */
221
+#define WEXITED 4
222
+
223
+/* /usr/include/bits/waitflags.h:34:9 */
224
+#define __WNOTHREAD 0x20000000
225
+
226
+/* /usr/include/bits/waitflags.h:25:9 */
227
+#define WNOHANG 1
228
+
229
+/* /usr/include/bits/typesizes.h:24:9 */
230
+#define _BITS_TYPESIZES_H 1
231
+
232
+/* /usr/include/bits/waitflags.h:29:9 */
233
+#define WSTOPPED 2
234
+
235
+/* /usr/include/bits/waitflags.h:26:9 */
236
+#define WUNTRACED 2
237
+
238
+/* /usr/include/sys/select.h:22:9 */
239
+#define _SYS_SELECT_H 1
240
+
241
+/* /usr/include/bits/time.h:25:11 */
242
+#define _STRUCT_TIMEVAL 1
243
+
244
+/* /usr/include/bits/waitflags.h:36:9 */
245
+#define __WALL 0x40000000
246
+
247
+/* /usr/include/sys/select.h:59:9 */
248
+#define __NFDBITS (8*(int)sizeof(__fd_mask))
249
+
250
+/* /usr/include/bits/stdio_lim.h:28:11 */
251
+#define L_ctermid 9
252
+
253
+/* /usr/include/sys/types.h:211:9 */
254
+#define __BIT_TYPES_DEFINED__ 1
255
+
256
+/* /usr/include/bits/sigset.h:21:10 */
257
+#define _SIGSET_H_types 1
258
+
259
+/* /usr/include/stdio.h:122:9 */
260
+#define _IONBF 2
261
+
262
+/* /usr/include/bits/stdio_lim.h:23:10 */
263
+#define L_tmpnam 20
264
+
265
+/* /usr/include/libio.h:108:9 */
266
+#define _IO_IS_APPENDING 0x1000
267
+
268
+/* /usr/include/bits/stdio_lim.h:24:10 */
269
+#define TMP_MAX 238328
270
+
271
+/* /usr/include/libio.h:109:9 */
272
+#define _IO_IS_FILEBUF 0x2000
273
+
274
+/* /usr/include/bits/select.h:30:11 */
275
+#define __FD_ZERO_STOS "stosl"
276
+
277
+/* /usr/include/stdio.h:141:9 */
278
+#define SEEK_CUR 1
279
+
280
+/* /usr/include/libio.h:106:9 */
281
+#define _IO_TIED_PUT_GET 0x400
282
+
283
+/* /usr/include/stdio.h:140:9 */
284
+#define SEEK_SET 0
285
+
286
+/* /usr/include/libio.h:107:9 */
287
+#define _IO_CURRENTLY_PUTTING 0x800
288
+
289
+/* /usr/include/stdio.h:151:10 */
290
+#define P_tmpdir "/tmp"
291
+
292
+/* /usr/include/libio.h:114:9 */
293
+#define _IO_FLAGS2_NOTCANCEL 2
294
+
295
+/* /usr/include/libio.h:110:9 */
296
+#define _IO_BAD_SEEN 0x4000
297
+
298
+/* /usr/include/libio.h:111:9 */
299
+#define _IO_USER_LOCK 0x8000
300
+
301
+/* /usr/include/libio.h:113:9 */
302
+#define _IO_FLAGS2_MMAP 1
303
+
304
+/* /usr/include/libio.h:127:9 */
305
+#define _IO_LEFT 02
306
+
307
+/* /usr/include/libio.h:128:9 */
308
+#define _IO_RIGHT 04
309
+
310
+/* /usr/include/yaml.h:678:9 */
311
+#define YAML_SEQ_TAG "tag:yaml.org,2002:seq"
312
+
313
+/* /usr/include/libio.h:129:9 */
314
+#define _IO_INTERNAL 010
315
+
316
+/* /usr/include/stdio.h:121:9 */
317
+#define _IOLBF 1
318
+
319
+/* /usr/include/bits/sigset.h:27:10 */
320
+#define _SIGSET_NWORDS (1024/(8*sizeof(unsignedlongint)))
321
+
322
+/* /usr/include/libio.h:118:9 */
323
+#define _IO_FLAGS2_USER_WBUF 8
324
+
325
+/* /usr/include/libio.h:126:9 */
326
+#define _IO_SKIPWS 01
327
+
328
+/* /usr/include/bits/stdio_lim.h:37:10 */
329
+#define FOPEN_MAX 16
330
+
331
+/* /usr/include/yaml.h:675:9 */
332
+#define YAML_TIMESTAMP_TAG "tag:yaml.org,2002:timestamp"
333
+
334
+/* /usr/include/bits/stdio_lim.h:25:10 */
335
+#define FILENAME_MAX 4096
336
+
337
+/* /usr/include/libio.h:132:9 */
338
+#define _IO_HEX 0100
339
+
340
+/* /usr/include/libio.h:133:9 */
341
+#define _IO_SHOWBASE 0200
342
+
343
+/* /usr/include/yaml.h:669:9 */
344
+#define YAML_STR_TAG "tag:yaml.org,2002:str"
345
+
346
+/* /usr/include/yaml.h:671:9 */
347
+#define YAML_INT_TAG "tag:yaml.org,2002:int"
348
+
349
+/* /usr/include/libio.h:134:9 */
350
+#define _IO_SHOWPOINT 0400
351
+
352
+/* /usr/include/stdio.h:142:9 */
353
+#define SEEK_END 2
354
+
355
+/* /usr/include/libio.h:130:9 */
356
+#define _IO_DEC 020
357
+
358
+/* /usr/include/libio.h:131:9 */
359
+#define _IO_OCT 040
360
+
361
+/* /usr/include/yaml.h:667:9 */
362
+#define YAML_BOOL_TAG "tag:yaml.org,2002:bool"
363
+
364
+/* /usr/include/yaml.h:680:9 */
365
+#define YAML_MAP_TAG "tag:yaml.org,2002:map"
366
+
367
+/* /usr/include/libio.h:137:9 */
368
+#define _IO_SCIENTIFIC 04000
369
+
370
+/* /usr/include/libio.h:135:9 */
371
+#define _IO_UPPERCASE 01000
372
+
373
+/* /usr/include/libio.h:138:9 */
374
+#define _IO_FIXED 010000
375
+
376
+/* /usr/include/libio.h:136:9 */
377
+#define _IO_SHOWPOS 02000
378
+
379
+/* /usr/include/libio.h:142:9 */
380
+#define _IO_BOOLALPHA 0200000
381
+
382
+/* /usr/include/yaml.h:673:9 */
383
+#define YAML_FLOAT_TAG "tag:yaml.org,2002:float"
384
+
385
+/* /usr/include/libio.h:139:9 */
386
+#define _IO_UNITBUF 020000
387
+
388
+/* /usr/include/libio.h:140:9 */
389
+#define _IO_STDIO 040000
390
+
391
+/* /usr/include/libio.h:141:9 */
392
+#define _IO_DONT_CLOSE 0100000
393
+
394
+/* /usr/include/alloca.h:19:9 */
395
+#define _ALLOCA_H 1
396
+
397
+/* /usr/include/yaml.h:665:9 */
398
+#define YAML_NULL_TAG "tag:yaml.org,2002:null"
399
+
400
+/* /usr/include/_G_config.h:48:9 */
401
+#define _G_HAVE_MMAP 1
402
+
403
+/* /usr/include/features.h:317:10 */
404
+#define __USE_ATFILE 1
405
+
406
+/* /usr/include/features.h:305:10 */
407
+#define __USE_MISC 1
408
+
409
+/* /usr/include/features.h:313:10 */
410
+#define __USE_SVID 1
411
+
412
+/* /usr/include/_G_config.h:5:9 */
413
+#define _G_config_h 1
414
+
415
+/* /usr/include/features.h:336:10 */
416
+#define __USE_FORTIFY_LEVEL 0
417
+
418
+/* /usr/include/stdlib.h:133:9 */
419
+#define EXIT_FAILURE 1
420
+
421
+/* /usr/include/stdlib.h:128:9 */
422
+#define RAND_MAX 2147483647
423
+
424
+/* /usr/include/stdlib.h:134:9 */
425
+#define EXIT_SUCCESS 0
426
+
427
+/* /usr/include/wchar.h:80:10 */
428
+#define ____mbstate_t_defined 1
429
+
430
+/* /usr/include/stdlib.h:122:10 */
431
+#define __lldiv_t_defined 1
432
+
433
+/* /usr/include/features.h:133:9 */
434
+#define __USE_ANSI 1
435
+
436
+/* /usr/include/bits/wordsize.h:6:10 */
437
+#define __WORDSIZE 32
438
+
439
+/* /usr/include/stdlib.h:110:10 */
440
+#define __ldiv_t_defined 1
441
+
442
+/* /usr/include/features.h:223:10 */
443
+#define _POSIX_SOURCE 1
444
+
445
+/* /usr/include/features.h:188:10 */
446
+#define _BSD_SOURCE 1
447
+
448
+/* /usr/include/features.h:189:10 */
449
+#define _SVID_SOURCE 1
450
+
451
+/* /usr/include/features.h:231:11 */
452
+#define _POSIX_C_SOURCE 200809L
453
+
454
+/* /usr/include/features.h:233:10 */
455
+#define __USE_POSIX_IMPLICITLY 1
456
+
457
+/* /usr/include/_G_config.h:51:9 */
458
+#define _G_IO_IO_FILE_VERSION 0x20001
459
+
460
+/* /usr/include/_G_config.h:49:9 */
461
+#define _G_HAVE_MREMAP 1
462
+
463
+/* /usr/include/features.h:263:10 */
464
+#define _ATFILE_SOURCE 1
465
+
466
+/* /usr/include/_G_config.h:56:9 */
467
+#define _G_BUFSIZ 8192
468
+
469
+/* /usr/include/sys/types.h:23:9 */
470
+#define _SYS_TYPES_H 1
471
+
472
+/* /usr/include/stdio.h:26:10 */
473
+#define _STDIO_H 1
474
+
475
+/* /usr/include/stdio.h:66:10 */
476
+#define ____FILE_defined 1
477
+
478
+/* /usr/include/stdio.h:56:10 */
479
+#define __FILE_defined 1
480
+
481
+/* /usr/include/libio.h:102:9 */
482
+#define _IO_DELETE_DONT_CLOSE 0x40
483
+
484
+/* /usr/include/libio.h:105:9 */
485
+#define _IO_LINE_BUF 0x200
486
+
487
+/* /usr/include/libio.h:104:9 */
488
+#define _IO_IN_BACKUP 0x100
489
+
490
+const __int128_t __c2ffi__IO_LINKED = _IO_LINKED;
491
+const __int128_t __c2ffi___PDP_ENDIAN = __PDP_ENDIAN;
492
+const __int128_t __c2ffi__BITS_TYPES_H = _BITS_TYPES_H;
493
+const __int128_t __c2ffi__BITS_BYTESWAP_H = _BITS_BYTESWAP_H;
494
+const __int128_t __c2ffi___WCLONE = __WCLONE;
495
+const __int128_t __c2ffi___time_t_defined = __time_t_defined;
496
+const __int128_t __c2ffi__ENDIAN_H = _ENDIAN_H;
497
+const __int128_t __c2ffi___LITTLE_ENDIAN = __LITTLE_ENDIAN;
498
+const __int128_t __c2ffi___clock_t_defined = __clock_t_defined;
499
+const __int128_t __c2ffi___BIG_ENDIAN = __BIG_ENDIAN;
500
+const __int128_t __c2ffi___clockid_t_defined = __clockid_t_defined;
501
+const __int128_t __c2ffi___timer_t_defined = __timer_t_defined;
502
+const __int128_t __c2ffi___timespec_defined = __timespec_defined;
503
+const __int128_t __c2ffi___W_CONTINUED = __W_CONTINUED;
504
+const __int128_t __c2ffi___WCOREFLAG = __WCOREFLAG;
505
+const __int128_t __c2ffi__STDC_PREDEF_H = _STDC_PREDEF_H;
506
+const __int128_t __c2ffi__IOS_NOREPLACE = _IOS_NOREPLACE;
507
+const __int128_t __c2ffi___STDC_IEC_559__ = __STDC_IEC_559__;
508
+const __int128_t __c2ffi__IO_MAGIC = _IO_MAGIC;
509
+const __int128_t __c2ffi___STDC_IEC_559_COMPLEX__ = __STDC_IEC_559_COMPLEX__;
510
+const __int128_t __c2ffi__OLD_STDIO_MAGIC = _OLD_STDIO_MAGIC;
511
+const __int128_t __c2ffi__IOS_OUTPUT = _IOS_OUTPUT;
512
+const __int128_t __c2ffi__IOS_ATEND = _IOS_ATEND;
513
+const __int128_t __c2ffi__IOS_APPEND = _IOS_APPEND;
514
+const __int128_t __c2ffi__IOS_TRUNC = _IOS_TRUNC;
515
+const __int128_t __c2ffi__IOS_NOCREATE = _IOS_NOCREATE;
516
+const __int128_t __c2ffi__IO_UNIFIED_JUMPTABLES = _IO_UNIFIED_JUMPTABLES;
517
+const __int128_t __c2ffi_EOF = EOF;
518
+const __int128_t __c2ffi__IOS_INPUT = _IOS_INPUT;
519
+const __int128_t __c2ffi___STDC_ISO_10646__ = __STDC_ISO_10646__;
520
+const __int128_t __c2ffi___STDC_NO_THREADS__ = __STDC_NO_THREADS__;
521
+const __int128_t __c2ffi___GLIBC__ = __GLIBC__;
522
+const __int128_t __c2ffi___GNU_LIBRARY__ = __GNU_LIBRARY__;
523
+const __int128_t __c2ffi___GLIBC_MINOR__ = __GLIBC_MINOR__;
524
+const __int128_t __c2ffi__IOS_BIN = _IOS_BIN;
525
+const __int128_t __c2ffi___GLIBC_HAVE_LONG_LONG = __GLIBC_HAVE_LONG_LONG;
526
+const __int128_t __c2ffi__SYS_CDEFS_H = _SYS_CDEFS_H;
527
+const __int128_t __c2ffi__IO_EOF_SEEN = _IO_EOF_SEEN;
528
+const __int128_t __c2ffi__IO_ERR_SEEN = _IO_ERR_SEEN;
529
+const __int128_t __c2ffi__IO_MAGIC_MASK = _IO_MAGIC_MASK;
530
+const __int128_t __c2ffi__IO_NO_WRITES = _IO_NO_WRITES;
531
+const __int128_t __c2ffi__BITS_PTHREADTYPES_H = _BITS_PTHREADTYPES_H;
532
+const __int128_t __c2ffi__IO_USER_BUF = _IO_USER_BUF;
533
+const __int128_t __c2ffi___USE_BSD = __USE_BSD;
534
+const __int128_t __c2ffi___SIZEOF_PTHREAD_ATTR_T = __SIZEOF_PTHREAD_ATTR_T;
535
+const __int128_t __c2ffi___SIZEOF_PTHREAD_MUTEX_T = __SIZEOF_PTHREAD_MUTEX_T;
536
+const __int128_t __c2ffi___SIZEOF_PTHREAD_MUTEXATTR_T = __SIZEOF_PTHREAD_MUTEXATTR_T;
537
+const __int128_t __c2ffi__IO_UNBUFFERED = _IO_UNBUFFERED;
538
+const __int128_t __c2ffi___SIZEOF_PTHREAD_COND_T = __SIZEOF_PTHREAD_COND_T;
539
+const __int128_t __c2ffi___USE_XOPEN2K8 = __USE_XOPEN2K8;
540
+const __int128_t __c2ffi___SIZEOF_PTHREAD_CONDATTR_T = __SIZEOF_PTHREAD_CONDATTR_T;
541
+const __int128_t __c2ffi___SIZEOF_PTHREAD_RWLOCK_T = __SIZEOF_PTHREAD_RWLOCK_T;
542
+const __int128_t __c2ffi___USE_XOPEN2K = __USE_XOPEN2K;
543
+const __int128_t __c2ffi__IO_NO_READS = _IO_NO_READS;
544
+const __int128_t __c2ffi___SIZEOF_PTHREAD_RWLOCKATTR_T = __SIZEOF_PTHREAD_RWLOCKATTR_T;
545
+const __int128_t __c2ffi___SIZEOF_PTHREAD_BARRIERATTR_T = __SIZEOF_PTHREAD_BARRIERATTR_T;
546
+const __int128_t __c2ffi__STRING_H = _STRING_H;
547
+const __int128_t __c2ffi___FD_SETSIZE = __FD_SETSIZE;
548
+const __int128_t __c2ffi___have_pthread_attr_t = __have_pthread_attr_t;
549
+const __int128_t __c2ffi___SIZEOF_PTHREAD_BARRIER_T = __SIZEOF_PTHREAD_BARRIER_T;
550
+const __int128_t __c2ffi__SYS_SYSMACROS_H = _SYS_SYSMACROS_H;
551
+const __int128_t __c2ffi__XLOCALE_H = _XLOCALE_H;
552
+const __int128_t __c2ffi___USE_ISOC99 = __USE_ISOC99;
553
+const __int128_t __c2ffi__FEATURES_H = _FEATURES_H;
554
+const __int128_t __c2ffi__STDLIB_H = _STDLIB_H;
555
+const __int128_t __c2ffi___USE_POSIX199506 = __USE_POSIX199506;
556
+const __int128_t __c2ffi___USE_POSIX2 = __USE_POSIX2;
557
+const __int128_t __c2ffi___USE_POSIX199309 = __USE_POSIX199309;
558
+const __int128_t __c2ffi___USE_ISOC95 = __USE_ISOC95;
559
+const __int128_t __c2ffi___USE_POSIX = __USE_POSIX;
560
+const __int128_t __c2ffi__IOFBF = _IOFBF;
561
+const __int128_t __c2ffi_WNOWAIT = WNOWAIT;
562
+const __int128_t __c2ffi_WCONTINUED = WCONTINUED;
563
+const __int128_t __c2ffi_WEXITED = WEXITED;
564
+const __int128_t __c2ffi___WNOTHREAD = __WNOTHREAD;
565
+const __int128_t __c2ffi_WNOHANG = WNOHANG;
566
+const __int128_t __c2ffi__BITS_TYPESIZES_H = _BITS_TYPESIZES_H;
567
+const __int128_t __c2ffi_WSTOPPED = WSTOPPED;
568
+const __int128_t __c2ffi_WUNTRACED = WUNTRACED;
569
+const __int128_t __c2ffi__SYS_SELECT_H = _SYS_SELECT_H;
570
+const __int128_t __c2ffi__STRUCT_TIMEVAL = _STRUCT_TIMEVAL;
571
+const __int128_t __c2ffi___WALL = __WALL;
572
+const __int128_t __c2ffi___NFDBITS = __NFDBITS;
573
+const __int128_t __c2ffi_L_ctermid = L_ctermid;
574
+const __int128_t __c2ffi___BIT_TYPES_DEFINED__ = __BIT_TYPES_DEFINED__;
575
+const __int128_t __c2ffi__SIGSET_H_types = _SIGSET_H_types;
576
+const __int128_t __c2ffi__IONBF = _IONBF;
577
+const __int128_t __c2ffi_L_tmpnam = L_tmpnam;
578
+const __int128_t __c2ffi__IO_IS_APPENDING = _IO_IS_APPENDING;
579
+const __int128_t __c2ffi_TMP_MAX = TMP_MAX;
580
+const __int128_t __c2ffi__IO_IS_FILEBUF = _IO_IS_FILEBUF;
581
+const char* __c2ffi___FD_ZERO_STOS = __FD_ZERO_STOS;
582
+const __int128_t __c2ffi_SEEK_CUR = SEEK_CUR;
583
+const __int128_t __c2ffi__IO_TIED_PUT_GET = _IO_TIED_PUT_GET;
584
+const __int128_t __c2ffi_SEEK_SET = SEEK_SET;
585
+const __int128_t __c2ffi__IO_CURRENTLY_PUTTING = _IO_CURRENTLY_PUTTING;
586
+const char* __c2ffi_P_tmpdir = P_tmpdir;
587
+const __int128_t __c2ffi__IO_FLAGS2_NOTCANCEL = _IO_FLAGS2_NOTCANCEL;
588
+const __int128_t __c2ffi__IO_BAD_SEEN = _IO_BAD_SEEN;
589
+const __int128_t __c2ffi__IO_USER_LOCK = _IO_USER_LOCK;
590
+const __int128_t __c2ffi__IO_FLAGS2_MMAP = _IO_FLAGS2_MMAP;
591
+const __int128_t __c2ffi__IO_LEFT = _IO_LEFT;
592
+const __int128_t __c2ffi__IO_RIGHT = _IO_RIGHT;
593
+const char* __c2ffi_YAML_SEQ_TAG = YAML_SEQ_TAG;
594
+const __int128_t __c2ffi__IO_INTERNAL = _IO_INTERNAL;
595
+const __int128_t __c2ffi__IOLBF = _IOLBF;
596
+const __int128_t __c2ffi__SIGSET_NWORDS = _SIGSET_NWORDS;
597
+const __int128_t __c2ffi__IO_FLAGS2_USER_WBUF = _IO_FLAGS2_USER_WBUF;
598
+const __int128_t __c2ffi__IO_SKIPWS = _IO_SKIPWS;
599
+const __int128_t __c2ffi_FOPEN_MAX = FOPEN_MAX;
600
+const char* __c2ffi_YAML_TIMESTAMP_TAG = YAML_TIMESTAMP_TAG;
601
+const __int128_t __c2ffi_FILENAME_MAX = FILENAME_MAX;
602
+const __int128_t __c2ffi__IO_HEX = _IO_HEX;
603
+const __int128_t __c2ffi__IO_SHOWBASE = _IO_SHOWBASE;
604
+const char* __c2ffi_YAML_STR_TAG = YAML_STR_TAG;
605
+const char* __c2ffi_YAML_INT_TAG = YAML_INT_TAG;
606
+const __int128_t __c2ffi__IO_SHOWPOINT = _IO_SHOWPOINT;
607
+const __int128_t __c2ffi_SEEK_END = SEEK_END;
608
+const __int128_t __c2ffi__IO_DEC = _IO_DEC;
609
+const __int128_t __c2ffi__IO_OCT = _IO_OCT;
610
+const char* __c2ffi_YAML_BOOL_TAG = YAML_BOOL_TAG;
611
+const char* __c2ffi_YAML_MAP_TAG = YAML_MAP_TAG;
612
+const __int128_t __c2ffi__IO_SCIENTIFIC = _IO_SCIENTIFIC;
613
+const __int128_t __c2ffi__IO_UPPERCASE = _IO_UPPERCASE;
614
+const __int128_t __c2ffi__IO_FIXED = _IO_FIXED;
615
+const __int128_t __c2ffi__IO_SHOWPOS = _IO_SHOWPOS;
616
+const __int128_t __c2ffi__IO_BOOLALPHA = _IO_BOOLALPHA;
617
+const char* __c2ffi_YAML_FLOAT_TAG = YAML_FLOAT_TAG;
618
+const __int128_t __c2ffi__IO_UNITBUF = _IO_UNITBUF;
619
+const __int128_t __c2ffi__IO_STDIO = _IO_STDIO;
620
+const __int128_t __c2ffi__IO_DONT_CLOSE = _IO_DONT_CLOSE;
621
+const __int128_t __c2ffi__ALLOCA_H = _ALLOCA_H;
622
+const char* __c2ffi_YAML_NULL_TAG = YAML_NULL_TAG;
623
+const __int128_t __c2ffi__G_HAVE_MMAP = _G_HAVE_MMAP;
624
+const __int128_t __c2ffi___USE_ATFILE = __USE_ATFILE;
625
+const __int128_t __c2ffi___USE_MISC = __USE_MISC;
626
+const __int128_t __c2ffi___USE_SVID = __USE_SVID;
627
+const __int128_t __c2ffi__G_config_h = _G_config_h;
628
+const __int128_t __c2ffi___USE_FORTIFY_LEVEL = __USE_FORTIFY_LEVEL;
629
+const __int128_t __c2ffi_EXIT_FAILURE = EXIT_FAILURE;
630
+const __int128_t __c2ffi_RAND_MAX = RAND_MAX;
631
+const __int128_t __c2ffi_EXIT_SUCCESS = EXIT_SUCCESS;
632
+const __int128_t __c2ffi_____mbstate_t_defined = ____mbstate_t_defined;
633
+const __int128_t __c2ffi___lldiv_t_defined = __lldiv_t_defined;
634
+const __int128_t __c2ffi___USE_ANSI = __USE_ANSI;
635
+const __int128_t __c2ffi___WORDSIZE = __WORDSIZE;
636
+const __int128_t __c2ffi___ldiv_t_defined = __ldiv_t_defined;
637
+const __int128_t __c2ffi__POSIX_SOURCE = _POSIX_SOURCE;
638
+const __int128_t __c2ffi__BSD_SOURCE = _BSD_SOURCE;
639
+const __int128_t __c2ffi__SVID_SOURCE = _SVID_SOURCE;
640
+const __int128_t __c2ffi__POSIX_C_SOURCE = _POSIX_C_SOURCE;
641
+const __int128_t __c2ffi___USE_POSIX_IMPLICITLY = __USE_POSIX_IMPLICITLY;
642
+const __int128_t __c2ffi__G_IO_IO_FILE_VERSION = _G_IO_IO_FILE_VERSION;
643
+const __int128_t __c2ffi__G_HAVE_MREMAP = _G_HAVE_MREMAP;
644
+const __int128_t __c2ffi__ATFILE_SOURCE = _ATFILE_SOURCE;
645
+const __int128_t __c2ffi__G_BUFSIZ = _G_BUFSIZ;
646
+const __int128_t __c2ffi__SYS_TYPES_H = _SYS_TYPES_H;
647
+const __int128_t __c2ffi__STDIO_H = _STDIO_H;
648
+const __int128_t __c2ffi_____FILE_defined = ____FILE_defined;
649
+const __int128_t __c2ffi___FILE_defined = __FILE_defined;
650
+const __int128_t __c2ffi__IO_DELETE_DONT_CLOSE = _IO_DELETE_DONT_CLOSE;
651
+const __int128_t __c2ffi__IO_LINE_BUF = _IO_LINE_BUF;
652
+const __int128_t __c2ffi__IO_IN_BACKUP = _IO_IN_BACKUP;
0 653
new file mode 100755
... ...
@@ -0,0 +1,165 @@
1
+[
2
+{ "tag": "const", "name": "_IO_LINKED", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-win32.h:490:18", "type": { "tag": ":int" } },
3
+{ "tag": "const", "name": "__PDP_ENDIAN", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-win32.h:491:18", "type": { "tag": ":int" } },
4
+{ "tag": "const", "name": "_BITS_TYPES_H", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-win32.h:492:18", "type": { "tag": ":int" } },
5
+{ "tag": "const", "name": "_BITS_BYTESWAP_H", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-win32.h:493:18", "type": { "tag": ":int" } },
6
+{ "tag": "const", "name": "__WCLONE", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-win32.h:494:18", "type": { "tag": ":int" } },
7
+{ "tag": "const", "name": "__time_t_defined", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-win32.h:495:18", "type": { "tag": ":int" } },
8
+{ "tag": "const", "name": "_ENDIAN_H", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-win32.h:496:18", "type": { "tag": ":int" } },
9
+{ "tag": "const", "name": "__LITTLE_ENDIAN", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-win32.h:497:18", "type": { "tag": ":int" } },
10
+{ "tag": "const", "name": "__clock_t_defined", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-win32.h:498:18", "type": { "tag": ":int" } },
11
+{ "tag": "const", "name": "__BIG_ENDIAN", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-win32.h:499:18", "type": { "tag": ":int" } },
12
+{ "tag": "const", "name": "__clockid_t_defined", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-win32.h:500:18", "type": { "tag": ":int" } },
13
+{ "tag": "const", "name": "__timer_t_defined", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-win32.h:501:18", "type": { "tag": ":int" } },
14
+{ "tag": "const", "name": "__timespec_defined", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-win32.h:502:18", "type": { "tag": ":int" } },
15
+{ "tag": "const", "name": "__W_CONTINUED", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-win32.h:503:18", "type": { "tag": ":int" } },
16
+{ "tag": "const", "name": "__WCOREFLAG", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-win32.h:504:18", "type": { "tag": ":int" } },
17
+{ "tag": "const", "name": "_STDC_PREDEF_H", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-win32.h:505:18", "type": { "tag": ":int" } },
18
+{ "tag": "const", "name": "_IOS_NOREPLACE", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-win32.h:506:18", "type": { "tag": ":int" } },
19
+{ "tag": "const", "name": "__STDC_IEC_559__", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-win32.h:507:18", "type": { "tag": ":int" } },
20
+{ "tag": "const", "name": "_IO_MAGIC", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-win32.h:508:18", "type": { "tag": ":int" } },
21
+{ "tag": "const", "name": "__STDC_IEC_559_COMPLEX__", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-win32.h:509:18", "type": { "tag": ":int" } },
22
+{ "tag": "const", "name": "_OLD_STDIO_MAGIC", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-win32.h:510:18", "type": { "tag": ":int" } },
23
+{ "tag": "const", "name": "_IOS_OUTPUT", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-win32.h:511:18", "type": { "tag": ":int" } },
24
+{ "tag": "const", "name": "_IOS_ATEND", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-win32.h:512:18", "type": { "tag": ":int" } },
25
+{ "tag": "const", "name": "_IOS_APPEND", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-win32.h:513:18", "type": { "tag": ":int" } },
26
+{ "tag": "const", "name": "_IOS_TRUNC", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-win32.h:514:18", "type": { "tag": ":int" } },
27
+{ "tag": "const", "name": "_IOS_NOCREATE", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-win32.h:515:18", "type": { "tag": ":int" } },
28
+{ "tag": "const", "name": "_IO_UNIFIED_JUMPTABLES", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-win32.h:516:18", "type": { "tag": ":int" } },
29
+{ "tag": "const", "name": "EOF", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-win32.h:517:18", "type": { "tag": ":int" } },
30
+{ "tag": "const", "name": "_IOS_INPUT", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-win32.h:518:18", "type": { "tag": ":int" } },
31
+{ "tag": "const", "name": "__STDC_ISO_10646__", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-win32.h:519:18", "type": { "tag": ":int" } },
32
+{ "tag": "const", "name": "__STDC_NO_THREADS__", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-win32.h:520:18", "type": { "tag": ":int" } },
33
+{ "tag": "const", "name": "__GLIBC__", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-win32.h:521:18", "type": { "tag": ":int" } },
34
+{ "tag": "const", "name": "__GNU_LIBRARY__", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-win32.h:522:18", "type": { "tag": ":int" } },
35
+{ "tag": "const", "name": "__GLIBC_MINOR__", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-win32.h:523:18", "type": { "tag": ":int" } },
36
+{ "tag": "const", "name": "_IOS_BIN", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-win32.h:524:18", "type": { "tag": ":int" } },
37
+{ "tag": "const", "name": "__GLIBC_HAVE_LONG_LONG", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-win32.h:525:18", "type": { "tag": ":int" } },
38
+{ "tag": "const", "name": "_SYS_CDEFS_H", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-win32.h:526:18", "type": { "tag": ":int" } },
39
+{ "tag": "const", "name": "_IO_EOF_SEEN", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-win32.h:527:18", "type": { "tag": ":int" } },
40
+{ "tag": "const", "name": "_IO_ERR_SEEN", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-win32.h:528:18", "type": { "tag": ":int" } },
41
+{ "tag": "const", "name": "_IO_MAGIC_MASK", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-win32.h:529:18", "type": { "tag": ":int" } },
42
+{ "tag": "const", "name": "_IO_NO_WRITES", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-win32.h:530:18", "type": { "tag": ":int" } },
43
+{ "tag": "const", "name": "_BITS_PTHREADTYPES_H", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-win32.h:531:18", "type": { "tag": ":int" } },
44
+{ "tag": "const", "name": "_IO_USER_BUF", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-win32.h:532:18", "type": { "tag": ":int" } },
45
+{ "tag": "const", "name": "__USE_BSD", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-win32.h:533:18", "type": { "tag": ":int" } },
46
+{ "tag": "const", "name": "__SIZEOF_PTHREAD_ATTR_T", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-win32.h:534:18", "type": { "tag": ":int" } },
47
+{ "tag": "const", "name": "__SIZEOF_PTHREAD_MUTEX_T", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-win32.h:535:18", "type": { "tag": ":int" } },
48
+{ "tag": "const", "name": "__SIZEOF_PTHREAD_MUTEXATTR_T", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-win32.h:536:18", "type": { "tag": ":int" } },
49
+{ "tag": "const", "name": "_IO_UNBUFFERED", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-win32.h:537:18", "type": { "tag": ":int" } },
50
+{ "tag": "const", "name": "__SIZEOF_PTHREAD_COND_T", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-win32.h:538:18", "type": { "tag": ":int" } },
51
+{ "tag": "const", "name": "__USE_XOPEN2K8", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-win32.h:539:18", "type": { "tag": ":int" } },
52
+{ "tag": "const", "name": "__SIZEOF_PTHREAD_CONDATTR_T", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-win32.h:540:18", "type": { "tag": ":int" } },
53
+{ "tag": "const", "name": "__SIZEOF_PTHREAD_RWLOCK_T", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-win32.h:541:18", "type": { "tag": ":int" } },
54
+{ "tag": "const", "name": "__USE_XOPEN2K", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-win32.h:542:18", "type": { "tag": ":int" } },
55
+{ "tag": "const", "name": "_IO_NO_READS", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-win32.h:543:18", "type": { "tag": ":int" } },
56
+{ "tag": "const", "name": "__SIZEOF_PTHREAD_RWLOCKATTR_T", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-win32.h:544:18", "type": { "tag": ":int" } },
57
+{ "tag": "const", "name": "__SIZEOF_PTHREAD_BARRIERATTR_T", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-win32.h:545:18", "type": { "tag": ":int" } },
58
+{ "tag": "const", "name": "_STRING_H", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-win32.h:546:18", "type": { "tag": ":int" } },
59
+{ "tag": "const", "name": "__FD_SETSIZE", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-win32.h:547:18", "type": { "tag": ":int" } },
60
+{ "tag": "const", "name": "__have_pthread_attr_t", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-win32.h:548:18", "type": { "tag": ":int" } },
61
+{ "tag": "const", "name": "__SIZEOF_PTHREAD_BARRIER_T", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-win32.h:549:18", "type": { "tag": ":int" } },
62
+{ "tag": "const", "name": "_SYS_SYSMACROS_H", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-win32.h:550:18", "type": { "tag": ":int" } },
63
+{ "tag": "const", "name": "_XLOCALE_H", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-win32.h:551:18", "type": { "tag": ":int" } },
64
+{ "tag": "const", "name": "__USE_ISOC99", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-win32.h:552:18", "type": { "tag": ":int" } },
65
+{ "tag": "const", "name": "_FEATURES_H", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-win32.h:553:18", "type": { "tag": ":int" } },
66
+{ "tag": "const", "name": "_STDLIB_H", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-win32.h:554:18", "type": { "tag": ":int" } },
67
+{ "tag": "const", "name": "__USE_POSIX199506", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-win32.h:555:18", "type": { "tag": ":int" } },
68
+{ "tag": "const", "name": "__USE_POSIX2", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-win32.h:556:18", "type": { "tag": ":int" } },
69
+{ "tag": "const", "name": "__USE_POSIX199309", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-win32.h:557:18", "type": { "tag": ":int" } },
70
+{ "tag": "const", "name": "__USE_ISOC95", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-win32.h:558:18", "type": { "tag": ":int" } },
71
+{ "tag": "const", "name": "__USE_POSIX", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-win32.h:559:18", "type": { "tag": ":int" } },
72
+{ "tag": "const", "name": "_IOFBF", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-win32.h:560:18", "type": { "tag": ":int" } },
73
+{ "tag": "const", "name": "WNOWAIT", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-win32.h:561:18", "type": { "tag": ":int" } },
74
+{ "tag": "const", "name": "WCONTINUED", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-win32.h:562:18", "type": { "tag": ":int" } },
75
+{ "tag": "const", "name": "WEXITED", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-win32.h:563:18", "type": { "tag": ":int" } },
76
+{ "tag": "const", "name": "__WNOTHREAD", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-win32.h:564:18", "type": { "tag": ":int" } },
77
+{ "tag": "const", "name": "WNOHANG", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-win32.h:565:18", "type": { "tag": ":int" } },
78
+{ "tag": "const", "name": "_BITS_TYPESIZES_H", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-win32.h:566:18", "type": { "tag": ":int" } },
79
+{ "tag": "const", "name": "WSTOPPED", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-win32.h:567:18", "type": { "tag": ":int" } },
80
+{ "tag": "const", "name": "WUNTRACED", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-win32.h:568:18", "type": { "tag": ":int" } },
81
+{ "tag": "const", "name": "_SYS_SELECT_H", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-win32.h:569:18", "type": { "tag": ":int" } },
82
+{ "tag": "const", "name": "_STRUCT_TIMEVAL", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-win32.h:570:18", "type": { "tag": ":int" } },
83
+{ "tag": "const", "name": "__WALL", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-win32.h:571:18", "type": { "tag": ":int" } },
84
+{ "tag": "const", "name": "__NFDBITS", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-win32.h:572:18", "type": { "tag": ":int" } },
85
+{ "tag": "const", "name": "L_ctermid", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-win32.h:573:18", "type": { "tag": ":int" } },
86
+{ "tag": "const", "name": "__BIT_TYPES_DEFINED__", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-win32.h:574:18", "type": { "tag": ":int" } },
87
+{ "tag": "const", "name": "_SIGSET_H_types", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-win32.h:575:18", "type": { "tag": ":int" } },
88
+{ "tag": "const", "name": "_IONBF", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-win32.h:576:18", "type": { "tag": ":int" } },
89
+{ "tag": "const", "name": "L_tmpnam", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-win32.h:577:18", "type": { "tag": ":int" } },
90
+{ "tag": "const", "name": "_IO_IS_APPENDING", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-win32.h:578:18", "type": { "tag": ":int" } },
91
+{ "tag": "const", "name": "TMP_MAX", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-win32.h:579:18", "type": { "tag": ":int" } },
92
+{ "tag": "const", "name": "_IO_IS_FILEBUF", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-win32.h:580:18", "type": { "tag": ":int" } },
93
+{ "tag": "const", "name": "__FD_ZERO_STOS", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-win32.h:581:13", "type": { "tag": ":pointer", "type": { "tag": ":char" } }, "value": "stosl" },
94
+{ "tag": "const", "name": "SEEK_CUR", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-win32.h:582:18", "type": { "tag": ":int" } },
95
+{ "tag": "const", "name": "_IO_TIED_PUT_GET", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-win32.h:583:18", "type": { "tag": ":int" } },
96
+{ "tag": "const", "name": "SEEK_SET", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-win32.h:584:18", "type": { "tag": ":int" } },
97
+{ "tag": "const", "name": "_IO_CURRENTLY_PUTTING", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-win32.h:585:18", "type": { "tag": ":int" } },
98
+{ "tag": "const", "name": "P_tmpdir", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-win32.h:586:13", "type": { "tag": ":pointer", "type": { "tag": ":char" } }, "value": "/tmp" },
99
+{ "tag": "const", "name": "_IO_FLAGS2_NOTCANCEL", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-win32.h:587:18", "type": { "tag": ":int" } },
100
+{ "tag": "const", "name": "_IO_BAD_SEEN", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-win32.h:588:18", "type": { "tag": ":int" } },
101
+{ "tag": "const", "name": "_IO_USER_LOCK", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-win32.h:589:18", "type": { "tag": ":int" } },
102
+{ "tag": "const", "name": "_IO_FLAGS2_MMAP", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-win32.h:590:18", "type": { "tag": ":int" } },
103
+{ "tag": "const", "name": "_IO_LEFT", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-win32.h:591:18", "type": { "tag": ":int" } },
104
+{ "tag": "const", "name": "_IO_RIGHT", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-win32.h:592:18", "type": { "tag": ":int" } },
105
+{ "tag": "const", "name": "YAML_SEQ_TAG", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-win32.h:593:13", "type": { "tag": ":pointer", "type": { "tag": ":char" } }, "value": "tag:yaml.org,2002:seq" },
106
+{ "tag": "const", "name": "_IO_INTERNAL", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-win32.h:594:18", "type": { "tag": ":int" } },
107
+{ "tag": "const", "name": "_IOLBF", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-win32.h:595:18", "type": { "tag": ":int" } },
108
+{ "tag": "const", "name": "_SIGSET_NWORDS", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-win32.h:596:18", "type": { "tag": ":int" } },
109
+{ "tag": "const", "name": "_IO_FLAGS2_USER_WBUF", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-win32.h:597:18", "type": { "tag": ":int" } },
110
+{ "tag": "const", "name": "_IO_SKIPWS", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-win32.h:598:18", "type": { "tag": ":int" } },
111
+{ "tag": "const", "name": "FOPEN_MAX", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-win32.h:599:18", "type": { "tag": ":int" } },
112
+{ "tag": "const", "name": "YAML_TIMESTAMP_TAG", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-win32.h:600:13", "type": { "tag": ":pointer", "type": { "tag": ":char" } }, "value": "tag:yaml.org,2002:timestamp" },
113
+{ "tag": "const", "name": "FILENAME_MAX", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-win32.h:601:18", "type": { "tag": ":int" } },
114
+{ "tag": "const", "name": "_IO_HEX", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-win32.h:602:18", "type": { "tag": ":int" } },
115
+{ "tag": "const", "name": "_IO_SHOWBASE", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-win32.h:603:18", "type": { "tag": ":int" } },
116
+{ "tag": "const", "name": "YAML_STR_TAG", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-win32.h:604:13", "type": { "tag": ":pointer", "type": { "tag": ":char" } }, "value": "tag:yaml.org,2002:str" },
117
+{ "tag": "const", "name": "YAML_INT_TAG", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-win32.h:605:13", "type": { "tag": ":pointer", "type": { "tag": ":char" } }, "value": "tag:yaml.org,2002:int" },
118
+{ "tag": "const", "name": "_IO_SHOWPOINT", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-win32.h:606:18", "type": { "tag": ":int" } },
119
+{ "tag": "const", "name": "SEEK_END", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-win32.h:607:18", "type": { "tag": ":int" } },
120
+{ "tag": "const", "name": "_IO_DEC", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-win32.h:608:18", "type": { "tag": ":int" } },
121
+{ "tag": "const", "name": "_IO_OCT", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-win32.h:609:18", "type": { "tag": ":int" } },
122
+{ "tag": "const", "name": "YAML_BOOL_TAG", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-win32.h:610:13", "type": { "tag": ":pointer", "type": { "tag": ":char" } }, "value": "tag:yaml.org,2002:bool" },
123
+{ "tag": "const", "name": "YAML_MAP_TAG", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-win32.h:611:13", "type": { "tag": ":pointer", "type": { "tag": ":char" } }, "value": "tag:yaml.org,2002:map" },
124
+{ "tag": "const", "name": "_IO_SCIENTIFIC", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-win32.h:612:18", "type": { "tag": ":int" } },
125
+{ "tag": "const", "name": "_IO_UPPERCASE", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-win32.h:613:18", "type": { "tag": ":int" } },
126
+{ "tag": "const", "name": "_IO_FIXED", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-win32.h:614:18", "type": { "tag": ":int" } },
127
+{ "tag": "const", "name": "_IO_SHOWPOS", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-win32.h:615:18", "type": { "tag": ":int" } },
128
+{ "tag": "const", "name": "_IO_BOOLALPHA", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-win32.h:616:18", "type": { "tag": ":int" } },
129
+{ "tag": "const", "name": "YAML_FLOAT_TAG", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-win32.h:617:13", "type": { "tag": ":pointer", "type": { "tag": ":char" } }, "value": "tag:yaml.org,2002:float" },
130
+{ "tag": "const", "name": "_IO_UNITBUF", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-win32.h:618:18", "type": { "tag": ":int" } },
131
+{ "tag": "const", "name": "_IO_STDIO", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-win32.h:619:18", "type": { "tag": ":int" } },
132
+{ "tag": "const", "name": "_IO_DONT_CLOSE", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-win32.h:620:18", "type": { "tag": ":int" } },
133
+{ "tag": "const", "name": "_ALLOCA_H", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-win32.h:621:18", "type": { "tag": ":int" } },
134
+{ "tag": "const", "name": "YAML_NULL_TAG", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-win32.h:622:13", "type": { "tag": ":pointer", "type": { "tag": ":char" } }, "value": "tag:yaml.org,2002:null" },
135
+{ "tag": "const", "name": "_G_HAVE_MMAP", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-win32.h:623:18", "type": { "tag": ":int" } },
136
+{ "tag": "const", "name": "__USE_ATFILE", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-win32.h:624:18", "type": { "tag": ":int" } },
137
+{ "tag": "const", "name": "__USE_MISC", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-win32.h:625:18", "type": { "tag": ":int" } },
138
+{ "tag": "const", "name": "__USE_SVID", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-win32.h:626:18", "type": { "tag": ":int" } },
139
+{ "tag": "const", "name": "_G_config_h", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-win32.h:627:18", "type": { "tag": ":int" } },
140
+{ "tag": "const", "name": "__USE_FORTIFY_LEVEL", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-win32.h:628:18", "type": { "tag": ":int" } },
141
+{ "tag": "const", "name": "EXIT_FAILURE", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-win32.h:629:18", "type": { "tag": ":int" } },
142
+{ "tag": "const", "name": "RAND_MAX", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-win32.h:630:18", "type": { "tag": ":int" } },
143
+{ "tag": "const", "name": "EXIT_SUCCESS", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-win32.h:631:18", "type": { "tag": ":int" } },
144
+{ "tag": "const", "name": "____mbstate_t_defined", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-win32.h:632:18", "type": { "tag": ":int" } },
145
+{ "tag": "const", "name": "__lldiv_t_defined", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-win32.h:633:18", "type": { "tag": ":int" } },
146
+{ "tag": "const", "name": "__USE_ANSI", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-win32.h:634:18", "type": { "tag": ":int" } },
147
+{ "tag": "const", "name": "__WORDSIZE", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-win32.h:635:18", "type": { "tag": ":int" } },
148
+{ "tag": "const", "name": "__ldiv_t_defined", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-win32.h:636:18", "type": { "tag": ":int" } },
149
+{ "tag": "const", "name": "_POSIX_SOURCE", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-win32.h:637:18", "type": { "tag": ":int" } },
150
+{ "tag": "const", "name": "_BSD_SOURCE", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-win32.h:638:18", "type": { "tag": ":int" } },
151
+{ "tag": "const", "name": "_SVID_SOURCE", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-win32.h:639:18", "type": { "tag": ":int" } },
152
+{ "tag": "const", "name": "_POSIX_C_SOURCE", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-win32.h:640:18", "type": { "tag": ":int" } },
153
+{ "tag": "const", "name": "__USE_POSIX_IMPLICITLY", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-win32.h:641:18", "type": { "tag": ":int" } },
154
+{ "tag": "const", "name": "_G_IO_IO_FILE_VERSION", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-win32.h:642:18", "type": { "tag": ":int" } },
155
+{ "tag": "const", "name": "_G_HAVE_MREMAP", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-win32.h:643:18", "type": { "tag": ":int" } },
156
+{ "tag": "const", "name": "_ATFILE_SOURCE", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-win32.h:644:18", "type": { "tag": ":int" } },
157
+{ "tag": "const", "name": "_G_BUFSIZ", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-win32.h:645:18", "type": { "tag": ":int" } },
158
+{ "tag": "const", "name": "_SYS_TYPES_H", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-win32.h:646:18", "type": { "tag": ":int" } },
159
+{ "tag": "const", "name": "_STDIO_H", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-win32.h:647:18", "type": { "tag": ":int" } },
160
+{ "tag": "const", "name": "____FILE_defined", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-win32.h:648:18", "type": { "tag": ":int" } },
161
+{ "tag": "const", "name": "__FILE_defined", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-win32.h:649:18", "type": { "tag": ":int" } },
162
+{ "tag": "const", "name": "_IO_DELETE_DONT_CLOSE", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-win32.h:650:18", "type": { "tag": ":int" } },
163
+{ "tag": "const", "name": "_IO_LINE_BUF", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-win32.h:651:18", "type": { "tag": ":int" } },
164
+{ "tag": "const", "name": "_IO_IN_BACKUP", "location": "/mnt/d/code/cl-yaml/spec/yaml.i686-pc-win32.h:652:18", "type": { "tag": ":int" } }
165
+]
0 166
new file mode 100755
... ...
@@ -0,0 +1,515 @@
1
+[
2
+{ "tag": "typedef", "name": "size_t", "location": "/usr/include/stddef.h:213:23", "type": { "tag": ":unsigned-int" } },
3
+{ "tag": "typedef", "name": "wchar_t", "location": "/usr/include/stddef.h:325:24", "type": { "tag": ":unsigned-short" } },
4
+{ "tag": "typedef", "name": "__u_char", "location": "/usr/include/bits/types.h:30:23", "type": { "tag": ":unsigned-char" } },
5
+{ "tag": "typedef", "name": "__u_short", "location": "/usr/include/bits/types.h:31:28", "type": { "tag": ":unsigned-short" } },
6
+{ "tag": "typedef", "name": "__u_int", "location": "/usr/include/bits/types.h:32:22", "type": { "tag": ":unsigned-int" } },
7
+{ "tag": "typedef", "name": "__u_long", "location": "/usr/include/bits/types.h:33:27", "type": { "tag": ":unsigned-long" } },
8
+{ "tag": "typedef", "name": "__int8_t", "location": "/usr/include/bits/types.h:36:21", "type": { "tag": ":signed-char" } },
9
+{ "tag": "typedef", "name": "__uint8_t", "location": "/usr/include/bits/types.h:37:23", "type": { "tag": ":unsigned-char" } },
10
+{ "tag": "typedef", "name": "__int16_t", "location": "/usr/include/bits/types.h:38:26", "type": { "tag": ":short" } },
11
+{ "tag": "typedef", "name": "__uint16_t", "location": "/usr/include/bits/types.h:39:28", "type": { "tag": ":unsigned-short" } },
12
+{ "tag": "typedef", "name": "__int32_t", "location": "/usr/include/bits/types.h:40:20", "type": { "tag": ":int" } },
13
+{ "tag": "typedef", "name": "__uint32_t", "location": "/usr/include/bits/types.h:41:22", "type": { "tag": ":unsigned-int" } },
14
+{ "tag": "typedef", "name": "__int64_t", "location": "/usr/include/bits/types.h:46:44", "type": { "tag": ":long-long" } },
15
+{ "tag": "typedef", "name": "__uint64_t", "location": "/usr/include/bits/types.h:47:46", "type": { "tag": ":unsigned-long-long" } },
16
+{ "tag": "typedef", "name": "__quad_t", "location": "/usr/include/bits/types.h:55:37", "type": { "tag": ":long-long" } },
17
+{ "tag": "typedef", "name": "__u_quad_t", "location": "/usr/include/bits/types.h:56:46", "type": { "tag": ":unsigned-long-long" } },
18
+{ "tag": "typedef", "name": "__dev_t", "location": "/usr/include/bits/types.h:133:25", "type": { "tag": "__u_quad_t" } },
19
+{ "tag": "typedef", "name": "__uid_t", "location": "/usr/include/bits/types.h:134:25", "type": { "tag": ":unsigned-int" } },
20
+{ "tag": "typedef", "name": "__gid_t", "location": "/usr/include/bits/types.h:135:25", "type": { "tag": ":unsigned-int" } },
21
+{ "tag": "typedef", "name": "__ino_t", "location": "/usr/include/bits/types.h:136:25", "type": { "tag": ":unsigned-long" } },
22
+{ "tag": "typedef", "name": "__ino64_t", "location": "/usr/include/bits/types.h:137:27", "type": { "tag": "__u_quad_t" } },
23
+{ "tag": "typedef", "name": "__mode_t", "location": "/usr/include/bits/types.h:138:26", "type": { "tag": ":unsigned-int" } },
24
+{ "tag": "typedef", "name": "__nlink_t", "location": "/usr/include/bits/types.h:139:27", "type": { "tag": ":unsigned-int" } },
25
+{ "tag": "typedef", "name": "__off_t", "location": "/usr/include/bits/types.h:140:25", "type": { "tag": ":long" } },
26
+{ "tag": "typedef", "name": "__off64_t", "location": "/usr/include/bits/types.h:141:27", "type": { "tag": "__quad_t" } },
27
+{ "tag": "typedef", "name": "__pid_t", "location": "/usr/include/bits/types.h:142:25", "type": { "tag": ":int" } },
28
+{ "tag": "typedef", "name": "__fsid_t", "location": "/usr/include/bits/types.h:143:26", "type": { "tag": "struct", "name": "", "id": 1, "location": "/usr/include/bits/types.h:143:12 <Spelling=/usr/include/bits/typesizes.h:72:24>", "bit-size": 64, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "__val", "bit-offset": 0, "bit-size": 64, "bit-alignment": 32, "type": { "tag": ":array", "type": { "tag": ":int" }, "size": 2 } }] } },
29
+{ "tag": "typedef", "name": "__clock_t", "location": "/usr/include/bits/types.h:144:27", "type": { "tag": ":long" } },
30
+{ "tag": "typedef", "name": "__rlim_t", "location": "/usr/include/bits/types.h:145:26", "type": { "tag": ":unsigned-long" } },
31
+{ "tag": "typedef", "name": "__rlim64_t", "location": "/usr/include/bits/types.h:146:28", "type": { "tag": "__u_quad_t" } },
32
+{ "tag": "typedef", "name": "__id_t", "location": "/usr/include/bits/types.h:147:24", "type": { "tag": ":unsigned-int" } },
33
+{ "tag": "typedef", "name": "__time_t", "location": "/usr/include/bits/types.h:148:26", "type": { "tag": ":long" } },
34
+{ "tag": "typedef", "name": "__useconds_t", "location": "/usr/include/bits/types.h:149:30", "type": { "tag": ":unsigned-int" } },
35
+{ "tag": "typedef", "name": "__suseconds_t", "location": "/usr/include/bits/types.h:150:31", "type": { "tag": ":long" } },
36
+{ "tag": "typedef", "name": "__daddr_t", "location": "/usr/include/bits/types.h:152:27", "type": { "tag": ":int" } },
37
+{ "tag": "typedef", "name": "__key_t", "location": "/usr/include/bits/types.h:153:25", "type": { "tag": ":int" } },
38
+{ "tag": "typedef", "name": "__clockid_t", "location": "/usr/include/bits/types.h:156:29", "type": { "tag": ":int" } },
39
+{ "tag": "typedef", "name": "__timer_t", "location": "/usr/include/bits/types.h:159:27", "type": { "tag": ":pointer", "type": { "tag": ":void" } } },
40
+{ "tag": "typedef", "name": "__blksize_t", "location": "/usr/include/bits/types.h:162:29", "type": { "tag": ":long" } },
41
+{ "tag": "typedef", "name": "__blkcnt_t", "location": "/usr/include/bits/types.h:167:28", "type": { "tag": ":long" } },
42
+{ "tag": "typedef", "name": "__blkcnt64_t", "location": "/usr/include/bits/types.h:168:30", "type": { "tag": "__quad_t" } },
43
+{ "tag": "typedef", "name": "__fsblkcnt_t", "location": "/usr/include/bits/types.h:171:30", "type": { "tag": ":unsigned-long" } },
44
+{ "tag": "typedef", "name": "__fsblkcnt64_t", "location": "/usr/include/bits/types.h:172:32", "type": { "tag": "__u_quad_t" } },
45
+{ "tag": "typedef", "name": "__fsfilcnt_t", "location": "/usr/include/bits/types.h:175:30", "type": { "tag": ":unsigned-long" } },
46
+{ "tag": "typedef", "name": "__fsfilcnt64_t", "location": "/usr/include/bits/types.h:176:32", "type": { "tag": "__u_quad_t" } },
47
+{ "tag": "typedef", "name": "__fsword_t", "location": "/usr/include/bits/types.h:179:28", "type": { "tag": ":int" } },
48
+{ "tag": "typedef", "name": "__ssize_t", "location": "/usr/include/bits/types.h:181:27", "type": { "tag": ":int" } },
49
+{ "tag": "typedef", "name": "__syscall_slong_t", "location": "/usr/include/bits/types.h:184:33", "type": { "tag": ":long" } },
50
+{ "tag": "typedef", "name": "__syscall_ulong_t", "location": "/usr/include/bits/types.h:186:33", "type": { "tag": ":unsigned-long" } },
51
+{ "tag": "typedef", "name": "__loff_t", "location": "/usr/include/bits/types.h:190:19", "type": { "tag": "__off64_t" } },
52
+{ "tag": "typedef", "name": "__qaddr_t", "location": "/usr/include/bits/types.h:191:19", "type": { "tag": ":pointer", "type": { "tag": "__quad_t" } } },
53
+{ "tag": "typedef", "name": "__caddr_t", "location": "/usr/include/bits/types.h:192:15", "type": { "tag": ":pointer", "type": { "tag": ":char" } } },
54
+{ "tag": "typedef", "name": "__intptr_t", "location": "/usr/include/bits/types.h:195:25", "type": { "tag": ":int" } },
55
+{ "tag": "typedef", "name": "__socklen_t", "location": "/usr/include/bits/types.h:198:23", "type": { "tag": ":unsigned-int" } },
56
+{ "tag": "union", "name": "wait", "id": 0, "location": "/usr/include/bits/waitstatus.h:66:7", "bit-size": 32, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "w_status", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "__wait_terminated", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "struct", "name": "", "id": 2, "location": "/usr/include/bits/waitstatus.h:69:5", "bit-size": 32, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "__w_termsig", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":bitfield", "width": 7, "type": { "tag": ":unsigned-int" } } }, { "tag": "field", "name": "__w_coredump", "bit-offset": 7, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":bitfield", "width": 1, "type": { "tag": ":unsigned-int" } } }, { "tag": "field", "name": "__w_retcode", "bit-offset": 8, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":bitfield", "width": 8, "type": { "tag": ":unsigned-int" } } }, { "tag": "field", "name": "", "bit-offset": 16, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":bitfield", "width": 16, "type": { "tag": ":unsigned-int" } } }] } }, { "tag": "field", "name": "__wait_stopped", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "struct", "name": "", "id": 3, "location": "/usr/include/bits/waitstatus.h:84:5", "bit-size": 32, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "__w_stopval", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":bitfield", "width": 8, "type": { "tag": ":unsigned-int" } } }, { "tag": "field", "name": "__w_stopsig", "bit-offset": 8, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":bitfield", "width": 8, "type": { "tag": ":unsigned-int" } } }, { "tag": "field", "name": "", "bit-offset": 16, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":bitfield", "width": 16, "type": { "tag": ":unsigned-int" } } }] } }] },
57
+{ "tag": "typedef", "name": "__WAIT_STATUS", "location": "/usr/include/stdlib.h:71:5", "type": { "tag": "union", "name": "", "id": 4, "location": "/usr/include/stdlib.h:67:9", "bit-size": 32, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "__uptr", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": ":union", "name": "wait", "id": 0 } } }, { "tag": "field", "name": "__iptr", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": ":int" } } }] } },
58
+{ "tag": "typedef", "name": "div_t", "location": "/usr/include/stdlib.h:101:5", "type": { "tag": "struct", "name": "", "id": 5, "location": "/usr/include/stdlib.h:97:9", "bit-size": 64, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "quot", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "rem", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }] } },
59
+{ "tag": "typedef", "name": "ldiv_t", "location": "/usr/include/stdlib.h:109:5", "type": { "tag": "struct", "name": "", "id": 6, "location": "/usr/include/stdlib.h:105:9", "bit-size": 64, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "quot", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":long" } }, { "tag": "field", "name": "rem", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":long" } }] } },
60
+{ "tag": "typedef", "name": "lldiv_t", "location": "/usr/include/stdlib.h:121:5", "type": { "tag": "struct", "name": "", "id": 7, "location": "/usr/include/stdlib.h:117:23", "bit-size": 128, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "quot", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":long-long" } }, { "tag": "field", "name": "rem", "bit-offset": 64, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":long-long" } }] } },
61
+{ "tag": "function", "name": "__ctype_get_mb_cur_max", "location": "/usr/include/stdlib.h:139:15", "variadic": false, "parameters": [], "return-type": { "tag": "size_t" } },
62
+{ "tag": "function", "name": "atof", "location": "/usr/include/stdlib.h:144:15", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__nptr", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":double" } },
63
+{ "tag": "function", "name": "atoi", "location": "/usr/include/stdlib.h:147:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__nptr", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":int" } },
64
+{ "tag": "function", "name": "atol", "location": "/usr/include/stdlib.h:150:17", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__nptr", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":long" } },
65
+{ "tag": "function", "name": "atoll", "location": "/usr/include/stdlib.h:157:36", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__nptr", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":long-long" } },
66
+{ "tag": "function", "name": "strtod", "location": "/usr/include/stdlib.h:164:15", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__nptr", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__endptr", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char" } } } }], "return-type": { "tag": ":double" } },
67
+{ "tag": "function", "name": "strtof", "location": "/usr/include/stdlib.h:172:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__nptr", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__endptr", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char" } } } }], "return-type": { "tag": ":float" } },
68
+{ "tag": "function", "name": "strtold", "location": "/usr/include/stdlib.h:175:20", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__nptr", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__endptr", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char" } } } }], "return-type": { "tag": ":long-double" } },
69
+{ "tag": "function", "name": "strtol", "location": "/usr/include/stdlib.h:183:17", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__nptr", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__endptr", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char" } } } }, { "tag": "parameter", "name": "__base", "type": { "tag": ":int" } }], "return-type": { "tag": ":long" } },
70
+{ "tag": "function", "name": "strtoul", "location": "/usr/include/stdlib.h:187:26", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__nptr", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__endptr", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char" } } } }, { "tag": "parameter", "name": "__base", "type": { "tag": ":int" } }], "return-type": { "tag": ":unsigned-long" } },
71
+{ "tag": "function", "name": "strtoq", "location": "/usr/include/stdlib.h:195:22", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__nptr", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__endptr", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char" } } } }, { "tag": "parameter", "name": "__base", "type": { "tag": ":int" } }], "return-type": { "tag": ":long-long" } },
72
+{ "tag": "function", "name": "strtouq", "location": "/usr/include/stdlib.h:200:31", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__nptr", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__endptr", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char" } } } }, { "tag": "parameter", "name": "__base", "type": { "tag": ":int" } }], "return-type": { "tag": ":unsigned-long-long" } },
73
+{ "tag": "function", "name": "strtoll", "location": "/usr/include/stdlib.h:209:22", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__nptr", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__endptr", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char" } } } }, { "tag": "parameter", "name": "__base", "type": { "tag": ":int" } }], "return-type": { "tag": ":long-long" } },
74
+{ "tag": "function", "name": "strtoull", "location": "/usr/include/stdlib.h:214:31", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__nptr", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__endptr", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char" } } } }, { "tag": "parameter", "name": "__base", "type": { "tag": ":int" } }], "return-type": { "tag": ":unsigned-long-long" } },
75
+{ "tag": "function", "name": "l64a", "location": "/usr/include/stdlib.h:305:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__n", "type": { "tag": ":long" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
76
+{ "tag": "function", "name": "a64l", "location": "/usr/include/stdlib.h:308:17", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":long" } },
77
+{ "tag": "typedef", "name": "u_char", "location": "/usr/include/sys/types.h:33:18", "type": { "tag": "__u_char" } },
78
+{ "tag": "typedef", "name": "u_short", "location": "/usr/include/sys/types.h:34:19", "type": { "tag": "__u_short" } },
79
+{ "tag": "typedef", "name": "u_int", "location": "/usr/include/sys/types.h:35:17", "type": { "tag": "__u_int" } },
80
+{ "tag": "typedef", "name": "u_long", "location": "/usr/include/sys/types.h:36:18", "type": { "tag": "__u_long" } },
81
+{ "tag": "typedef", "name": "quad_t", "location": "/usr/include/sys/types.h:37:18", "type": { "tag": "__quad_t" } },
82
+{ "tag": "typedef", "name": "u_quad_t", "location": "/usr/include/sys/types.h:38:20", "type": { "tag": "__u_quad_t" } },
83
+{ "tag": "typedef", "name": "fsid_t", "location": "/usr/include/sys/types.h:39:18", "type": { "tag": "__fsid_t" } },
84
+{ "tag": "typedef", "name": "loff_t", "location": "/usr/include/sys/types.h:44:18", "type": { "tag": "__loff_t" } },
85
+{ "tag": "typedef", "name": "ino_t", "location": "/usr/include/sys/types.h:48:17", "type": { "tag": "__ino_t" } },
86
+{ "tag": "typedef", "name": "dev_t", "location": "/usr/include/sys/types.h:60:17", "type": { "tag": "__dev_t" } },
87
+{ "tag": "typedef", "name": "gid_t", "location": "/usr/include/sys/types.h:65:17", "type": { "tag": "__gid_t" } },
88
+{ "tag": "typedef", "name": "mode_t", "location": "/usr/include/sys/types.h:70:18", "type": { "tag": "__mode_t" } },
89
+{ "tag": "typedef", "name": "nlink_t", "location": "/usr/include/sys/types.h:75:19", "type": { "tag": "__nlink_t" } },
90
+{ "tag": "typedef", "name": "uid_t", "location": "/usr/include/sys/types.h:80:17", "type": { "tag": "__uid_t" } },
91
+{ "tag": "typedef", "name": "off_t", "location": "/usr/include/sys/types.h:86:17", "type": { "tag": "__off_t" } },
92
+{ "tag": "typedef", "name": "pid_t", "location": "/usr/include/sys/types.h:98:17", "type": { "tag": "__pid_t" } },
93
+{ "tag": "typedef", "name": "id_t", "location": "/usr/include/sys/types.h:104:16", "type": { "tag": "__id_t" } },
94
+{ "tag": "typedef", "name": "ssize_t", "location": "/usr/include/sys/types.h:109:19", "type": { "tag": "__ssize_t" } },
95
+{ "tag": "typedef", "name": "daddr_t", "location": "/usr/include/sys/types.h:115:19", "type": { "tag": "__daddr_t" } },
96
+{ "tag": "typedef", "name": "caddr_t", "location": "/usr/include/sys/types.h:116:19", "type": { "tag": "__caddr_t" } },
97
+{ "tag": "typedef", "name": "key_t", "location": "/usr/include/sys/types.h:122:17", "type": { "tag": "__key_t" } },
98
+{ "tag": "typedef", "name": "clock_t", "location": "/usr/include/time.h:59:19", "type": { "tag": "__clock_t" } },
99
+{ "tag": "typedef", "name": "time_t", "location": "/usr/include/time.h:75:18", "type": { "tag": "__time_t" } },
100
+{ "tag": "typedef", "name": "clockid_t", "location": "/usr/include/time.h:91:21", "type": { "tag": "__clockid_t" } },
101
+{ "tag": "typedef", "name": "timer_t", "location": "/usr/include/time.h:103:19", "type": { "tag": "__timer_t" } },
102
+{ "tag": "typedef", "name": "ulong", "location": "/usr/include/sys/types.h:150:27", "type": { "tag": ":unsigned-long" } },
103
+{ "tag": "typedef", "name": "ushort", "location": "/usr/include/sys/types.h:151:28", "type": { "tag": ":unsigned-short" } },
104
+{ "tag": "typedef", "name": "uint", "location": "/usr/include/sys/types.h:152:22", "type": { "tag": ":unsigned-int" } },
105
+{ "tag": "typedef", "name": "int8_t", "location": "/usr/include/sys/types.h:194:1 <Spelling=<scratch space>:3:1>", "type": { "tag": ":int" } },
106
+{ "tag": "typedef", "name": "int16_t", "location": "/usr/include/sys/types.h:195:1 <Spelling=<scratch space>:3:1>", "type": { "tag": ":int" } },
107
+{ "tag": "typedef", "name": "int32_t", "location": "/usr/include/sys/types.h:196:1 <Spelling=<scratch space>:3:1>", "type": { "tag": ":int" } },
108
+{ "tag": "typedef", "name": "int64_t", "location": "/usr/include/sys/types.h:197:1 <Spelling=<scratch space>:3:1>", "type": { "tag": ":int" } },
109
+{ "tag": "typedef", "name": "u_int8_t", "location": "/usr/include/sys/types.h:200:1 <Spelling=<scratch space>:3:1>", "type": { "tag": ":unsigned-int" } },
110
+{ "tag": "typedef", "name": "u_int16_t", "location": "/usr/include/sys/types.h:201:1 <Spelling=<scratch space>:3:1>", "type": { "tag": ":unsigned-int" } },
111
+{ "tag": "typedef", "name": "u_int32_t", "location": "/usr/include/sys/types.h:202:1 <Spelling=<scratch space>:3:1>", "type": { "tag": ":unsigned-int" } },
112
+{ "tag": "typedef", "name": "u_int64_t", "location": "/usr/include/sys/types.h:203:1 <Spelling=<scratch space>:3:1>", "type": { "tag": ":unsigned-int" } },
113
+{ "tag": "typedef", "name": "register_t", "location": "/usr/include/sys/types.h:205:13", "type": { "tag": ":int" } },
114
+{ "tag": "typedef", "name": "__sig_atomic_t", "location": "/usr/include/bits/sigset.h:23:13", "type": { "tag": ":int" } },
115
+{ "tag": "typedef", "name": "__sigset_t", "location": "/usr/include/bits/sigset.h:31:5", "type": { "tag": "struct", "name": "", "id": 8, "location": "/usr/include/bits/sigset.h:28:9", "bit-size": 1024, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "__val", "bit-offset": 0, "bit-size": 1024, "bit-alignment": 32, "type": { "tag": ":array", "type": { "tag": ":unsigned-long" }, "size": 32 } }] } },
116
+{ "tag": "typedef", "name": "sigset_t", "location": "/usr/include/sys/select.h:37:20", "type": { "tag": "__sigset_t" } },
117
+{ "tag": "struct", "name": "timespec", "id": 0, "location": "/usr/include/time.h:120:8", "bit-size": 64, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "tv_sec", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "__time_t" } }, { "tag": "field", "name": "tv_nsec", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "__syscall_slong_t" } }] },
118
+{ "tag": "struct", "name": "timeval", "id": 0, "location": "/usr/include/bits/time.h:30:8", "bit-size": 64, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "tv_sec", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "__time_t" } }, { "tag": "field", "name": "tv_usec", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "__suseconds_t" } }] },
119
+{ "tag": "typedef", "name": "suseconds_t", "location": "/usr/include/sys/select.h:48:23", "type": { "tag": "__suseconds_t" } },
120
+{ "tag": "typedef", "name": "__fd_mask", "location": "/usr/include/sys/select.h:54:18", "type": { "tag": ":long" } },
121
+{ "tag": "typedef", "name": "fd_set", "location": "/usr/include/sys/select.h:75:5", "type": { "tag": "struct", "name": "", "id": 9, "location": "/usr/include/sys/select.h:64:9", "bit-size": 1024, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "__fds_bits", "bit-offset": 0, "bit-size": 1024, "bit-alignment": 32, "type": { "tag": ":array", "type": { "tag": "__fd_mask" }, "size": 32 } }] } },
122
+{ "tag": "typedef", "name": "fd_mask", "location": "/usr/include/sys/select.h:82:19", "type": { "tag": "__fd_mask" } },
123
+{ "tag": "function", "name": "select", "location": "/usr/include/sys/select.h:106:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__nfds", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__readfds", "type": { "tag": ":pointer", "type": { "tag": "fd_set" } } }, { "tag": "parameter", "name": "__writefds", "type": { "tag": ":pointer", "type": { "tag": "fd_set" } } }, { "tag": "parameter", "name": "__exceptfds", "type": { "tag": ":pointer", "type": { "tag": "fd_set" } } }, { "tag": "parameter", "name": "__timeout", "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "timeval", "id": 0 } } }], "return-type": { "tag": ":int" } },
124
+{ "tag": "function", "name": "pselect", "location": "/usr/include/sys/select.h:118:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__nfds", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__readfds", "type": { "tag": ":pointer", "type": { "tag": "fd_set" } } }, { "tag": "parameter", "name": "__writefds", "type": { "tag": ":pointer", "type": { "tag": "fd_set" } } }, { "tag": "parameter", "name": "__exceptfds", "type": { "tag": ":pointer", "type": { "tag": "fd_set" } } }, { "tag": "parameter", "name": "__timeout", "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "timespec", "id": 0 } } }, { "tag": "parameter", "name": "__sigmask", "type": { "tag": ":pointer", "type": { "tag": "__sigset_t" } } }], "return-type": { "tag": ":int" } },
125
+{ "tag": "function", "name": "gnu_dev_major", "location": "/usr/include/sys/sysmacros.h:32:21", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__dev", "type": { "tag": ":unsigned-long-long" } }], "return-type": { "tag": ":unsigned-int" } },
126
+{ "tag": "function", "name": "gnu_dev_minor", "location": "/usr/include/sys/sysmacros.h:35:21", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__dev", "type": { "tag": ":unsigned-long-long" } }], "return-type": { "tag": ":unsigned-int" } },
127
+{ "tag": "function", "name": "gnu_dev_makedev", "location": "/usr/include/sys/sysmacros.h:38:31", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__major", "type": { "tag": ":unsigned-int" } }, { "tag": "parameter", "name": "__minor", "type": { "tag": ":unsigned-int" } }], "return-type": { "tag": ":unsigned-long-long" } },
128
+{ "tag": "typedef", "name": "blksize_t", "location": "/usr/include/sys/types.h:228:21", "type": { "tag": "__blksize_t" } },
129
+{ "tag": "typedef", "name": "blkcnt_t", "location": "/usr/include/sys/types.h:235:20", "type": { "tag": "__blkcnt_t" } },
130
+{ "tag": "typedef", "name": "fsblkcnt_t", "location": "/usr/include/sys/types.h:239:22", "type": { "tag": "__fsblkcnt_t" } },
131
+{ "tag": "typedef", "name": "fsfilcnt_t", "location": "/usr/include/sys/types.h:243:22", "type": { "tag": "__fsfilcnt_t" } },
132
+{ "tag": "typedef", "name": "pthread_t", "location": "/usr/include/bits/pthreadtypes.h:60:27", "type": { "tag": ":unsigned-long" } },
133
+{ "tag": "union", "name": "pthread_attr_t", "id": 0, "location": "/usr/include/bits/pthreadtypes.h:63:7", "bit-size": 288, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "__size", "bit-offset": 0, "bit-size": 288, "bit-alignment": 8, "type": { "tag": ":array", "type": { "tag": ":char" }, "size": 36 } }, { "tag": "field", "name": "__align", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":long" } }] },
134
+{ "tag": "typedef", "name": "pthread_attr_t", "location": "/usr/include/bits/pthreadtypes.h:69:30", "type": { "tag": ":union", "name": "pthread_attr_t", "id": 0 } },
135
+{ "tag": "struct", "name": "__pthread_internal_slist", "id": 0, "location": "/usr/include/bits/pthreadtypes.h:81:16", "bit-size": 32, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "__next", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "__pthread_internal_slist", "id": 0 } } }] },
136
+{ "tag": "typedef", "name": "__pthread_slist_t", "location": "/usr/include/bits/pthreadtypes.h:84:3", "type": { "tag": ":struct", "name": "__pthread_internal_slist", "id": 0 } },
137
+{ "tag": "typedef", "name": "pthread_mutex_t", "location": "/usr/include/bits/pthreadtypes.h:118:3", "type": { "tag": "union", "name": "", "id": 10, "location": "/usr/include/bits/pthreadtypes.h:90:9", "bit-size": 192, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "__data", "bit-offset": 0, "bit-size": 192, "bit-alignment": 32, "type": { "tag": "struct", "name": "__pthread_mutex_s", "id": 0, "location": "/usr/include/bits/pthreadtypes.h:92:10", "bit-size": 192, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "__lock", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "__count", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":unsigned-int" } }, { "tag": "field", "name": "__owner", "bit-offset": 64, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "__kind", "bit-offset": 96, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "__nusers", "bit-offset": 128, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":unsigned-int" } }, { "tag": "field", "name": "", "bit-offset": 160, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "union", "name": "", "id": 11, "location": "/usr/include/bits/pthreadtypes.h:109:19", "bit-size": 32, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "__spins", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "__list", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "__pthread_slist_t" } }] } }] } }, { "tag": "field", "name": "__size", "bit-offset": 0, "bit-size": 192, "bit-alignment": 8, "type": { "tag": ":array", "type": { "tag": ":char" }, "size": 24 } }, { "tag": "field", "name": "__align", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":long" } }] } },
138
+{ "tag": "typedef", "name": "pthread_mutexattr_t", "location": "/usr/include/bits/pthreadtypes.h:124:3", "type": { "tag": "union", "name": "", "id": 12, "location": "/usr/include/bits/pthreadtypes.h:120:9", "bit-size": 32, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "__size", "bit-offset": 0, "bit-size": 32, "bit-alignment": 8, "type": { "tag": ":array", "type": { "tag": ":char" }, "size": 4 } }, { "tag": "field", "name": "__align", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }] } },
139
+{ "tag": "typedef", "name": "pthread_cond_t", "location": "/usr/include/bits/pthreadtypes.h:144:3", "type": { "tag": "union", "name": "", "id": 13, "location": "/usr/include/bits/pthreadtypes.h:129:9", "bit-size": 384, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "__data", "bit-offset": 0, "bit-size": 384, "bit-alignment": 64, "type": { "tag": "struct", "name": "", "id": 14, "location": "/usr/include/bits/pthreadtypes.h:131:3", "bit-size": 384, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "__lock", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "__futex", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":unsigned-int" } }, { "tag": "field", "name": "__total_seq", "bit-offset": 64, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":unsigned-long-long" } }, { "tag": "field", "name": "__wakeup_seq", "bit-offset": 128, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":unsigned-long-long" } }, { "tag": "field", "name": "__woken_seq", "bit-offset": 192, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":unsigned-long-long" } }, { "tag": "field", "name": "__mutex", "bit-offset": 256, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "field", "name": "__nwaiters", "bit-offset": 288, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":unsigned-int" } }, { "tag": "field", "name": "__broadcast_seq", "bit-offset": 320, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":unsigned-int" } }] } }, { "tag": "field", "name": "__size", "bit-offset": 0, "bit-size": 384, "bit-alignment": 8, "type": { "tag": ":array", "type": { "tag": ":char" }, "size": 48 } }, { "tag": "field", "name": "__align", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":long-long" } }] } },
140
+{ "tag": "typedef", "name": "pthread_condattr_t", "location": "/usr/include/bits/pthreadtypes.h:150:3", "type": { "tag": "union", "name": "", "id": 15, "location": "/usr/include/bits/pthreadtypes.h:146:9", "bit-size": 32, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "__size", "bit-offset": 0, "bit-size": 32, "bit-alignment": 8, "type": { "tag": ":array", "type": { "tag": ":char" }, "size": 4 } }, { "tag": "field", "name": "__align", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }] } },
141
+{ "tag": "typedef", "name": "pthread_key_t", "location": "/usr/include/bits/pthreadtypes.h:154:22", "type": { "tag": ":unsigned-int" } },
142
+{ "tag": "typedef", "name": "pthread_once_t", "location": "/usr/include/bits/pthreadtypes.h:158:13", "type": { "tag": ":int" } },
143
+{ "tag": "typedef", "name": "pthread_rwlock_t", "location": "/usr/include/bits/pthreadtypes.h:204:3", "type": { "tag": "union", "name": "", "id": 16, "location": "/usr/include/bits/pthreadtypes.h:164:9", "bit-size": 256, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "__data", "bit-offset": 0, "bit-size": 256, "bit-alignment": 32, "type": { "tag": "struct", "name": "", "id": 17, "location": "/usr/include/bits/pthreadtypes.h:185:3", "bit-size": 256, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "__lock", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "__nr_readers", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":unsigned-int" } }, { "tag": "field", "name": "__readers_wakeup", "bit-offset": 64, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":unsigned-int" } }, { "tag": "field", "name": "__writer_wakeup", "bit-offset": 96, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":unsigned-int" } }, { "tag": "field", "name": "__nr_readers_queued", "bit-offset": 128, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":unsigned-int" } }, { "tag": "field", "name": "__nr_writers_queued", "bit-offset": 160, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":unsigned-int" } }, { "tag": "field", "name": "__flags", "bit-offset": 192, "bit-size": 8, "bit-alignment": 8, "type": { "tag": ":unsigned-char" } }, { "tag": "field", "name": "__shared", "bit-offset": 200, "bit-size": 8, "bit-alignment": 8, "type": { "tag": ":unsigned-char" } }, { "tag": "field", "name": "__pad1", "bit-offset": 208, "bit-size": 8, "bit-alignment": 8, "type": { "tag": ":unsigned-char" } }, { "tag": "field", "name": "__pad2", "bit-offset": 216, "bit-size": 8, "bit-alignment": 8, "type": { "tag": ":unsigned-char" } }, { "tag": "field", "name": "__writer", "bit-offset": 224, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }] } }, { "tag": "field", "name": "__size", "bit-offset": 0, "bit-size": 256, "bit-alignment": 8, "type": { "tag": ":array", "type": { "tag": ":char" }, "size": 32 } }, { "tag": "field", "name": "__align", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":long" } }] } },
144
+{ "tag": "typedef", "name": "pthread_rwlockattr_t", "location": "/usr/include/bits/pthreadtypes.h:210:3", "type": { "tag": "union", "name": "", "id": 18, "location": "/usr/include/bits/pthreadtypes.h:206:9", "bit-size": 64, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "__size", "bit-offset": 0, "bit-size": 64, "bit-alignment": 8, "type": { "tag": ":array", "type": { "tag": ":char" }, "size": 8 } }, { "tag": "field", "name": "__align", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":long" } }] } },
145
+{ "tag": "typedef", "name": "pthread_spinlock_t", "location": "/usr/include/bits/pthreadtypes.h:216:22", "type": { "tag": ":int" } },
146
+{ "tag": "typedef", "name": "pthread_barrier_t", "location": "/usr/include/bits/pthreadtypes.h:225:3", "type": { "tag": "union", "name": "", "id": 19, "location": "/usr/include/bits/pthreadtypes.h:221:9", "bit-size": 160, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "__size", "bit-offset": 0, "bit-size": 160, "bit-alignment": 8, "type": { "tag": ":array", "type": { "tag": ":char" }, "size": 20 } }, { "tag": "field", "name": "__align", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":long" } }] } },
147
+{ "tag": "typedef", "name": "pthread_barrierattr_t", "location": "/usr/include/bits/pthreadtypes.h:231:3", "type": { "tag": "union", "name": "", "id": 20, "location": "/usr/include/bits/pthreadtypes.h:227:9", "bit-size": 32, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "__size", "bit-offset": 0, "bit-size": 32, "bit-alignment": 8, "type": { "tag": ":array", "type": { "tag": ":char" }, "size": 4 } }, { "tag": "field", "name": "__align", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }] } },
148
+{ "tag": "function", "name": "random", "location": "/usr/include/stdlib.h:321:17", "variadic": false, "parameters": [], "return-type": { "tag": ":long" } },
149
+{ "tag": "function", "name": "srandom", "location": "/usr/include/stdlib.h:324:13", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__seed", "type": { "tag": ":unsigned-int" } }], "return-type": { "tag": ":void" } },
150
+{ "tag": "function", "name": "initstate", "location": "/usr/include/stdlib.h:330:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__seed", "type": { "tag": ":unsigned-int" } }, { "tag": "parameter", "name": "__statebuf", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__statelen", "type": { "tag": "size_t" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
151
+{ "tag": "function", "name": "setstate", "location": "/usr/include/stdlib.h:335:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__statebuf", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
152
+{ "tag": "struct", "name": "random_data", "id": 0, "location": "/usr/include/stdlib.h:343:8", "bit-size": 224, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "fptr", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "int32_t" } } }, { "tag": "field", "name": "rptr", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "int32_t" } } }, { "tag": "field", "name": "state", "bit-offset": 64, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "int32_t" } } }, { "tag": "field", "name": "rand_type", "bit-offset": 96, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "rand_deg", "bit-offset": 128, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "rand_sep", "bit-offset": 160, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "end_ptr", "bit-offset": 192, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "int32_t" } } }] },
153
+{ "tag": "function", "name": "random_r", "location": "/usr/include/stdlib.h:354:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__buf", "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "random_data", "id": 0 } } }, { "tag": "parameter", "name": "__result", "type": { "tag": ":pointer", "type": { "tag": "int32_t" } } }], "return-type": { "tag": ":int" } },
154
+{ "tag": "function", "name": "srandom_r", "location": "/usr/include/stdlib.h:357:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__seed", "type": { "tag": ":unsigned-int" } }, { "tag": "parameter", "name": "__buf", "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "random_data", "id": 0 } } }], "return-type": { "tag": ":int" } },
155
+{ "tag": "function", "name": "initstate_r", "location": "/usr/include/stdlib.h:360:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__seed", "type": { "tag": ":unsigned-int" } }, { "tag": "parameter", "name": "__statebuf", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__statelen", "type": { "tag": "size_t" } }, { "tag": "parameter", "name": "__buf", "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "random_data", "id": 0 } } }], "return-type": { "tag": ":int" } },
156
+{ "tag": "function", "name": "setstate_r", "location": "/usr/include/stdlib.h:365:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__statebuf", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__buf", "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "random_data", "id": 0 } } }], "return-type": { "tag": ":int" } },
157
+{ "tag": "function", "name": "rand", "location": "/usr/include/stdlib.h:374:12", "variadic": false, "parameters": [], "return-type": { "tag": ":int" } },
158
+{ "tag": "function", "name": "srand", "location": "/usr/include/stdlib.h:376:13", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__seed", "type": { "tag": ":unsigned-int" } }], "return-type": { "tag": ":void" } },
159
+{ "tag": "function", "name": "rand_r", "location": "/usr/include/stdlib.h:381:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__seed", "type": { "tag": ":pointer", "type": { "tag": ":unsigned-int" } } }], "return-type": { "tag": ":int" } },
160
+{ "tag": "function", "name": "drand48", "location": "/usr/include/stdlib.h:389:15", "variadic": false, "parameters": [], "return-type": { "tag": ":double" } },
161
+{ "tag": "function", "name": "erand48", "location": "/usr/include/stdlib.h:390:15", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__xsubi", "type": { "tag": ":array", "type": { "tag": ":unsigned-short" }, "size": 3 } }], "return-type": { "tag": ":double" } },
162
+{ "tag": "function", "name": "lrand48", "location": "/usr/include/stdlib.h:393:17", "variadic": false, "parameters": [], "return-type": { "tag": ":long" } },
163
+{ "tag": "function", "name": "nrand48", "location": "/usr/include/stdlib.h:394:17", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__xsubi", "type": { "tag": ":array", "type": { "tag": ":unsigned-short" }, "size": 3 } }], "return-type": { "tag": ":long" } },
164
+{ "tag": "function", "name": "mrand48", "location": "/usr/include/stdlib.h:398:17", "variadic": false, "parameters": [], "return-type": { "tag": ":long" } },
165
+{ "tag": "function", "name": "jrand48", "location": "/usr/include/stdlib.h:399:17", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__xsubi", "type": { "tag": ":array", "type": { "tag": ":unsigned-short" }, "size": 3 } }], "return-type": { "tag": ":long" } },
166
+{ "tag": "function", "name": "srand48", "location": "/usr/include/stdlib.h:403:13", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__seedval", "type": { "tag": ":long" } }], "return-type": { "tag": ":void" } },
167
+{ "tag": "function", "name": "seed48", "location": "/usr/include/stdlib.h:404:28", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__seed16v", "type": { "tag": ":array", "type": { "tag": ":unsigned-short" }, "size": 3 } }], "return-type": { "tag": ":pointer", "type": { "tag": ":unsigned-short" } } },
168
+{ "tag": "function", "name": "lcong48", "location": "/usr/include/stdlib.h:406:13", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__param", "type": { "tag": ":array", "type": { "tag": ":unsigned-short" }, "size": 7 } }], "return-type": { "tag": ":void" } },
169
+{ "tag": "struct", "name": "drand48_data", "id": 0, "location": "/usr/include/stdlib.h:412:8", "bit-size": 192, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "__x", "bit-offset": 0, "bit-size": 48, "bit-alignment": 16, "type": { "tag": ":array", "type": { "tag": ":unsigned-short" }, "size": 3 } }, { "tag": "field", "name": "__old_x", "bit-offset": 48, "bit-size": 48, "bit-alignment": 16, "type": { "tag": ":array", "type": { "tag": ":unsigned-short" }, "size": 3 } }, { "tag": "field", "name": "__c", "bit-offset": 96, "bit-size": 16, "bit-alignment": 16, "type": { "tag": ":unsigned-short" } }, { "tag": "field", "name": "__init", "bit-offset": 112, "bit-size": 16, "bit-alignment": 16, "type": { "tag": ":unsigned-short" } }, { "tag": "field", "name": "__a", "bit-offset": 128, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":unsigned-long-long" } }] },
170
+{ "tag": "function", "name": "drand48_r", "location": "/usr/include/stdlib.h:422:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__buffer", "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "drand48_data", "id": 0 } } }, { "tag": "parameter", "name": "__result", "type": { "tag": ":pointer", "type": { "tag": ":double" } } }], "return-type": { "tag": ":int" } },
171
+{ "tag": "function", "name": "erand48_r", "location": "/usr/include/stdlib.h:424:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__xsubi", "type": { "tag": ":array", "type": { "tag": ":unsigned-short" }, "size": 3 } }, { "tag": "parameter", "name": "__buffer", "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "drand48_data", "id": 0 } } }, { "tag": "parameter", "name": "__result", "type": { "tag": ":pointer", "type": { "tag": ":double" } } }], "return-type": { "tag": ":int" } },
172
+{ "tag": "function", "name": "lrand48_r", "location": "/usr/include/stdlib.h:429:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__buffer", "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "drand48_data", "id": 0 } } }, { "tag": "parameter", "name": "__result", "type": { "tag": ":pointer", "type": { "tag": ":long" } } }], "return-type": { "tag": ":int" } },
173
+{ "tag": "function", "name": "nrand48_r", "location": "/usr/include/stdlib.h:432:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__xsubi", "type": { "tag": ":array", "type": { "tag": ":unsigned-short" }, "size": 3 } }, { "tag": "parameter", "name": "__buffer", "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "drand48_data", "id": 0 } } }, { "tag": "parameter", "name": "__result", "type": { "tag": ":pointer", "type": { "tag": ":long" } } }], "return-type": { "tag": ":int" } },
174
+{ "tag": "function", "name": "mrand48_r", "location": "/usr/include/stdlib.h:438:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__buffer", "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "drand48_data", "id": 0 } } }, { "tag": "parameter", "name": "__result", "type": { "tag": ":pointer", "type": { "tag": ":long" } } }], "return-type": { "tag": ":int" } },
175
+{ "tag": "function", "name": "jrand48_r", "location": "/usr/include/stdlib.h:441:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__xsubi", "type": { "tag": ":array", "type": { "tag": ":unsigned-short" }, "size": 3 } }, { "tag": "parameter", "name": "__buffer", "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "drand48_data", "id": 0 } } }, { "tag": "parameter", "name": "__result", "type": { "tag": ":pointer", "type": { "tag": ":long" } } }], "return-type": { "tag": ":int" } },
176
+{ "tag": "function", "name": "srand48_r", "location": "/usr/include/stdlib.h:447:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__seedval", "type": { "tag": ":long" } }, { "tag": "parameter", "name": "__buffer", "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "drand48_data", "id": 0 } } }], "return-type": { "tag": ":int" } },
177
+{ "tag": "function", "name": "seed48_r", "location": "/usr/include/stdlib.h:450:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__seed16v", "type": { "tag": ":array", "type": { "tag": ":unsigned-short" }, "size": 3 } }, { "tag": "parameter", "name": "__buffer", "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "drand48_data", "id": 0 } } }], "return-type": { "tag": ":int" } },
178
+{ "tag": "function", "name": "lcong48_r", "location": "/usr/include/stdlib.h:453:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__param", "type": { "tag": ":array", "type": { "tag": ":unsigned-short" }, "size": 7 } }, { "tag": "parameter", "name": "__buffer", "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "drand48_data", "id": 0 } } }], "return-type": { "tag": ":int" } },
179
+{ "tag": "function", "name": "malloc", "location": "/usr/include/stdlib.h:465:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__size", "type": { "tag": "size_t" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":void" } } },
180
+{ "tag": "function", "name": "calloc", "location": "/usr/include/stdlib.h:467:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__nmemb", "type": { "tag": "size_t" } }, { "tag": "parameter", "name": "__size", "type": { "tag": "size_t" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":void" } } },
181
+{ "tag": "function", "name": "realloc", "location": "/usr/include/stdlib.h:479:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__ptr", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__size", "type": { "tag": "size_t" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":void" } } },
182
+{ "tag": "function", "name": "free", "location": "/usr/include/stdlib.h:482:13", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__ptr", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": ":void" } },
183
+{ "tag": "function", "name": "cfree", "location": "/usr/include/stdlib.h:487:13", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__ptr", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": ":void" } },
184
+{ "tag": "function", "name": "alloca", "location": "/usr/include/alloca.h:32:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__size", "type": { "tag": "size_t" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":void" } } },
185
+{ "tag": "function", "name": "valloc", "location": "/usr/include/stdlib.h:497:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__size", "type": { "tag": "size_t" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":void" } } },
186
+{ "tag": "function", "name": "posix_memalign", "location": "/usr/include/stdlib.h:502:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__memptr", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":void" } } } }, { "tag": "parameter", "name": "__alignment", "type": { "tag": "size_t" } }, { "tag": "parameter", "name": "__size", "type": { "tag": "size_t" } }], "return-type": { "tag": ":int" } },
187
+{ "tag": "function", "name": "abort", "location": "/usr/include/stdlib.h:514:13", "variadic": false, "parameters": [], "return-type": { "tag": ":void" } },
188
+{ "tag": "function", "name": "atexit", "location": "/usr/include/stdlib.h:518:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__func", "type": { "tag": ":function-pointer" } }], "return-type": { "tag": ":int" } },
189
+{ "tag": "function", "name": "on_exit", "location": "/usr/include/stdlib.h:534:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__func", "type": { "tag": ":function-pointer" } }, { "tag": "parameter", "name": "__arg", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": ":int" } },
190
+{ "tag": "function", "name": "exit", "location": "/usr/include/stdlib.h:542:13", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__status", "type": { "tag": ":int" } }], "return-type": { "tag": ":void" } },
191
+{ "tag": "function", "name": "_Exit", "location": "/usr/include/stdlib.h:556:13", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__status", "type": { "tag": ":int" } }], "return-type": { "tag": ":void" } },
192
+{ "tag": "function", "name": "getenv", "location": "/usr/include/stdlib.h:563:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__name", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
193
+{ "tag": "function", "name": "putenv", "location": "/usr/include/stdlib.h:577:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__string", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":int" } },
194
+{ "tag": "function", "name": "setenv", "location": "/usr/include/stdlib.h:583:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__name", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__value", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__replace", "type": { "tag": ":int" } }], "return-type": { "tag": ":int" } },
195
+{ "tag": "function", "name": "unsetenv", "location": "/usr/include/stdlib.h:587:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__name", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":int" } },
196
+{ "tag": "function", "name": "clearenv", "location": "/usr/include/stdlib.h:594:12", "variadic": false, "parameters": [], "return-type": { "tag": ":int" } },
197
+{ "tag": "function", "name": "mktemp", "location": "/usr/include/stdlib.h:605:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__template", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
198
+{ "tag": "function", "name": "mkstemp", "location": "/usr/include/stdlib.h:619:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__template", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":int" } },
199
+{ "tag": "function", "name": "mkstemps", "location": "/usr/include/stdlib.h:641:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__template", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__suffixlen", "type": { "tag": ":int" } }], "return-type": { "tag": ":int" } },
200
+{ "tag": "function", "name": "mkdtemp", "location": "/usr/include/stdlib.h:662:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__template", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
201
+{ "tag": "function", "name": "system", "location": "/usr/include/stdlib.h:716:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__command", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":int" } },
202
+{ "tag": "function", "name": "realpath", "location": "/usr/include/stdlib.h:733:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__name", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__resolved", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
203
+{ "tag": "typedef", "name": "__compar_fn_t", "location": "/usr/include/stdlib.h:741:15", "type": { "tag": ":function-pointer" } },
204
+{ "tag": "function", "name": "bsearch", "location": "/usr/include/stdlib.h:754:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__key", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__base", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__nmemb", "type": { "tag": "size_t" } }, { "tag": "parameter", "name": "__size", "type": { "tag": "size_t" } }, { "tag": "parameter", "name": "__compar", "type": { "tag": "__compar_fn_t" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":void" } } },
205
+{ "tag": "function", "name": "qsort", "location": "/usr/include/stdlib.h:760:13", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__base", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__nmemb", "type": { "tag": "size_t" } }, { "tag": "parameter", "name": "__size", "type": { "tag": "size_t" } }, { "tag": "parameter", "name": "__compar", "type": { "tag": "__compar_fn_t" } }], "return-type": { "tag": ":void" } },
206
+{ "tag": "function", "name": "abs", "location": "/usr/include/stdlib.h:770:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":int" } }], "return-type": { "tag": ":int" } },
207
+{ "tag": "function", "name": "labs", "location": "/usr/include/stdlib.h:771:17", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":long" } }], "return-type": { "tag": ":long" } },
208
+{ "tag": "function", "name": "llabs", "location": "/usr/include/stdlib.h:775:36", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":long-long" } }], "return-type": { "tag": ":long-long" } },
209
+{ "tag": "function", "name": "div", "location": "/usr/include/stdlib.h:784:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__numer", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__denom", "type": { "tag": ":int" } }], "return-type": { "tag": "div_t" } },
210
+{ "tag": "function", "name": "ldiv", "location": "/usr/include/stdlib.h:786:15", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__numer", "type": { "tag": ":long" } }, { "tag": "parameter", "name": "__denom", "type": { "tag": ":long" } }], "return-type": { "tag": "ldiv_t" } },
211
+{ "tag": "function", "name": "lldiv", "location": "/usr/include/stdlib.h:792:30", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__numer", "type": { "tag": ":long-long" } }, { "tag": "parameter", "name": "__denom", "type": { "tag": ":long-long" } }], "return-type": { "tag": "lldiv_t" } },
212
+{ "tag": "function", "name": "ecvt", "location": "/usr/include/stdlib.h:807:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__value", "type": { "tag": ":double" } }, { "tag": "parameter", "name": "__ndigit", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__decpt", "type": { "tag": ":pointer", "type": { "tag": ":int" } } }, { "tag": "parameter", "name": "__sign", "type": { "tag": ":pointer", "type": { "tag": ":int" } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
213
+{ "tag": "function", "name": "fcvt", "location": "/usr/include/stdlib.h:813:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__value", "type": { "tag": ":double" } }, { "tag": "parameter", "name": "__ndigit", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__decpt", "type": { "tag": ":pointer", "type": { "tag": ":int" } } }, { "tag": "parameter", "name": "__sign", "type": { "tag": ":pointer", "type": { "tag": ":int" } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
214
+{ "tag": "function", "name": "gcvt", "location": "/usr/include/stdlib.h:819:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__value", "type": { "tag": ":double" } }, { "tag": "parameter", "name": "__ndigit", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__buf", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
215
+{ "tag": "function", "name": "qecvt", "location": "/usr/include/stdlib.h:825:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__value", "type": { "tag": ":long-double" } }, { "tag": "parameter", "name": "__ndigit", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__decpt", "type": { "tag": ":pointer", "type": { "tag": ":int" } } }, { "tag": "parameter", "name": "__sign", "type": { "tag": ":pointer", "type": { "tag": ":int" } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
216
+{ "tag": "function", "name": "qfcvt", "location": "/usr/include/stdlib.h:828:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__value", "type": { "tag": ":long-double" } }, { "tag": "parameter", "name": "__ndigit", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__decpt", "type": { "tag": ":pointer", "type": { "tag": ":int" } } }, { "tag": "parameter", "name": "__sign", "type": { "tag": ":pointer", "type": { "tag": ":int" } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
217
+{ "tag": "function", "name": "qgcvt", "location": "/usr/include/stdlib.h:831:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__value", "type": { "tag": ":long-double" } }, { "tag": "parameter", "name": "__ndigit", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__buf", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
218
+{ "tag": "function", "name": "ecvt_r", "location": "/usr/include/stdlib.h:837:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__value", "type": { "tag": ":double" } }, { "tag": "parameter", "name": "__ndigit", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__decpt", "type": { "tag": ":pointer", "type": { "tag": ":int" } } }, { "tag": "parameter", "name": "__sign", "type": { "tag": ":pointer", "type": { "tag": ":int" } } }, { "tag": "parameter", "name": "__buf", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__len", "type": { "tag": "size_t" } }], "return-type": { "tag": ":int" } },
219
+{ "tag": "function", "name": "fcvt_r", "location": "/usr/include/stdlib.h:840:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__value", "type": { "tag": ":double" } }, { "tag": "parameter", "name": "__ndigit", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__decpt", "type": { "tag": ":pointer", "type": { "tag": ":int" } } }, { "tag": "parameter", "name": "__sign", "type": { "tag": ":pointer", "type": { "tag": ":int" } } }, { "tag": "parameter", "name": "__buf", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__len", "type": { "tag": "size_t" } }], "return-type": { "tag": ":int" } },
220
+{ "tag": "function", "name": "qecvt_r", "location": "/usr/include/stdlib.h:844:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__value", "type": { "tag": ":long-double" } }, { "tag": "parameter", "name": "__ndigit", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__decpt", "type": { "tag": ":pointer", "type": { "tag": ":int" } } }, { "tag": "parameter", "name": "__sign", "type": { "tag": ":pointer", "type": { "tag": ":int" } } }, { "tag": "parameter", "name": "__buf", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__len", "type": { "tag": "size_t" } }], "return-type": { "tag": ":int" } },
221
+{ "tag": "function", "name": "qfcvt_r", "location": "/usr/include/stdlib.h:848:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__value", "type": { "tag": ":long-double" } }, { "tag": "parameter", "name": "__ndigit", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__decpt", "type": { "tag": ":pointer", "type": { "tag": ":int" } } }, { "tag": "parameter", "name": "__sign", "type": { "tag": ":pointer", "type": { "tag": ":int" } } }, { "tag": "parameter", "name": "__buf", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__len", "type": { "tag": "size_t" } }], "return-type": { "tag": ":int" } },
222
+{ "tag": "function", "name": "mblen", "location": "/usr/include/stdlib.h:859:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }], "return-type": { "tag": ":int" } },
223
+{ "tag": "function", "name": "mbtowc", "location": "/usr/include/stdlib.h:862:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__pwc", "type": { "tag": ":pointer", "type": { "tag": "wchar_t" } } }, { "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }], "return-type": { "tag": ":int" } },
224
+{ "tag": "function", "name": "wctomb", "location": "/usr/include/stdlib.h:866:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__wchar", "type": { "tag": "wchar_t" } }], "return-type": { "tag": ":int" } },
225
+{ "tag": "function", "name": "mbstowcs", "location": "/usr/include/stdlib.h:870:15", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__pwcs", "type": { "tag": ":pointer", "type": { "tag": "wchar_t" } } }, { "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }], "return-type": { "tag": "size_t" } },
226
+{ "tag": "function", "name": "wcstombs", "location": "/usr/include/stdlib.h:873:15", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__pwcs", "type": { "tag": ":pointer", "type": { "tag": "wchar_t" } } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }], "return-type": { "tag": "size_t" } },
227
+{ "tag": "function", "name": "rpmatch", "location": "/usr/include/stdlib.h:884:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__response", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":int" } },
228
+{ "tag": "function", "name": "getsubopt", "location": "/usr/include/stdlib.h:895:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__optionp", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char" } } } }, { "tag": "parameter", "name": "__tokens", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char" } } } }, { "tag": "parameter", "name": "__valuep", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char" } } } }], "return-type": { "tag": ":int" } },
229
+{ "tag": "function", "name": "getloadavg", "location": "/usr/include/stdlib.h:947:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__loadavg", "type": { "tag": ":pointer", "type": { "tag": ":double" } } }, { "tag": "parameter", "name": "__nelem", "type": { "tag": ":int" } }], "return-type": { "tag": ":int" } },
230
+{ "tag": "struct", "name": "_IO_FILE", "id": 0, "location": "/usr/include/stdio.h:44:8", "bit-size": 0, "bit-alignment": 0, "fields": [] },
231
+{ "tag": "typedef", "name": "FILE", "location": "/usr/include/stdio.h:48:25", "type": { "tag": ":struct", "name": "_IO_FILE", "id": 0 } },
232
+{ "tag": "typedef", "name": "__FILE", "location": "/usr/include/stdio.h:64:25", "type": { "tag": ":struct", "name": "_IO_FILE", "id": 0 } },
233
+{ "tag": "typedef", "name": "__mbstate_t", "location": "/usr/include/wchar.h:94:3", "type": { "tag": "struct", "name": "", "id": 21, "location": "/usr/include/wchar.h:82:9", "bit-size": 64, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "__count", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "__value", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "union", "name": "", "id": 22, "location": "/usr/include/wchar.h:85:3", "bit-size": 32, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "__wch", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "__wchb", "bit-offset": 0, "bit-size": 32, "bit-alignment": 8, "type": { "tag": ":array", "type": { "tag": ":char" }, "size": 4 } }] } }] } },
234
+{ "tag": "typedef", "name": "_G_fpos_t", "location": "/usr/include/_G_config.h:25:3", "type": { "tag": "struct", "name": "", "id": 23, "location": "/usr/include/_G_config.h:21:9", "bit-size": 96, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "__pos", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "__off_t" } }, { "tag": "field", "name": "__state", "bit-offset": 32, "bit-size": 64, "bit-alignment": 32, "type": { "tag": "__mbstate_t" } }] } },
235
+{ "tag": "typedef", "name": "_G_fpos64_t", "location": "/usr/include/_G_config.h:30:3", "type": { "tag": "struct", "name": "", "id": 24, "location": "/usr/include/_G_config.h:26:9", "bit-size": 128, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "__pos", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": "__off64_t" } }, { "tag": "field", "name": "__state", "bit-offset": 64, "bit-size": 64, "bit-alignment": 32, "type": { "tag": "__mbstate_t" } }] } },
236
+{ "tag": "typedef", "name": "__gnuc_va_list", "location": "/usr/include/stdarg.h:40:27", "type": { "tag": "__builtin_va_list" } },
237
+{ "tag": "struct", "name": "_IO_jump_t", "id": 0, "location": "/usr/include/libio.h:145:8", "bit-size": 0, "bit-alignment": 0, "fields": [] },
238
+{ "tag": "struct", "name": "_IO_FILE", "id": 0, "location": "/usr/include/libio.h:145:28", "bit-size": 0, "bit-alignment": 0, "fields": [] },
239
+{ "tag": "typedef", "name": "_IO_lock_t", "location": "/usr/include/libio.h:155:14", "type": { "tag": ":void" } },
240
+{ "tag": "struct", "name": "_IO_marker", "id": 0, "location": "/usr/include/libio.h:161:8", "bit-size": 96, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "_next", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "_IO_marker", "id": 0 } } }, { "tag": "field", "name": "_sbuf", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "_IO_FILE", "id": 0 } } }, { "tag": "field", "name": "_pos", "bit-offset": 64, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }] },
241
+{ "tag": "enum", "name": "__codecvt_result", "id": 0, "location": "/usr/include/libio.h:181:6", "fields": [{ "tag": "field", "name": "__codecvt_ok", "value": 0 }, { "tag": "field", "name": "__codecvt_partial", "value": 1 }, { "tag": "field", "name": "__codecvt_error", "value": 2 }, { "tag": "field", "name": "__codecvt_noconv", "value": 3 }] },
242
+{ "tag": "struct", "name": "_IO_FILE", "id": 0, "location": "/usr/include/libio.h:246:8", "bit-size": 1216, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "_flags", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "_IO_read_ptr", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "field", "name": "_IO_read_end", "bit-offset": 64, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "field", "name": "_IO_read_base", "bit-offset": 96, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "field", "name": "_IO_write_base", "bit-offset": 128, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "field", "name": "_IO_write_ptr", "bit-offset": 160, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "field", "name": "_IO_write_end", "bit-offset": 192, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "field", "name": "_IO_buf_base", "bit-offset": 224, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "field", "name": "_IO_buf_end", "bit-offset": 256, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "field", "name": "_IO_save_base", "bit-offset": 288, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "field", "name": "_IO_backup_base", "bit-offset": 320, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "field", "name": "_IO_save_end", "bit-offset": 352, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "field", "name": "_markers", "bit-offset": 384, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "_IO_marker", "id": 0 } } }, { "tag": "field", "name": "_chain", "bit-offset": 416, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "_IO_FILE", "id": 0 } } }, { "tag": "field", "name": "_fileno", "bit-offset": 448, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "_flags2", "bit-offset": 480, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "_old_offset", "bit-offset": 512, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "__off_t" } }, { "tag": "field", "name": "_cur_column", "bit-offset": 544, "bit-size": 16, "bit-alignment": 16, "type": { "tag": ":unsigned-short" } }, { "tag": "field", "name": "_vtable_offset", "bit-offset": 560, "bit-size": 8, "bit-alignment": 8, "type": { "tag": ":signed-char" } }, { "tag": "field", "name": "_shortbuf", "bit-offset": 568, "bit-size": 8, "bit-alignment": 8, "type": { "tag": ":array", "type": { "tag": ":char" }, "size": 1 } }, { "tag": "field", "name": "_lock", "bit-offset": 576, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "field", "name": "_offset", "bit-offset": 640, "bit-size": 64, "bit-alignment": 64, "type": { "tag": "__off64_t" } }, { "tag": "field", "name": "__pad1", "bit-offset": 704, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "field", "name": "__pad2", "bit-offset": 736, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "field", "name": "__pad3", "bit-offset": 768, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "field", "name": "__pad4", "bit-offset": 800, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "field", "name": "__pad5", "bit-offset": 832, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "size_t" } }, { "tag": "field", "name": "_mode", "bit-offset": 864, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "_unused2", "bit-offset": 896, "bit-size": 320, "bit-alignment": 8, "type": { "tag": ":array", "type": { "tag": ":char" }, "size": 40 } }] },
243
+{ "tag": "typedef", "name": "_IO_FILE", "location": "/usr/include/libio.h:316:25", "type": { "tag": ":struct", "name": "_IO_FILE", "id": 0 } },
244
+{ "tag": "struct", "name": "_IO_FILE_plus", "id": 0, "location": "/usr/include/libio.h:319:8", "bit-size": 0, "bit-alignment": 0, "fields": [] },
245
+{ "tag": "extern", "name": "_IO_2_1_stdin_", "location": "/usr/include/libio.h:321:29", "type": { "tag": ":struct", "name": "_IO_FILE_plus", "id": 0 } },
246
+{ "tag": "extern", "name": "_IO_2_1_stdout_", "location": "/usr/include/libio.h:322:29", "type": { "tag": ":struct", "name": "_IO_FILE_plus", "id": 0 } },
247
+{ "tag": "extern", "name": "_IO_2_1_stderr_", "location": "/usr/include/libio.h:323:29", "type": { "tag": ":struct", "name": "_IO_FILE_plus", "id": 0 } },
248
+{ "tag": "typedef", "name": "__io_read_fn", "location": "/usr/include/libio.h:339:19", "type": { "tag": ":function" } },
249
+{ "tag": "typedef", "name": "__io_write_fn", "location": "/usr/include/libio.h:347:19", "type": { "tag": ":function" } },
250
+{ "tag": "typedef", "name": "__io_seek_fn", "location": "/usr/include/libio.h:356:13", "type": { "tag": ":function" } },
251
+{ "tag": "typedef", "name": "__io_close_fn", "location": "/usr/include/libio.h:359:13", "type": { "tag": ":function" } },
252
+{ "tag": "function", "name": "__underflow", "location": "/usr/include/libio.h:391:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": "_IO_FILE" } } }], "return-type": { "tag": ":int" } },
253
+{ "tag": "function", "name": "__uflow", "location": "/usr/include/libio.h:392:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": "_IO_FILE" } } }], "return-type": { "tag": ":int" } },
254
+{ "tag": "function", "name": "__overflow", "location": "/usr/include/libio.h:393:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": "_IO_FILE" } } }, { "tag": "parameter", "name": "", "type": { "tag": ":int" } }], "return-type": { "tag": ":int" } },
255
+{ "tag": "function", "name": "_IO_getc", "location": "/usr/include/libio.h:435:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__fp", "type": { "tag": ":pointer", "type": { "tag": "_IO_FILE" } } }], "return-type": { "tag": ":int" } },
256
+{ "tag": "function", "name": "_IO_putc", "location": "/usr/include/libio.h:436:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__c", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__fp", "type": { "tag": ":pointer", "type": { "tag": "_IO_FILE" } } }], "return-type": { "tag": ":int" } },
257
+{ "tag": "function", "name": "_IO_feof", "location": "/usr/include/libio.h:437:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__fp", "type": { "tag": ":pointer", "type": { "tag": "_IO_FILE" } } }], "return-type": { "tag": ":int" } },
258
+{ "tag": "function", "name": "_IO_ferror", "location": "/usr/include/libio.h:438:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__fp", "type": { "tag": ":pointer", "type": { "tag": "_IO_FILE" } } }], "return-type": { "tag": ":int" } },
259
+{ "tag": "function", "name": "_IO_peekc_locked", "location": "/usr/include/libio.h:440:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__fp", "type": { "tag": ":pointer", "type": { "tag": "_IO_FILE" } } }], "return-type": { "tag": ":int" } },
260
+{ "tag": "function", "name": "_IO_flockfile", "location": "/usr/include/libio.h:446:13", "variadic": false, "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": "_IO_FILE" } } }], "return-type": { "tag": ":void" } },
261
+{ "tag": "function", "name": "_IO_funlockfile", "location": "/usr/include/libio.h:447:13", "variadic": false, "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": "_IO_FILE" } } }], "return-type": { "tag": ":void" } },
262
+{ "tag": "function", "name": "_IO_ftrylockfile", "location": "/usr/include/libio.h:448:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": "_IO_FILE" } } }], "return-type": { "tag": ":int" } },
263
+{ "tag": "function", "name": "_IO_vfscanf", "location": "/usr/include/libio.h:465:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": "_IO_FILE" } } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "", "type": { "tag": "__gnuc_va_list" } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":int" } } }], "return-type": { "tag": ":int" } },
264
+{ "tag": "function", "name": "_IO_vfprintf", "location": "/usr/include/libio.h:467:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": "_IO_FILE" } } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "", "type": { "tag": "__gnuc_va_list" } }], "return-type": { "tag": ":int" } },
265
+{ "tag": "function", "name": "_IO_padn", "location": "/usr/include/libio.h:469:20", "variadic": false, "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": "_IO_FILE" } } }, { "tag": "parameter", "name": "", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "", "type": { "tag": "__ssize_t" } }], "return-type": { "tag": "__ssize_t" } },
266
+{ "tag": "function", "name": "_IO_sgetn", "location": "/usr/include/libio.h:470:19", "variadic": false, "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": "_IO_FILE" } } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "", "type": { "tag": "size_t" } }], "return-type": { "tag": "size_t" } },
267
+{ "tag": "function", "name": "_IO_seekoff", "location": "/usr/include/libio.h:472:20", "variadic": false, "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": "_IO_FILE" } } }, { "tag": "parameter", "name": "", "type": { "tag": "__off64_t" } }, { "tag": "parameter", "name": "", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "", "type": { "tag": ":int" } }], "return-type": { "tag": "__off64_t" } },
268
+{ "tag": "function", "name": "_IO_seekpos", "location": "/usr/include/libio.h:473:20", "variadic": false, "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": "_IO_FILE" } } }, { "tag": "parameter", "name": "", "type": { "tag": "__off64_t" } }, { "tag": "parameter", "name": "", "type": { "tag": ":int" } }], "return-type": { "tag": "__off64_t" } },
269
+{ "tag": "function", "name": "_IO_free_backup_area", "location": "/usr/include/libio.h:475:13", "variadic": false, "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": "_IO_FILE" } } }], "return-type": { "tag": ":void" } },
270
+{ "tag": "typedef", "name": "va_list", "location": "/usr/include/stdio.h:79:20", "type": { "tag": "__gnuc_va_list" } },
271
+{ "tag": "typedef", "name": "fpos_t", "location": "/usr/include/stdio.h:110:19", "type": { "tag": "_G_fpos_t" } },
272
+{ "tag": "extern", "name": "stdin", "location": "/usr/include/stdio.h:168:25", "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "_IO_FILE", "id": 0 } } },
273
+{ "tag": "extern", "name": "stdout", "location": "/usr/include/stdio.h:169:25", "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "_IO_FILE", "id": 0 } } },
274
+{ "tag": "extern", "name": "stderr", "location": "/usr/include/stdio.h:170:25", "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "_IO_FILE", "id": 0 } } },
275
+{ "tag": "function", "name": "remove", "location": "/usr/include/stdio.h:178:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__filename", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":int" } },
276
+{ "tag": "function", "name": "rename", "location": "/usr/include/stdio.h:180:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__old", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__new", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":int" } },
277
+{ "tag": "function", "name": "renameat", "location": "/usr/include/stdio.h:185:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__oldfd", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__old", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__newfd", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__new", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":int" } },
278
+{ "tag": "function", "name": "tmpfile", "location": "/usr/include/stdio.h:195:14", "variadic": false, "parameters": [], "return-type": { "tag": ":pointer", "type": { "tag": "FILE" } } },
279
+{ "tag": "function", "name": "tmpnam", "location": "/usr/include/stdio.h:209:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
280
+{ "tag": "function", "name": "tmpnam_r", "location": "/usr/include/stdio.h:215:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
281
+{ "tag": "function", "name": "tempnam", "location": "/usr/include/stdio.h:227:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__dir", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__pfx", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
282
+{ "tag": "function", "name": "fclose", "location": "/usr/include/stdio.h:237:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":int" } },
283
+{ "tag": "function", "name": "fflush", "location": "/usr/include/stdio.h:242:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":int" } },
284
+{ "tag": "function", "name": "fflush_unlocked", "location": "/usr/include/stdio.h:252:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":int" } },
285
+{ "tag": "function", "name": "fopen", "location": "/usr/include/stdio.h:272:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__filename", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__modes", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":pointer", "type": { "tag": "FILE" } } },
286
+{ "tag": "function", "name": "freopen", "location": "/usr/include/stdio.h:278:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__filename", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__modes", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":pointer", "type": { "tag": "FILE" } } },
287
+{ "tag": "function", "name": "fdopen", "location": "/usr/include/stdio.h:306:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__fd", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__modes", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":pointer", "type": { "tag": "FILE" } } },
288
+{ "tag": "function", "name": "fmemopen", "location": "/usr/include/stdio.h:319:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__len", "type": { "tag": "size_t" } }, { "tag": "parameter", "name": "__modes", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":pointer", "type": { "tag": "FILE" } } },
289
+{ "tag": "function", "name": "open_memstream", "location": "/usr/include/stdio.h:325:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__bufloc", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char" } } } }, { "tag": "parameter", "name": "__sizeloc", "type": { "tag": ":pointer", "type": { "tag": "size_t" } } }], "return-type": { "tag": ":pointer", "type": { "tag": "FILE" } } },
290
+{ "tag": "function", "name": "setbuf", "location": "/usr/include/stdio.h:332:13", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }, { "tag": "parameter", "name": "__buf", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":void" } },
291
+{ "tag": "function", "name": "setvbuf", "location": "/usr/include/stdio.h:336:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }, { "tag": "parameter", "name": "__buf", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__modes", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }], "return-type": { "tag": ":int" } },
292
+{ "tag": "function", "name": "setbuffer", "location": "/usr/include/stdio.h:343:13", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }, { "tag": "parameter", "name": "__buf", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__size", "type": { "tag": "size_t" } }], "return-type": { "tag": ":void" } },
293
+{ "tag": "function", "name": "setlinebuf", "location": "/usr/include/stdio.h:347:13", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":void" } },
294
+{ "tag": "function", "name": "fprintf", "location": "/usr/include/stdio.h:356:12", "variadic": true, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }, { "tag": "parameter", "name": "__format", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":int" } },
295
+{ "tag": "function", "name": "printf", "location": "/usr/include/stdio.h:362:12", "variadic": true, "parameters": [{ "tag": "parameter", "name": "__format", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":int" } },
296
+{ "tag": "function", "name": "sprintf", "location": "/usr/include/stdio.h:364:12", "variadic": true, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__format", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":int" } },
297
+{ "tag": "function", "name": "vfprintf", "location": "/usr/include/stdio.h:371:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }, { "tag": "parameter", "name": "__format", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__arg", "type": { "tag": "__gnuc_va_list" } }], "return-type": { "tag": ":int" } },
298
+{ "tag": "function", "name": "vprintf", "location": "/usr/include/stdio.h:377:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__format", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__arg", "type": { "tag": "__gnuc_va_list" } }], "return-type": { "tag": ":int" } },
299
+{ "tag": "function", "name": "vsprintf", "location": "/usr/include/stdio.h:379:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__format", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__arg", "type": { "tag": "__gnuc_va_list" } }], "return-type": { "tag": ":int" } },
300
+{ "tag": "function", "name": "snprintf", "location": "/usr/include/stdio.h:386:12", "variadic": true, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__maxlen", "type": { "tag": "size_t" } }, { "tag": "parameter", "name": "__format", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":int" } },
301
+{ "tag": "function", "name": "vsnprintf", "location": "/usr/include/stdio.h:390:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__maxlen", "type": { "tag": "size_t" } }, { "tag": "parameter", "name": "__format", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__arg", "type": { "tag": "__gnuc_va_list" } }], "return-type": { "tag": ":int" } },
302
+{ "tag": "function", "name": "vdprintf", "location": "/usr/include/stdio.h:412:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__fd", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__fmt", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__arg", "type": { "tag": "__gnuc_va_list" } }], "return-type": { "tag": ":int" } },
303
+{ "tag": "function", "name": "dprintf", "location": "/usr/include/stdio.h:415:12", "variadic": true, "parameters": [{ "tag": "parameter", "name": "__fd", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__fmt", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":int" } },
304
+{ "tag": "function", "name": "fscanf", "location": "/usr/include/stdio.h:425:12", "variadic": true, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }, { "tag": "parameter", "name": "__format", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":int" } },
305
+{ "tag": "function", "name": "scanf", "location": "/usr/include/stdio.h:431:12", "variadic": true, "parameters": [{ "tag": "parameter", "name": "__format", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":int" } },
306
+{ "tag": "function", "name": "sscanf", "location": "/usr/include/stdio.h:433:12", "variadic": true, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__format", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":int" } },
307
+{ "tag": "function", "name": "fscanf", "location": "/usr/include/stdio.h:443:12 <Spelling=/usr/include/stdio.h:443:24>", "variadic": true, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }, { "tag": "parameter", "name": "__format", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":int" } },
308
+{ "tag": "function", "name": "scanf", "location": "/usr/include/stdio.h:446:12 <Spelling=/usr/include/stdio.h:446:24>", "variadic": true, "parameters": [{ "tag": "parameter", "name": "__format", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":int" } },
309
+{ "tag": "function", "name": "sscanf", "location": "/usr/include/stdio.h:448:12 <Spelling=/usr/include/stdio.h:448:28>", "variadic": true, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__format", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":int" } },
310
+{ "tag": "function", "name": "vfscanf", "location": "/usr/include/stdio.h:471:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }, { "tag": "parameter", "name": "__format", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__arg", "type": { "tag": "__gnuc_va_list" } }], "return-type": { "tag": ":int" } },
311
+{ "tag": "function", "name": "vscanf", "location": "/usr/include/stdio.h:479:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__format", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__arg", "type": { "tag": "__gnuc_va_list" } }], "return-type": { "tag": ":int" } },
312
+{ "tag": "function", "name": "vsscanf", "location": "/usr/include/stdio.h:483:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__format", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__arg", "type": { "tag": "__gnuc_va_list" } }], "return-type": { "tag": ":int" } },
313
+{ "tag": "function", "name": "vfscanf", "location": "/usr/include/stdio.h:494:12 <Spelling=/usr/include/stdio.h:494:24>", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }, { "tag": "parameter", "name": "__format", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__arg", "type": { "tag": "__gnuc_va_list" } }], "return-type": { "tag": ":int" } },
314
+{ "tag": "function", "name": "vscanf", "location": "/usr/include/stdio.h:499:12 <Spelling=/usr/include/stdio.h:499:24>", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__format", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__arg", "type": { "tag": "__gnuc_va_list" } }], "return-type": { "tag": ":int" } },
315
+{ "tag": "function", "name": "vsscanf", "location": "/usr/include/stdio.h:502:12 <Spelling=/usr/include/stdio.h:502:28>", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__format", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__arg", "type": { "tag": "__gnuc_va_list" } }], "return-type": { "tag": ":int" } },
316
+{ "tag": "function", "name": "fgetc", "location": "/usr/include/stdio.h:531:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":int" } },
317
+{ "tag": "function", "name": "getc", "location": "/usr/include/stdio.h:532:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":int" } },
318
+{ "tag": "function", "name": "getchar", "location": "/usr/include/stdio.h:538:12", "variadic": false, "parameters": [], "return-type": { "tag": ":int" } },
319
+{ "tag": "function", "name": "getc_unlocked", "location": "/usr/include/stdio.h:550:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":int" } },
320
+{ "tag": "function", "name": "getchar_unlocked", "location": "/usr/include/stdio.h:551:12", "variadic": false, "parameters": [], "return-type": { "tag": ":int" } },
321
+{ "tag": "function", "name": "fgetc_unlocked", "location": "/usr/include/stdio.h:561:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":int" } },
322
+{ "tag": "function", "name": "fputc", "location": "/usr/include/stdio.h:573:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__c", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":int" } },
323
+{ "tag": "function", "name": "putc", "location": "/usr/include/stdio.h:574:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__c", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":int" } },
324
+{ "tag": "function", "name": "putchar", "location": "/usr/include/stdio.h:580:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__c", "type": { "tag": ":int" } }], "return-type": { "tag": ":int" } },
325
+{ "tag": "function", "name": "fputc_unlocked", "location": "/usr/include/stdio.h:594:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__c", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":int" } },
326
+{ "tag": "function", "name": "putc_unlocked", "location": "/usr/include/stdio.h:602:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__c", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":int" } },
327
+{ "tag": "function", "name": "putchar_unlocked", "location": "/usr/include/stdio.h:603:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__c", "type": { "tag": ":int" } }], "return-type": { "tag": ":int" } },
328
+{ "tag": "function", "name": "getw", "location": "/usr/include/stdio.h:610:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":int" } },
329
+{ "tag": "function", "name": "putw", "location": "/usr/include/stdio.h:613:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__w", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":int" } },
330
+{ "tag": "function", "name": "fgets", "location": "/usr/include/stdio.h:622:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__n", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
331
+{ "tag": "function", "name": "gets", "location": "/usr/include/stdio.h:638:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
332
+{ "tag": "function", "name": "__getdelim", "location": "/usr/include/stdio.h:665:20", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__lineptr", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char" } } } }, { "tag": "parameter", "name": "__n", "type": { "tag": ":pointer", "type": { "tag": "size_t" } } }, { "tag": "parameter", "name": "__delimiter", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": "__ssize_t" } },
333
+{ "tag": "function", "name": "getdelim", "location": "/usr/include/stdio.h:668:20", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__lineptr", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char" } } } }, { "tag": "parameter", "name": "__n", "type": { "tag": ":pointer", "type": { "tag": "size_t" } } }, { "tag": "parameter", "name": "__delimiter", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": "__ssize_t" } },
334
+{ "tag": "function", "name": "getline", "location": "/usr/include/stdio.h:678:20", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__lineptr", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char" } } } }, { "tag": "parameter", "name": "__n", "type": { "tag": ":pointer", "type": { "tag": "size_t" } } }, { "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": "__ssize_t" } },
335
+{ "tag": "function", "name": "fputs", "location": "/usr/include/stdio.h:689:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":int" } },
336
+{ "tag": "function", "name": "puts", "location": "/usr/include/stdio.h:695:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":int" } },
337
+{ "tag": "function", "name": "ungetc", "location": "/usr/include/stdio.h:702:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__c", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":int" } },
338
+{ "tag": "function", "name": "fread", "location": "/usr/include/stdio.h:709:15", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__ptr", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__size", "type": { "tag": "size_t" } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }, { "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": "size_t" } },
339
+{ "tag": "function", "name": "fwrite", "location": "/usr/include/stdio.h:715:15", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__ptr", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__size", "type": { "tag": "size_t" } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }, { "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": "size_t" } },
340
+{ "tag": "function", "name": "fread_unlocked", "location": "/usr/include/stdio.h:737:15", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__ptr", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__size", "type": { "tag": "size_t" } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }, { "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": "size_t" } },
341
+{ "tag": "function", "name": "fwrite_unlocked", "location": "/usr/include/stdio.h:739:15", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__ptr", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__size", "type": { "tag": "size_t" } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }, { "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": "size_t" } },
342
+{ "tag": "function", "name": "fseek", "location": "/usr/include/stdio.h:749:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }, { "tag": "parameter", "name": "__off", "type": { "tag": ":long" } }, { "tag": "parameter", "name": "__whence", "type": { "tag": ":int" } }], "return-type": { "tag": ":int" } },
343
+{ "tag": "function", "name": "ftell", "location": "/usr/include/stdio.h:754:17", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":long" } },
344
+{ "tag": "function", "name": "rewind", "location": "/usr/include/stdio.h:759:13", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":void" } },
345
+{ "tag": "function", "name": "fseeko", "location": "/usr/include/stdio.h:773:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }, { "tag": "parameter", "name": "__off", "type": { "tag": "__off_t" } }, { "tag": "parameter", "name": "__whence", "type": { "tag": ":int" } }], "return-type": { "tag": ":int" } },
346
+{ "tag": "function", "name": "ftello", "location": "/usr/include/stdio.h:778:16", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": "__off_t" } },
347
+{ "tag": "function", "name": "fgetpos", "location": "/usr/include/stdio.h:798:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }, { "tag": "parameter", "name": "__pos", "type": { "tag": ":pointer", "type": { "tag": "fpos_t" } } }], "return-type": { "tag": ":int" } },
348
+{ "tag": "function", "name": "fsetpos", "location": "/usr/include/stdio.h:803:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }, { "tag": "parameter", "name": "__pos", "type": { "tag": ":pointer", "type": { "tag": "fpos_t" } } }], "return-type": { "tag": ":int" } },
349
+{ "tag": "function", "name": "clearerr", "location": "/usr/include/stdio.h:826:13", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":void" } },
350
+{ "tag": "function", "name": "feof", "location": "/usr/include/stdio.h:828:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":int" } },
351
+{ "tag": "function", "name": "ferror", "location": "/usr/include/stdio.h:830:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":int" } },
352
+{ "tag": "function", "name": "clearerr_unlocked", "location": "/usr/include/stdio.h:835:13", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":void" } },
353
+{ "tag": "function", "name": "feof_unlocked", "location": "/usr/include/stdio.h:836:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":int" } },
354
+{ "tag": "function", "name": "ferror_unlocked", "location": "/usr/include/stdio.h:837:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":int" } },
355
+{ "tag": "function", "name": "perror", "location": "/usr/include/stdio.h:846:13", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":void" } },
356
+{ "tag": "extern", "name": "sys_nerr", "location": "/usr/include/bits/sys_errlist.h:26:12", "type": { "tag": ":int" } },
357
+{ "tag": "extern", "name": "sys_errlist", "location": "/usr/include/bits/sys_errlist.h:27:26", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char" } } } },
358
+{ "tag": "function", "name": "fileno", "location": "/usr/include/stdio.h:858:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":int" } },
359
+{ "tag": "function", "name": "fileno_unlocked", "location": "/usr/include/stdio.h:863:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":int" } },
360
+{ "tag": "function", "name": "popen", "location": "/usr/include/stdio.h:873:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__command", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__modes", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":pointer", "type": { "tag": "FILE" } } },
361
+{ "tag": "function", "name": "pclose", "location": "/usr/include/stdio.h:879:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":int" } },
362
+{ "tag": "function", "name": "ctermid", "location": "/usr/include/stdio.h:885:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
363
+{ "tag": "function", "name": "flockfile", "location": "/usr/include/stdio.h:913:13", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":void" } },
364
+{ "tag": "function", "name": "ftrylockfile", "location": "/usr/include/stdio.h:917:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":int" } },
365
+{ "tag": "function", "name": "funlockfile", "location": "/usr/include/stdio.h:920:13", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":void" } },
366
+{ "tag": "function", "name": "memcpy", "location": "/usr/include/string.h:42:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__dest", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__src", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":void" } } },
367
+{ "tag": "function", "name": "memmove", "location": "/usr/include/string.h:46:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__dest", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__src", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":void" } } },
368
+{ "tag": "function", "name": "memccpy", "location": "/usr/include/string.h:54:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__dest", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__src", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__c", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":void" } } },
369
+{ "tag": "function", "name": "memset", "location": "/usr/include/string.h:62:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__c", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":void" } } },
370
+{ "tag": "function", "name": "memcmp", "location": "/usr/include/string.h:65:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s1", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__s2", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }], "return-type": { "tag": ":int" } },
371
+{ "tag": "function", "name": "memchr", "location": "/usr/include/string.h:92:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__c", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":void" } } },
372
+{ "tag": "function", "name": "strcpy", "location": "/usr/include/string.h:125:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__dest", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__src", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
373
+{ "tag": "function", "name": "strncpy", "location": "/usr/include/string.h:128:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__dest", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__src", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
374
+{ "tag": "function", "name": "strcat", "location": "/usr/include/string.h:133:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__dest", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__src", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
375
+{ "tag": "function", "name": "strncat", "location": "/usr/include/string.h:136:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__dest", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__src", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
376
+{ "tag": "function", "name": "strcmp", "location": "/usr/include/string.h:140:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s1", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__s2", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":int" } },
377
+{ "tag": "function", "name": "strncmp", "location": "/usr/include/string.h:143:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s1", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__s2", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }], "return-type": { "tag": ":int" } },
378
+{ "tag": "function", "name": "strcoll", "location": "/usr/include/string.h:147:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s1", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__s2", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":int" } },
379
+{ "tag": "function", "name": "strxfrm", "location": "/usr/include/string.h:150:15", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__dest", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__src", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }], "return-type": { "tag": "size_t" } },
380
+{ "tag": "struct", "name": "__locale_struct", "id": 0, "location": "/usr/include/xlocale.h:27:16", "bit-size": 928, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "__locales", "bit-offset": 0, "bit-size": 416, "bit-alignment": 32, "type": { "tag": ":array", "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "__locale_data", "id": 0 } }, "size": 13 } }, { "tag": "field", "name": "__ctype_b", "bit-offset": 416, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": ":unsigned-short" } } }, { "tag": "field", "name": "__ctype_tolower", "bit-offset": 448, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": ":int" } } }, { "tag": "field", "name": "__ctype_toupper", "bit-offset": 480, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": ":int" } } }, { "tag": "field", "name": "__names", "bit-offset": 512, "bit-size": 416, "bit-alignment": 32, "type": { "tag": ":array", "type": { "tag": ":pointer", "type": { "tag": ":char" } }, "size": 13 } }] },
381
+{ "tag": "typedef", "name": "__locale_t", "location": "/usr/include/xlocale.h:39:4", "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "__locale_struct", "id": 0 } } },
382
+{ "tag": "typedef", "name": "locale_t", "location": "/usr/include/xlocale.h:42:20", "type": { "tag": "__locale_t" } },
383
+{ "tag": "function", "name": "strcoll_l", "location": "/usr/include/string.h:162:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s1", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__s2", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__l", "type": { "tag": "__locale_t" } }], "return-type": { "tag": ":int" } },
384
+{ "tag": "function", "name": "strxfrm_l", "location": "/usr/include/string.h:165:15", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__dest", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__src", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }, { "tag": "parameter", "name": "__l", "type": { "tag": "__locale_t" } }], "return-type": { "tag": "size_t" } },
385
+{ "tag": "function", "name": "strdup", "location": "/usr/include/string.h:172:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
386
+{ "tag": "function", "name": "strndup", "location": "/usr/include/string.h:180:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__string", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
387
+{ "tag": "function", "name": "strchr", "location": "/usr/include/string.h:232:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__c", "type": { "tag": ":int" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
388
+{ "tag": "function", "name": "strrchr", "location": "/usr/include/string.h:259:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__c", "type": { "tag": ":int" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
389
+{ "tag": "function", "name": "strcspn", "location": "/usr/include/string.h:281:15", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__reject", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": "size_t" } },
390
+{ "tag": "function", "name": "strspn", "location": "/usr/include/string.h:285:15", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__accept", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": "size_t" } },
391
+{ "tag": "function", "name": "strpbrk", "location": "/usr/include/string.h:311:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__accept", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
392
+{ "tag": "function", "name": "strstr", "location": "/usr/include/string.h:338:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__haystack", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__needle", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
393
+{ "tag": "function", "name": "strtok", "location": "/usr/include/string.h:344:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__delim", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
394
+{ "tag": "function", "name": "__strtok_r", "location": "/usr/include/string.h:350:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__delim", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__save_ptr", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char" } } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
395
+{ "tag": "function", "name": "strtok_r", "location": "/usr/include/string.h:355:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__delim", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__save_ptr", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char" } } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
396
+{ "tag": "function", "name": "strlen", "location": "/usr/include/string.h:395:15", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": "size_t" } },
397
+{ "tag": "function", "name": "strnlen", "location": "/usr/include/string.h:402:15", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__string", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__maxlen", "type": { "tag": "size_t" } }], "return-type": { "tag": "size_t" } },
398
+{ "tag": "function", "name": "strerror", "location": "/usr/include/string.h:409:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__errnum", "type": { "tag": ":int" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
399
+{ "tag": "function", "name": "strerror_r", "location": "/usr/include/string.h:423:12 <Spelling=/usr/include/string.h:423:28>", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__errnum", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__buf", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__buflen", "type": { "tag": "size_t" } }], "return-type": { "tag": ":int" } },
400
+{ "tag": "function", "name": "strerror_l", "location": "/usr/include/string.h:441:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__errnum", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__l", "type": { "tag": "__locale_t" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
401
+{ "tag": "function", "name": "__bzero", "location": "/usr/include/string.h:447:13", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }], "return-type": { "tag": ":void" } },
402
+{ "tag": "function", "name": "bcopy", "location": "/usr/include/string.h:451:13", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__src", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__dest", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }], "return-type": { "tag": ":void" } },
403
+{ "tag": "function", "name": "bzero", "location": "/usr/include/string.h:455:13", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }], "return-type": { "tag": ":void" } },
404
+{ "tag": "function", "name": "bcmp", "location": "/usr/include/string.h:458:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s1", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__s2", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }], "return-type": { "tag": ":int" } },
405
+{ "tag": "function", "name": "index", "location": "/usr/include/string.h:485:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__c", "type": { "tag": ":int" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
406
+{ "tag": "function", "name": "rindex", "location": "/usr/include/string.h:513:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__c", "type": { "tag": ":int" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
407
+{ "tag": "function", "name": "ffs", "location": "/usr/include/string.h:519:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__i", "type": { "tag": ":int" } }], "return-type": { "tag": ":int" } },
408
+{ "tag": "function", "name": "strcasecmp", "location": "/usr/include/string.h:532:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s1", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__s2", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":int" } },
409
+{ "tag": "function", "name": "strncasecmp", "location": "/usr/include/string.h:536:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s1", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__s2", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }], "return-type": { "tag": ":int" } },
410
+{ "tag": "function", "name": "strsep", "location": "/usr/include/string.h:555:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stringp", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char" } } } }, { "tag": "parameter", "name": "__delim", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
411
+{ "tag": "function", "name": "strsignal", "location": "/usr/include/string.h:562:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__sig", "type": { "tag": ":int" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
412
+{ "tag": "function", "name": "__stpcpy", "location": "/usr/include/string.h:565:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__dest", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__src", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
413
+{ "tag": "function", "name": "stpcpy", "location": "/usr/include/string.h:567:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__dest", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__src", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
414
+{ "tag": "function", "name": "__stpncpy", "location": "/usr/include/string.h:572:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__dest", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__src", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
415
+{ "tag": "function", "name": "stpncpy", "location": "/usr/include/string.h:575:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__dest", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__src", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
416
+{ "tag": "function", "name": "yaml_get_version_string", "location": "/usr/include/yaml.h:57:1", "variadic": false, "parameters": [], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
417
+{ "tag": "function", "name": "yaml_get_version", "location": "/usr/include/yaml.h:68:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "major", "type": { "tag": ":pointer", "type": { "tag": ":int" } } }, { "tag": "parameter", "name": "minor", "type": { "tag": ":pointer", "type": { "tag": ":int" } } }, { "tag": "parameter", "name": "patch", "type": { "tag": ":pointer", "type": { "tag": ":int" } } }], "return-type": { "tag": ":void" } },
418
+{ "tag": "typedef", "name": "yaml_char_t", "location": "/usr/include/yaml.h:78:23", "type": { "tag": ":unsigned-char" } },
419
+{ "tag": "struct", "name": "yaml_version_directive_s", "id": 0, "location": "/usr/include/yaml.h:81:16", "bit-size": 64, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "major", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "minor", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }] },
420
+{ "tag": "typedef", "name": "yaml_version_directive_t", "location": "/usr/include/yaml.h:86:3", "type": { "tag": ":struct", "name": "yaml_version_directive_s", "id": 0 } },
421
+{ "tag": "struct", "name": "yaml_tag_directive_s", "id": 0, "location": "/usr/include/yaml.h:89:16", "bit-size": 64, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "handle", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "field", "name": "prefix", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }] },
422
+{ "tag": "typedef", "name": "yaml_tag_directive_t", "location": "/usr/include/yaml.h:94:3", "type": { "tag": ":struct", "name": "yaml_tag_directive_s", "id": 0 } },
423
+{ "tag": "enum", "name": "yaml_encoding_e", "id": 0, "location": "/usr/include/yaml.h:97:14", "fields": [{ "tag": "field", "name": "YAML_ANY_ENCODING", "value": 0 }, { "tag": "field", "name": "YAML_UTF8_ENCODING", "value": 1 }, { "tag": "field", "name": "YAML_UTF16LE_ENCODING", "value": 2 }, { "tag": "field", "name": "YAML_UTF16BE_ENCODING", "value": 3 }] },
424
+{ "tag": "typedef", "name": "yaml_encoding_t", "location": "/usr/include/yaml.h:106:3", "type": { "tag": ":enum", "name": "yaml_encoding_e", "id": 0 } },
425
+{ "tag": "enum", "name": "yaml_break_e", "id": 0, "location": "/usr/include/yaml.h:110:14", "fields": [{ "tag": "field", "name": "YAML_ANY_BREAK", "value": 0 }, { "tag": "field", "name": "YAML_CR_BREAK", "value": 1 }, { "tag": "field", "name": "YAML_LN_BREAK", "value": 2 }, { "tag": "field", "name": "YAML_CRLN_BREAK", "value": 3 }] },
426
+{ "tag": "typedef", "name": "yaml_break_t", "location": "/usr/include/yaml.h:119:3", "type": { "tag": ":enum", "name": "yaml_break_e", "id": 0 } },
427
+{ "tag": "enum", "name": "yaml_error_type_e", "id": 0, "location": "/usr/include/yaml.h:122:14", "fields": [{ "tag": "field", "name": "YAML_NO_ERROR", "value": 0 }, { "tag": "field", "name": "YAML_MEMORY_ERROR", "value": 1 }, { "tag": "field", "name": "YAML_READER_ERROR", "value": 2 }, { "tag": "field", "name": "YAML_SCANNER_ERROR", "value": 3 }, { "tag": "field", "name": "YAML_PARSER_ERROR", "value": 4 }, { "tag": "field", "name": "YAML_COMPOSER_ERROR", "value": 5 }, { "tag": "field", "name": "YAML_WRITER_ERROR", "value": 6 }, { "tag": "field", "name": "YAML_EMITTER_ERROR", "value": 7 }] },
428
+{ "tag": "typedef", "name": "yaml_error_type_t", "location": "/usr/include/yaml.h:142:3", "type": { "tag": ":enum", "name": "yaml_error_type_e", "id": 0 } },
429
+{ "tag": "struct", "name": "yaml_mark_s", "id": 0, "location": "/usr/include/yaml.h:145:16", "bit-size": 96, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "index", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "size_t" } }, { "tag": "field", "name": "line", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "size_t" } }, { "tag": "field", "name": "column", "bit-offset": 64, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "size_t" } }] },
430
+{ "tag": "typedef", "name": "yaml_mark_t", "location": "/usr/include/yaml.h:154:3", "type": { "tag": ":struct", "name": "yaml_mark_s", "id": 0 } },
431
+{ "tag": "enum", "name": "yaml_scalar_style_e", "id": 0, "location": "/usr/include/yaml.h:164:14", "fields": [{ "tag": "field", "name": "YAML_ANY_SCALAR_STYLE", "value": 0 }, { "tag": "field", "name": "YAML_PLAIN_SCALAR_STYLE", "value": 1 }, { "tag": "field", "name": "YAML_SINGLE_QUOTED_SCALAR_STYLE", "value": 2 }, { "tag": "field", "name": "YAML_DOUBLE_QUOTED_SCALAR_STYLE", "value": 3 }, { "tag": "field", "name": "YAML_LITERAL_SCALAR_STYLE", "value": 4 }, { "tag": "field", "name": "YAML_FOLDED_SCALAR_STYLE", "value": 5 }] },
432
+{ "tag": "typedef", "name": "yaml_scalar_style_t", "location": "/usr/include/yaml.h:180:3", "type": { "tag": ":enum", "name": "yaml_scalar_style_e", "id": 0 } },
433
+{ "tag": "enum", "name": "yaml_sequence_style_e", "id": 0, "location": "/usr/include/yaml.h:183:14", "fields": [{ "tag": "field", "name": "YAML_ANY_SEQUENCE_STYLE", "value": 0 }, { "tag": "field", "name": "YAML_BLOCK_SEQUENCE_STYLE", "value": 1 }, { "tag": "field", "name": "YAML_FLOW_SEQUENCE_STYLE", "value": 2 }] },
434
+{ "tag": "typedef", "name": "yaml_sequence_style_t", "location": "/usr/include/yaml.h:191:3", "type": { "tag": ":enum", "name": "yaml_sequence_style_e", "id": 0 } },
435
+{ "tag": "enum", "name": "yaml_mapping_style_e", "id": 0, "location": "/usr/include/yaml.h:194:14", "fields": [{ "tag": "field", "name": "YAML_ANY_MAPPING_STYLE", "value": 0 }, { "tag": "field", "name": "YAML_BLOCK_MAPPING_STYLE", "value": 1 }, { "tag": "field", "name": "YAML_FLOW_MAPPING_STYLE", "value": 2 }] },
436
+{ "tag": "typedef", "name": "yaml_mapping_style_t", "location": "/usr/include/yaml.h:203:3", "type": { "tag": ":enum", "name": "yaml_mapping_style_e", "id": 0 } },
437
+{ "tag": "enum", "name": "yaml_token_type_e", "id": 0, "location": "/usr/include/yaml.h:213:14", "fields": [{ "tag": "field", "name": "YAML_NO_TOKEN", "value": 0 }, { "tag": "field", "name": "YAML_STREAM_START_TOKEN", "value": 1 }, { "tag": "field", "name": "YAML_STREAM_END_TOKEN", "value": 2 }, { "tag": "field", "name": "YAML_VERSION_DIRECTIVE_TOKEN", "value": 3 }, { "tag": "field", "name": "YAML_TAG_DIRECTIVE_TOKEN", "value": 4 }, { "tag": "field", "name": "YAML_DOCUMENT_START_TOKEN", "value": 5 }, { "tag": "field", "name": "YAML_DOCUMENT_END_TOKEN", "value": 6 }, { "tag": "field", "name": "YAML_BLOCK_SEQUENCE_START_TOKEN", "value": 7 }, { "tag": "field", "name": "YAML_BLOCK_MAPPING_START_TOKEN", "value": 8 }, { "tag": "field", "name": "YAML_BLOCK_END_TOKEN", "value": 9 }, { "tag": "field", "name": "YAML_FLOW_SEQUENCE_START_TOKEN", "value": 10 }, { "tag": "field", "name": "YAML_FLOW_SEQUENCE_END_TOKEN", "value": 11 }, { "tag": "field", "name": "YAML_FLOW_MAPPING_START_TOKEN", "value": 12 }, { "tag": "field", "name": "YAML_FLOW_MAPPING_END_TOKEN", "value": 13 }, { "tag": "field", "name": "YAML_BLOCK_ENTRY_TOKEN", "value": 14 }, { "tag": "field", "name": "YAML_FLOW_ENTRY_TOKEN", "value": 15 }, { "tag": "field", "name": "YAML_KEY_TOKEN", "value": 16 }, { "tag": "field", "name": "YAML_VALUE_TOKEN", "value": 17 }, { "tag": "field", "name": "YAML_ALIAS_TOKEN", "value": 18 }, { "tag": "field", "name": "YAML_ANCHOR_TOKEN", "value": 19 }, { "tag": "field", "name": "YAML_TAG_TOKEN", "value": 20 }, { "tag": "field", "name": "YAML_SCALAR_TOKEN", "value": 21 }] },
438
+{ "tag": "typedef", "name": "yaml_token_type_t", "location": "/usr/include/yaml.h:264:3", "type": { "tag": ":enum", "name": "yaml_token_type_e", "id": 0 } },
439
+{ "tag": "struct", "name": "yaml_token_s", "id": 0, "location": "/usr/include/yaml.h:267:16", "bit-size": 320, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "type", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "yaml_token_type_t" } }, { "tag": "field", "name": "data", "bit-offset": 32, "bit-size": 96, "bit-alignment": 32, "type": { "tag": "union", "name": "", "id": 25, "location": "/usr/include/yaml.h:273:5", "bit-size": 96, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "stream_start", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "struct", "name": "", "id": 26, "location": "/usr/include/yaml.h:276:9", "bit-size": 32, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "encoding", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "yaml_encoding_t" } }] } }, { "tag": "field", "name": "alias", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "struct", "name": "", "id": 27, "location": "/usr/include/yaml.h:282:9", "bit-size": 32, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "value", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }] } }, { "tag": "field", "name": "anchor", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "struct", "name": "", "id": 28, "location": "/usr/include/yaml.h:288:9", "bit-size": 32, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "value", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }] } }, { "tag": "field", "name": "tag", "bit-offset": 0, "bit-size": 64, "bit-alignment": 32, "type": { "tag": "struct", "name": "", "id": 29, "location": "/usr/include/yaml.h:294:9", "bit-size": 64, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "handle", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "field", "name": "suffix", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }] } }, { "tag": "field", "name": "scalar", "bit-offset": 0, "bit-size": 96, "bit-alignment": 32, "type": { "tag": "struct", "name": "", "id": 30, "location": "/usr/include/yaml.h:302:9", "bit-size": 96, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "value", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "field", "name": "length", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "size_t" } }, { "tag": "field", "name": "style", "bit-offset": 64, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "yaml_scalar_style_t" } }] } }, { "tag": "field", "name": "version_directive", "bit-offset": 0, "bit-size": 64, "bit-alignment": 32, "type": { "tag": "struct", "name": "", "id": 31, "location": "/usr/include/yaml.h:312:9", "bit-size": 64, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "major", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "minor", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }] } }, { "tag": "field", "name": "tag_directive", "bit-offset": 0, "bit-size": 64, "bit-alignment": 32, "type": { "tag": "struct", "name": "", "id": 32, "location": "/usr/include/yaml.h:320:9", "bit-size": 64, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "handle", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "field", "name": "prefix", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }] } }] } }, { "tag": "field", "name": "start_mark", "bit-offset": 128, "bit-size": 96, "bit-alignment": 32, "type": { "tag": "yaml_mark_t" } }, { "tag": "field", "name": "end_mark", "bit-offset": 224, "bit-size": 96, "bit-alignment": 32, "type": { "tag": "yaml_mark_t" } }] },
440
+{ "tag": "typedef", "name": "yaml_token_t", "location": "/usr/include/yaml.h:334:3", "type": { "tag": ":struct", "name": "yaml_token_s", "id": 0 } },
441
+{ "tag": "function", "name": "yaml_token_delete", "location": "/usr/include/yaml.h:343:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "token", "type": { "tag": ":pointer", "type": { "tag": "yaml_token_t" } } }], "return-type": { "tag": ":void" } },
442
+{ "tag": "enum", "name": "yaml_event_type_e", "id": 0, "location": "/usr/include/yaml.h:353:14", "fields": [{ "tag": "field", "name": "YAML_NO_EVENT", "value": 0 }, { "tag": "field", "name": "YAML_STREAM_START_EVENT", "value": 1 }, { "tag": "field", "name": "YAML_STREAM_END_EVENT", "value": 2 }, { "tag": "field", "name": "YAML_DOCUMENT_START_EVENT", "value": 3 }, { "tag": "field", "name": "YAML_DOCUMENT_END_EVENT", "value": 4 }, { "tag": "field", "name": "YAML_ALIAS_EVENT", "value": 5 }, { "tag": "field", "name": "YAML_SCALAR_EVENT", "value": 6 }, { "tag": "field", "name": "YAML_SEQUENCE_START_EVENT", "value": 7 }, { "tag": "field", "name": "YAML_SEQUENCE_END_EVENT", "value": 8 }, { "tag": "field", "name": "YAML_MAPPING_START_EVENT", "value": 9 }, { "tag": "field", "name": "YAML_MAPPING_END_EVENT", "value": 10 }] },
443
+{ "tag": "typedef", "name": "yaml_event_type_t", "location": "/usr/include/yaml.h:381:3", "type": { "tag": ":enum", "name": "yaml_event_type_e", "id": 0 } },
444
+{ "tag": "struct", "name": "yaml_event_s", "id": 0, "location": "/usr/include/yaml.h:384:16", "bit-size": 448, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "type", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "yaml_event_type_t" } }, { "tag": "field", "name": "data", "bit-offset": 32, "bit-size": 224, "bit-alignment": 32, "type": { "tag": "union", "name": "", "id": 33, "location": "/usr/include/yaml.h:390:5", "bit-size": 224, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "stream_start", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "struct", "name": "", "id": 34, "location": "/usr/include/yaml.h:393:9", "bit-size": 32, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "encoding", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "yaml_encoding_t" } }] } }, { "tag": "field", "name": "document_start", "bit-offset": 0, "bit-size": 128, "bit-alignment": 32, "type": { "tag": "struct", "name": "", "id": 35, "location": "/usr/include/yaml.h:399:9", "bit-size": 128, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "version_directive", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_version_directive_t" } } }, { "tag": "field", "name": "tag_directives", "bit-offset": 32, "bit-size": 64, "bit-alignment": 32, "type": { "tag": "struct", "name": "", "id": 36, "location": "/usr/include/yaml.h:404:13", "bit-size": 64, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "start", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_tag_directive_t" } } }, { "tag": "field", "name": "end", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_tag_directive_t" } } }] } }, { "tag": "field", "name": "implicit", "bit-offset": 96, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }] } }, { "tag": "field", "name": "document_end", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "struct", "name": "", "id": 37, "location": "/usr/include/yaml.h:416:9", "bit-size": 32, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "implicit", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }] } }, { "tag": "field", "name": "alias", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "struct", "name": "", "id": 38, "location": "/usr/include/yaml.h:422:9", "bit-size": 32, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "anchor", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }] } }, { "tag": "field", "name": "scalar", "bit-offset": 0, "bit-size": 224, "bit-alignment": 32, "type": { "tag": "struct", "name": "", "id": 39, "location": "/usr/include/yaml.h:428:9", "bit-size": 224, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "anchor", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "field", "name": "tag", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "field", "name": "value", "bit-offset": 64, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "field", "name": "length", "bit-offset": 96, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "size_t" } }, { "tag": "field", "name": "plain_implicit", "bit-offset": 128, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "quoted_implicit", "bit-offset": 160, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "style", "bit-offset": 192, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "yaml_scalar_style_t" } }] } }, { "tag": "field", "name": "sequence_start", "bit-offset": 0, "bit-size": 128, "bit-alignment": 32, "type": { "tag": "struct", "name": "", "id": 40, "location": "/usr/include/yaml.h:446:9", "bit-size": 128, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "anchor", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "field", "name": "tag", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "field", "name": "implicit", "bit-offset": 64, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "style", "bit-offset": 96, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "yaml_sequence_style_t" } }] } }, { "tag": "field", "name": "mapping_start", "bit-offset": 0, "bit-size": 128, "bit-alignment": 32, "type": { "tag": "struct", "name": "", "id": 41, "location": "/usr/include/yaml.h:458:9", "bit-size": 128, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "anchor", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "field", "name": "tag", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "field", "name": "implicit", "bit-offset": 64, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "style", "bit-offset": 96, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "yaml_mapping_style_t" } }] } }] } }, { "tag": "field", "name": "start_mark", "bit-offset": 256, "bit-size": 96, "bit-alignment": 32, "type": { "tag": "yaml_mark_t" } }, { "tag": "field", "name": "end_mark", "bit-offset": 352, "bit-size": 96, "bit-alignment": 32, "type": { "tag": "yaml_mark_t" } }] },
445
+{ "tag": "typedef", "name": "yaml_event_t", "location": "/usr/include/yaml.h:476:3", "type": { "tag": ":struct", "name": "yaml_event_s", "id": 0 } },
446
+{ "tag": "function", "name": "yaml_stream_start_event_initialize", "location": "/usr/include/yaml.h:488:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "event", "type": { "tag": ":pointer", "type": { "tag": "yaml_event_t" } } }, { "tag": "parameter", "name": "encoding", "type": { "tag": "yaml_encoding_t" } }], "return-type": { "tag": ":int" } },
447
+{ "tag": "function", "name": "yaml_stream_end_event_initialize", "location": "/usr/include/yaml.h:500:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "event", "type": { "tag": ":pointer", "type": { "tag": "yaml_event_t" } } }], "return-type": { "tag": ":int" } },
448
+{ "tag": "function", "name": "yaml_document_start_event_initialize", "location": "/usr/include/yaml.h:522:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "event", "type": { "tag": ":pointer", "type": { "tag": "yaml_event_t" } } }, { "tag": "parameter", "name": "version_directive", "type": { "tag": ":pointer", "type": { "tag": "yaml_version_directive_t" } } }, { "tag": "parameter", "name": "tag_directives_start", "type": { "tag": ":pointer", "type": { "tag": "yaml_tag_directive_t" } } }, { "tag": "parameter", "name": "tag_directives_end", "type": { "tag": ":pointer", "type": { "tag": "yaml_tag_directive_t" } } }, { "tag": "parameter", "name": "implicit", "type": { "tag": ":int" } }], "return-type": { "tag": ":int" } },
449
+{ "tag": "function", "name": "yaml_document_end_event_initialize", "location": "/usr/include/yaml.h:541:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "event", "type": { "tag": ":pointer", "type": { "tag": "yaml_event_t" } } }, { "tag": "parameter", "name": "implicit", "type": { "tag": ":int" } }], "return-type": { "tag": ":int" } },
450
+{ "tag": "function", "name": "yaml_alias_event_initialize", "location": "/usr/include/yaml.h:553:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "event", "type": { "tag": ":pointer", "type": { "tag": "yaml_event_t" } } }, { "tag": "parameter", "name": "anchor", "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }], "return-type": { "tag": ":int" } },
451
+{ "tag": "function", "name": "yaml_scalar_event_initialize", "location": "/usr/include/yaml.h:578:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "event", "type": { "tag": ":pointer", "type": { "tag": "yaml_event_t" } } }, { "tag": "parameter", "name": "anchor", "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "parameter", "name": "tag", "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "parameter", "name": "value", "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "parameter", "name": "length", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "plain_implicit", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "quoted_implicit", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "style", "type": { "tag": "yaml_scalar_style_t" } }], "return-type": { "tag": ":int" } },
452
+{ "tag": "function", "name": "yaml_sequence_start_event_initialize", "location": "/usr/include/yaml.h:601:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "event", "type": { "tag": ":pointer", "type": { "tag": "yaml_event_t" } } }, { "tag": "parameter", "name": "anchor", "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "parameter", "name": "tag", "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "parameter", "name": "implicit", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "style", "type": { "tag": "yaml_sequence_style_t" } }], "return-type": { "tag": ":int" } },
453
+{ "tag": "function", "name": "yaml_sequence_end_event_initialize", "location": "/usr/include/yaml.h:614:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "event", "type": { "tag": ":pointer", "type": { "tag": "yaml_event_t" } } }], "return-type": { "tag": ":int" } },
454
+{ "tag": "function", "name": "yaml_mapping_start_event_initialize", "location": "/usr/include/yaml.h:633:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "event", "type": { "tag": ":pointer", "type": { "tag": "yaml_event_t" } } }, { "tag": "parameter", "name": "anchor", "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "parameter", "name": "tag", "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "parameter", "name": "implicit", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "style", "type": { "tag": "yaml_mapping_style_t" } }], "return-type": { "tag": ":int" } },
455
+{ "tag": "function", "name": "yaml_mapping_end_event_initialize", "location": "/usr/include/yaml.h:646:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "event", "type": { "tag": ":pointer", "type": { "tag": "yaml_event_t" } } }], "return-type": { "tag": ":int" } },
456
+{ "tag": "function", "name": "yaml_event_delete", "location": "/usr/include/yaml.h:655:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "event", "type": { "tag": ":pointer", "type": { "tag": "yaml_event_t" } } }], "return-type": { "tag": ":void" } },
457
+{ "tag": "enum", "name": "yaml_node_type_e", "id": 0, "location": "/usr/include/yaml.h:690:14", "fields": [{ "tag": "field", "name": "YAML_NO_NODE", "value": 0 }, { "tag": "field", "name": "YAML_SCALAR_NODE", "value": 1 }, { "tag": "field", "name": "YAML_SEQUENCE_NODE", "value": 2 }, { "tag": "field", "name": "YAML_MAPPING_NODE", "value": 3 }] },
458
+{ "tag": "typedef", "name": "yaml_node_type_t", "location": "/usr/include/yaml.h:700:3", "type": { "tag": ":enum", "name": "yaml_node_type_e", "id": 0 } },
459
+{ "tag": "struct", "name": "yaml_node_s", "id": 0, "location": "/usr/include/yaml.h:703:16", "bit-size": 0, "bit-alignment": 0, "fields": [] },
460
+{ "tag": "typedef", "name": "yaml_node_t", "location": "/usr/include/yaml.h:703:28", "type": { "tag": ":struct", "name": "yaml_node_s", "id": 0 } },
461
+{ "tag": "typedef", "name": "yaml_node_item_t", "location": "/usr/include/yaml.h:706:13", "type": { "tag": ":int" } },
462
+{ "tag": "struct", "name": "yaml_node_pair_s", "id": 0, "location": "/usr/include/yaml.h:709:16", "bit-size": 64, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "key", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "value", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }] },
463
+{ "tag": "typedef", "name": "yaml_node_pair_t", "location": "/usr/include/yaml.h:714:3", "type": { "tag": ":struct", "name": "yaml_node_pair_s", "id": 0 } },
464
+{ "tag": "struct", "name": "yaml_node_s", "id": 0, "location": "/usr/include/yaml.h:717:8", "bit-size": 384, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "type", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "yaml_node_type_t" } }, { "tag": "field", "name": "tag", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "field", "name": "data", "bit-offset": 64, "bit-size": 128, "bit-alignment": 32, "type": { "tag": "union", "name": "", "id": 42, "location": "/usr/include/yaml.h:726:5", "bit-size": 128, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "scalar", "bit-offset": 0, "bit-size": 96, "bit-alignment": 32, "type": { "tag": "struct", "name": "", "id": 43, "location": "/usr/include/yaml.h:729:9", "bit-size": 96, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "value", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "field", "name": "length", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "size_t" } }, { "tag": "field", "name": "style", "bit-offset": 64, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "yaml_scalar_style_t" } }] } }, { "tag": "field", "name": "sequence", "bit-offset": 0, "bit-size": 128, "bit-alignment": 32, "type": { "tag": "struct", "name": "", "id": 44, "location": "/usr/include/yaml.h:739:9", "bit-size": 128, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "items", "bit-offset": 0, "bit-size": 96, "bit-alignment": 32, "type": { "tag": "struct", "name": "", "id": 45, "location": "/usr/include/yaml.h:741:13", "bit-size": 96, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "start", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_node_item_t" } } }, { "tag": "field", "name": "end", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_node_item_t" } } }, { "tag": "field", "name": "top", "bit-offset": 64, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_node_item_t" } } }] } }, { "tag": "field", "name": "style", "bit-offset": 96, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "yaml_sequence_style_t" } }] } }, { "tag": "field", "name": "mapping", "bit-offset": 0, "bit-size": 128, "bit-alignment": 32, "type": { "tag": "struct", "name": "", "id": 46, "location": "/usr/include/yaml.h:754:9", "bit-size": 128, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "pairs", "bit-offset": 0, "bit-size": 96, "bit-alignment": 32, "type": { "tag": "struct", "name": "", "id": 47, "location": "/usr/include/yaml.h:756:13", "bit-size": 96, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "start", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_node_pair_t" } } }, { "tag": "field", "name": "end", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_node_pair_t" } } }, { "tag": "field", "name": "top", "bit-offset": 64, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_node_pair_t" } } }] } }, { "tag": "field", "name": "style", "bit-offset": 96, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "yaml_mapping_style_t" } }] } }] } }, { "tag": "field", "name": "start_mark", "bit-offset": 192, "bit-size": 96, "bit-alignment": 32, "type": { "tag": "yaml_mark_t" } }, { "tag": "field", "name": "end_mark", "bit-offset": 288, "bit-size": 96, "bit-alignment": 32, "type": { "tag": "yaml_mark_t" } }] },
465
+{ "tag": "struct", "name": "yaml_document_s", "id": 0, "location": "/usr/include/yaml.h:778:16", "bit-size": 448, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "nodes", "bit-offset": 0, "bit-size": 96, "bit-alignment": 32, "type": { "tag": "struct", "name": "", "id": 48, "location": "/usr/include/yaml.h:781:5", "bit-size": 96, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "start", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_node_t" } } }, { "tag": "field", "name": "end", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_node_t" } } }, { "tag": "field", "name": "top", "bit-offset": 64, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_node_t" } } }] } }, { "tag": "field", "name": "version_directive", "bit-offset": 96, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_version_directive_t" } } }, { "tag": "field", "name": "tag_directives", "bit-offset": 128, "bit-size": 64, "bit-alignment": 32, "type": { "tag": "struct", "name": "", "id": 49, "location": "/usr/include/yaml.h:794:5", "bit-size": 64, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "start", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_tag_directive_t" } } }, { "tag": "field", "name": "end", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_tag_directive_t" } } }] } }, { "tag": "field", "name": "start_implicit", "bit-offset": 192, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "end_implicit", "bit-offset": 224, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "start_mark", "bit-offset": 256, "bit-size": 96, "bit-alignment": 32, "type": { "tag": "yaml_mark_t" } }, { "tag": "field", "name": "end_mark", "bit-offset": 352, "bit-size": 96, "bit-alignment": 32, "type": { "tag": "yaml_mark_t" } }] },
466
+{ "tag": "typedef", "name": "yaml_document_t", "location": "/usr/include/yaml.h:811:3", "type": { "tag": ":struct", "name": "yaml_document_s", "id": 0 } },
467
+{ "tag": "function", "name": "yaml_document_initialize", "location": "/usr/include/yaml.h:832:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "document", "type": { "tag": ":pointer", "type": { "tag": "yaml_document_t" } } }, { "tag": "parameter", "name": "version_directive", "type": { "tag": ":pointer", "type": { "tag": "yaml_version_directive_t" } } }, { "tag": "parameter", "name": "tag_directives_start", "type": { "tag": ":pointer", "type": { "tag": "yaml_tag_directive_t" } } }, { "tag": "parameter", "name": "tag_directives_end", "type": { "tag": ":pointer", "type": { "tag": "yaml_tag_directive_t" } } }, { "tag": "parameter", "name": "start_implicit", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "end_implicit", "type": { "tag": ":int" } }], "return-type": { "tag": ":int" } },
468
+{ "tag": "function", "name": "yaml_document_delete", "location": "/usr/include/yaml.h:845:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "document", "type": { "tag": ":pointer", "type": { "tag": "yaml_document_t" } } }], "return-type": { "tag": ":void" } },
469
+{ "tag": "function", "name": "yaml_document_get_node", "location": "/usr/include/yaml.h:860:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "document", "type": { "tag": ":pointer", "type": { "tag": "yaml_document_t" } } }, { "tag": "parameter", "name": "index", "type": { "tag": ":int" } }], "return-type": { "tag": ":pointer", "type": { "tag": "yaml_node_t" } } },
470
+{ "tag": "function", "name": "yaml_document_get_root_node", "location": "/usr/include/yaml.h:879:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "document", "type": { "tag": ":pointer", "type": { "tag": "yaml_document_t" } } }], "return-type": { "tag": ":pointer", "type": { "tag": "yaml_node_t" } } },
471
+{ "tag": "function", "name": "yaml_document_add_scalar", "location": "/usr/include/yaml.h:896:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "document", "type": { "tag": ":pointer", "type": { "tag": "yaml_document_t" } } }, { "tag": "parameter", "name": "tag", "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "parameter", "name": "value", "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "parameter", "name": "length", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "style", "type": { "tag": "yaml_scalar_style_t" } }], "return-type": { "tag": ":int" } },
472
+{ "tag": "function", "name": "yaml_document_add_sequence", "location": "/usr/include/yaml.h:913:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "document", "type": { "tag": ":pointer", "type": { "tag": "yaml_document_t" } } }, { "tag": "parameter", "name": "tag", "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "parameter", "name": "style", "type": { "tag": "yaml_sequence_style_t" } }], "return-type": { "tag": ":int" } },
473
+{ "tag": "function", "name": "yaml_document_add_mapping", "location": "/usr/include/yaml.h:929:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "document", "type": { "tag": ":pointer", "type": { "tag": "yaml_document_t" } } }, { "tag": "parameter", "name": "tag", "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "parameter", "name": "style", "type": { "tag": "yaml_mapping_style_t" } }], "return-type": { "tag": ":int" } },
474
+{ "tag": "function", "name": "yaml_document_append_sequence_item", "location": "/usr/include/yaml.h:943:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "document", "type": { "tag": ":pointer", "type": { "tag": "yaml_document_t" } } }, { "tag": "parameter", "name": "sequence", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "item", "type": { "tag": ":int" } }], "return-type": { "tag": ":int" } },
475
+{ "tag": "function", "name": "yaml_document_append_mapping_pair", "location": "/usr/include/yaml.h:958:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "document", "type": { "tag": ":pointer", "type": { "tag": "yaml_document_t" } } }, { "tag": "parameter", "name": "mapping", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "key", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "value", "type": { "tag": ":int" } }], "return-type": { "tag": ":int" } },
476
+{ "tag": "typedef", "name": "yaml_read_handler_t", "location": "/usr/include/yaml.h:986:13", "type": { "tag": ":function" } },
477
+{ "tag": "struct", "name": "yaml_simple_key_s", "id": 0, "location": "/usr/include/yaml.h:993:16", "bit-size": 192, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "possible", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "required", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "token_number", "bit-offset": 64, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "size_t" } }, { "tag": "field", "name": "mark", "bit-offset": 96, "bit-size": 96, "bit-alignment": 32, "type": { "tag": "yaml_mark_t" } }] },
478
+{ "tag": "typedef", "name": "yaml_simple_key_t", "location": "/usr/include/yaml.h:1005:3", "type": { "tag": ":struct", "name": "yaml_simple_key_s", "id": 0 } },
479
+{ "tag": "enum", "name": "yaml_parser_state_e", "id": 0, "location": "/usr/include/yaml.h:1010:14", "fields": [{ "tag": "field", "name": "YAML_PARSE_STREAM_START_STATE", "value": 0 }, { "tag": "field", "name": "YAML_PARSE_IMPLICIT_DOCUMENT_START_STATE", "value": 1 }, { "tag": "field", "name": "YAML_PARSE_DOCUMENT_START_STATE", "value": 2 }, { "tag": "field", "name": "YAML_PARSE_DOCUMENT_CONTENT_STATE", "value": 3 }, { "tag": "field", "name": "YAML_PARSE_DOCUMENT_END_STATE", "value": 4 }, { "tag": "field", "name": "YAML_PARSE_BLOCK_NODE_STATE", "value": 5 }, { "tag": "field", "name": "YAML_PARSE_BLOCK_NODE_OR_INDENTLESS_SEQUENCE_STATE", "value": 6 }, { "tag": "field", "name": "YAML_PARSE_FLOW_NODE_STATE", "value": 7 }, { "tag": "field", "name": "YAML_PARSE_BLOCK_SEQUENCE_FIRST_ENTRY_STATE", "value": 8 }, { "tag": "field", "name": "YAML_PARSE_BLOCK_SEQUENCE_ENTRY_STATE", "value": 9 }, { "tag": "field", "name": "YAML_PARSE_INDENTLESS_SEQUENCE_ENTRY_STATE", "value": 10 }, { "tag": "field", "name": "YAML_PARSE_BLOCK_MAPPING_FIRST_KEY_STATE", "value": 11 }, { "tag": "field", "name": "YAML_PARSE_BLOCK_MAPPING_KEY_STATE", "value": 12 }, { "tag": "field", "name": "YAML_PARSE_BLOCK_MAPPING_VALUE_STATE", "value": 13 }, { "tag": "field", "name": "YAML_PARSE_FLOW_SEQUENCE_FIRST_ENTRY_STATE", "value": 14 }, { "tag": "field", "name": "YAML_PARSE_FLOW_SEQUENCE_ENTRY_STATE", "value": 15 }, { "tag": "field", "name": "YAML_PARSE_FLOW_SEQUENCE_ENTRY_MAPPING_KEY_STATE", "value": 16 }, { "tag": "field", "name": "YAML_PARSE_FLOW_SEQUENCE_ENTRY_MAPPING_VALUE_STATE", "value": 17 }, { "tag": "field", "name": "YAML_PARSE_FLOW_SEQUENCE_ENTRY_MAPPING_END_STATE", "value": 18 }, { "tag": "field", "name": "YAML_PARSE_FLOW_MAPPING_FIRST_KEY_STATE", "value": 19 }, { "tag": "field", "name": "YAML_PARSE_FLOW_MAPPING_KEY_STATE", "value": 20 }, { "tag": "field", "name": "YAML_PARSE_FLOW_MAPPING_VALUE_STATE", "value": 21 }, { "tag": "field", "name": "YAML_PARSE_FLOW_MAPPING_EMPTY_VALUE_STATE", "value": 22 }, { "tag": "field", "name": "YAML_PARSE_END_STATE", "value": 23 }] },
480
+{ "tag": "typedef", "name": "yaml_parser_state_t", "location": "/usr/include/yaml.h:1059:3", "type": { "tag": ":enum", "name": "yaml_parser_state_e", "id": 0 } },
481
+{ "tag": "struct", "name": "yaml_alias_data_s", "id": 0, "location": "/usr/include/yaml.h:1065:16", "bit-size": 160, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "anchor", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "field", "name": "index", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "mark", "bit-offset": 64, "bit-size": 96, "bit-alignment": 32, "type": { "tag": "yaml_mark_t" } }] },
482
+{ "tag": "typedef", "name": "yaml_alias_data_t", "location": "/usr/include/yaml.h:1072:3", "type": { "tag": ":struct", "name": "yaml_alias_data_s", "id": 0 } },
483
+{ "tag": "struct", "name": "yaml_parser_s", "id": 0, "location": "/usr/include/yaml.h:1081:16", "bit-size": 1984, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "error", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "yaml_error_type_t" } }, { "tag": "field", "name": "problem", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "field", "name": "problem_offset", "bit-offset": 64, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "size_t" } }, { "tag": "field", "name": "problem_value", "bit-offset": 96, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "problem_mark", "bit-offset": 128, "bit-size": 96, "bit-alignment": 32, "type": { "tag": "yaml_mark_t" } }, { "tag": "field", "name": "context", "bit-offset": 224, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "field", "name": "context_mark", "bit-offset": 256, "bit-size": 96, "bit-alignment": 32, "type": { "tag": "yaml_mark_t" } }, { "tag": "field", "name": "read_handler", "bit-offset": 352, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":function-pointer" } }, { "tag": "field", "name": "read_handler_data", "bit-offset": 384, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "field", "name": "input", "bit-offset": 416, "bit-size": 96, "bit-alignment": 32, "type": { "tag": "union", "name": "", "id": 50, "location": "/usr/include/yaml.h:1119:5", "bit-size": 96, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "string", "bit-offset": 0, "bit-size": 96, "bit-alignment": 32, "type": { "tag": "struct", "name": "", "id": 51, "location": "/usr/include/yaml.h:1121:9", "bit-size": 96, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "start", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": ":unsigned-char" } } }, { "tag": "field", "name": "end", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": ":unsigned-char" } } }, { "tag": "field", "name": "current", "bit-offset": 64, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": ":unsigned-char" } } }] } }, { "tag": "field", "name": "file", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }] } }, { "tag": "field", "name": "eof", "bit-offset": 512, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "buffer", "bit-offset": 544, "bit-size": 128, "bit-alignment": 32, "type": { "tag": "struct", "name": "", "id": 52, "location": "/usr/include/yaml.h:1138:5", "bit-size": 128, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "start", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "field", "name": "end", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "field", "name": "pointer", "bit-offset": 64, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "field", "name": "last", "bit-offset": 96, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }] } }, { "tag": "field", "name": "unread", "bit-offset": 672, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "size_t" } }, { "tag": "field", "name": "raw_buffer", "bit-offset": 704, "bit-size": 128, "bit-alignment": 32, "type": { "tag": "struct", "name": "", "id": 53, "location": "/usr/include/yaml.h:1153:5", "bit-size": 128, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "start", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": ":unsigned-char" } } }, { "tag": "field", "name": "end", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": ":unsigned-char" } } }, { "tag": "field", "name": "pointer", "bit-offset": 64, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": ":unsigned-char" } } }, { "tag": "field", "name": "last", "bit-offset": 96, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": ":unsigned-char" } } }] } }, { "tag": "field", "name": "encoding", "bit-offset": 832, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "yaml_encoding_t" } }, { "tag": "field", "name": "offset", "bit-offset": 864, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "size_t" } }, { "tag": "field", "name": "mark", "bit-offset": 896, "bit-size": 96, "bit-alignment": 32, "type": { "tag": "yaml_mark_t" } }, { "tag": "field", "name": "stream_start_produced", "bit-offset": 992, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "stream_end_produced", "bit-offset": 1024, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "flow_level", "bit-offset": 1056, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "tokens", "bit-offset": 1088, "bit-size": 128, "bit-alignment": 32, "type": { "tag": "struct", "name": "", "id": 54, "location": "/usr/include/yaml.h:1192:5", "bit-size": 128, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "start", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_token_t" } } }, { "tag": "field", "name": "end", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_token_t" } } }, { "tag": "field", "name": "head", "bit-offset": 64, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_token_t" } } }, { "tag": "field", "name": "tail", "bit-offset": 96, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_token_t" } } }] } }, { "tag": "field", "name": "tokens_parsed", "bit-offset": 1216, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "size_t" } }, { "tag": "field", "name": "token_available", "bit-offset": 1248, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "indents", "bit-offset": 1280, "bit-size": 96, "bit-alignment": 32, "type": { "tag": "struct", "name": "", "id": 55, "location": "/usr/include/yaml.h:1210:5", "bit-size": 96, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "start", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": ":int" } } }, { "tag": "field", "name": "end", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": ":int" } } }, { "tag": "field", "name": "top", "bit-offset": 64, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": ":int" } } }] } }, { "tag": "field", "name": "indent", "bit-offset": 1376, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "simple_key_allowed", "bit-offset": 1408, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "simple_keys", "bit-offset": 1440, "bit-size": 96, "bit-alignment": 32, "type": { "tag": "struct", "name": "", "id": 56, "location": "/usr/include/yaml.h:1226:5", "bit-size": 96, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "start", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_simple_key_t" } } }, { "tag": "field", "name": "end", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_simple_key_t" } } }, { "tag": "field", "name": "top", "bit-offset": 64, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_simple_key_t" } } }] } }, { "tag": "field", "name": "states", "bit-offset": 1536, "bit-size": 96, "bit-alignment": 32, "type": { "tag": "struct", "name": "", "id": 57, "location": "/usr/include/yaml.h:1245:5", "bit-size": 96, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "start", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_parser_state_t" } } }, { "tag": "field", "name": "end", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_parser_state_t" } } }, { "tag": "field", "name": "top", "bit-offset": 64, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_parser_state_t" } } }] } }, { "tag": "field", "name": "state", "bit-offset": 1632, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "yaml_parser_state_t" } }, { "tag": "field", "name": "marks", "bit-offset": 1664, "bit-size": 96, "bit-alignment": 32, "type": { "tag": "struct", "name": "", "id": 58, "location": "/usr/include/yaml.h:1258:5", "bit-size": 96, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "start", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_mark_t" } } }, { "tag": "field", "name": "end", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_mark_t" } } }, { "tag": "field", "name": "top", "bit-offset": 64, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_mark_t" } } }] } }, { "tag": "field", "name": "tag_directives", "bit-offset": 1760, "bit-size": 96, "bit-alignment": 32, "type": { "tag": "struct", "name": "", "id": 59, "location": "/usr/include/yaml.h:1268:5", "bit-size": 96, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "start", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_tag_directive_t" } } }, { "tag": "field", "name": "end", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_tag_directive_t" } } }, { "tag": "field", "name": "top", "bit-offset": 64, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_tag_directive_t" } } }] } }, { "tag": "field", "name": "aliases", "bit-offset": 1856, "bit-size": 96, "bit-alignment": 32, "type": { "tag": "struct", "name": "", "id": 60, "location": "/usr/include/yaml.h:1287:5", "bit-size": 96, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "start", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_alias_data_t" } } }, { "tag": "field", "name": "end", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_alias_data_t" } } }, { "tag": "field", "name": "top", "bit-offset": 64, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_alias_data_t" } } }] } }, { "tag": "field", "name": "document", "bit-offset": 1952, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_document_t" } } }] },
484
+{ "tag": "typedef", "name": "yaml_parser_t", "location": "/usr/include/yaml.h:1303:3", "type": { "tag": ":struct", "name": "yaml_parser_s", "id": 0 } },
485
+{ "tag": "function", "name": "yaml_parser_initialize", "location": "/usr/include/yaml.h:1317:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "parser", "type": { "tag": ":pointer", "type": { "tag": "yaml_parser_t" } } }], "return-type": { "tag": ":int" } },
486
+{ "tag": "function", "name": "yaml_parser_delete", "location": "/usr/include/yaml.h:1326:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "parser", "type": { "tag": ":pointer", "type": { "tag": "yaml_parser_t" } } }], "return-type": { "tag": ":void" } },
487
+{ "tag": "function", "name": "yaml_parser_set_input_string", "location": "/usr/include/yaml.h:1341:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "parser", "type": { "tag": ":pointer", "type": { "tag": "yaml_parser_t" } } }, { "tag": "parameter", "name": "input", "type": { "tag": ":pointer", "type": { "tag": ":unsigned-char" } } }, { "tag": "parameter", "name": "size", "type": { "tag": "size_t" } }], "return-type": { "tag": ":void" } },
488
+{ "tag": "function", "name": "yaml_parser_set_input_file", "location": "/usr/include/yaml.h:1355:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "parser", "type": { "tag": ":pointer", "type": { "tag": "yaml_parser_t" } } }, { "tag": "parameter", "name": "file", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":void" } },
489
+{ "tag": "function", "name": "yaml_parser_set_input", "location": "/usr/include/yaml.h:1367:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "parser", "type": { "tag": ":pointer", "type": { "tag": "yaml_parser_t" } } }, { "tag": "parameter", "name": "handler", "type": { "tag": ":function-pointer" } }, { "tag": "parameter", "name": "data", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": ":void" } },
490
+{ "tag": "function", "name": "yaml_parser_set_encoding", "location": "/usr/include/yaml.h:1378:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "parser", "type": { "tag": ":pointer", "type": { "tag": "yaml_parser_t" } } }, { "tag": "parameter", "name": "encoding", "type": { "tag": "yaml_encoding_t" } }], "return-type": { "tag": ":void" } },
491
+{ "tag": "function", "name": "yaml_parser_scan", "location": "/usr/include/yaml.h:1402:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "parser", "type": { "tag": ":pointer", "type": { "tag": "yaml_parser_t" } } }, { "tag": "parameter", "name": "token", "type": { "tag": ":pointer", "type": { "tag": "yaml_token_t" } } }], "return-type": { "tag": ":int" } },
492
+{ "tag": "function", "name": "yaml_parser_parse", "location": "/usr/include/yaml.h:1426:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "parser", "type": { "tag": ":pointer", "type": { "tag": "yaml_parser_t" } } }, { "tag": "parameter", "name": "event", "type": { "tag": ":pointer", "type": { "tag": "yaml_event_t" } } }], "return-type": { "tag": ":int" } },
493
+{ "tag": "function", "name": "yaml_parser_load", "location": "/usr/include/yaml.h:1451:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "parser", "type": { "tag": ":pointer", "type": { "tag": "yaml_parser_t" } } }, { "tag": "parameter", "name": "document", "type": { "tag": ":pointer", "type": { "tag": "yaml_document_t" } } }], "return-type": { "tag": ":int" } },
494
+{ "tag": "typedef", "name": "yaml_write_handler_t", "location": "/usr/include/yaml.h:1476:13", "type": { "tag": ":function" } },
495
+{ "tag": "enum", "name": "yaml_emitter_state_e", "id": 0, "location": "/usr/include/yaml.h:1479:14", "fields": [{ "tag": "field", "name": "YAML_EMIT_STREAM_START_STATE", "value": 0 }, { "tag": "field", "name": "YAML_EMIT_FIRST_DOCUMENT_START_STATE", "value": 1 }, { "tag": "field", "name": "YAML_EMIT_DOCUMENT_START_STATE", "value": 2 }, { "tag": "field", "name": "YAML_EMIT_DOCUMENT_CONTENT_STATE", "value": 3 }, { "tag": "field", "name": "YAML_EMIT_DOCUMENT_END_STATE", "value": 4 }, { "tag": "field", "name": "YAML_EMIT_FLOW_SEQUENCE_FIRST_ITEM_STATE", "value": 5 }, { "tag": "field", "name": "YAML_EMIT_FLOW_SEQUENCE_ITEM_STATE", "value": 6 }, { "tag": "field", "name": "YAML_EMIT_FLOW_MAPPING_FIRST_KEY_STATE", "value": 7 }, { "tag": "field", "name": "YAML_EMIT_FLOW_MAPPING_KEY_STATE", "value": 8 }, { "tag": "field", "name": "YAML_EMIT_FLOW_MAPPING_SIMPLE_VALUE_STATE", "value": 9 }, { "tag": "field", "name": "YAML_EMIT_FLOW_MAPPING_VALUE_STATE", "value": 10 }, { "tag": "field", "name": "YAML_EMIT_BLOCK_SEQUENCE_FIRST_ITEM_STATE", "value": 11 }, { "tag": "field", "name": "YAML_EMIT_BLOCK_SEQUENCE_ITEM_STATE", "value": 12 }, { "tag": "field", "name": "YAML_EMIT_BLOCK_MAPPING_FIRST_KEY_STATE", "value": 13 }, { "tag": "field", "name": "YAML_EMIT_BLOCK_MAPPING_KEY_STATE", "value": 14 }, { "tag": "field", "name": "YAML_EMIT_BLOCK_MAPPING_SIMPLE_VALUE_STATE", "value": 15 }, { "tag": "field", "name": "YAML_EMIT_BLOCK_MAPPING_VALUE_STATE", "value": 16 }, { "tag": "field", "name": "YAML_EMIT_END_STATE", "value": 17 }] },
496
+{ "tag": "typedef", "name": "yaml_emitter_state_t", "location": "/usr/include/yaml.h:1516:3", "type": { "tag": ":enum", "name": "yaml_emitter_state_e", "id": 0 } },
497
+{ "tag": "struct", "name": "yaml_emitter_s", "id": 0, "location": "/usr/include/yaml.h:1525:16", "bit-size": 2112, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "error", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "yaml_error_type_t" } }, { "tag": "field", "name": "problem", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "field", "name": "write_handler", "bit-offset": 64, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":function-pointer" } }, { "tag": "field", "name": "write_handler_data", "bit-offset": 96, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "field", "name": "output", "bit-offset": 128, "bit-size": 96, "bit-alignment": 32, "type": { "tag": "union", "name": "", "id": 61, "location": "/usr/include/yaml.h:1553:5", "bit-size": 96, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "string", "bit-offset": 0, "bit-size": 96, "bit-alignment": 32, "type": { "tag": "struct", "name": "", "id": 62, "location": "/usr/include/yaml.h:1555:9", "bit-size": 96, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "buffer", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": ":unsigned-char" } } }, { "tag": "field", "name": "size", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "size_t" } }, { "tag": "field", "name": "size_written", "bit-offset": 64, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "size_t" } } }] } }, { "tag": "field", "name": "file", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }] } }, { "tag": "field", "name": "buffer", "bit-offset": 224, "bit-size": 128, "bit-alignment": 32, "type": { "tag": "struct", "name": "", "id": 63, "location": "/usr/include/yaml.h:1569:5", "bit-size": 128, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "start", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "field", "name": "end", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "field", "name": "pointer", "bit-offset": 64, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "field", "name": "last", "bit-offset": 96, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }] } }, { "tag": "field", "name": "raw_buffer", "bit-offset": 352, "bit-size": 128, "bit-alignment": 32, "type": { "tag": "struct", "name": "", "id": 64, "location": "/usr/include/yaml.h:1581:5", "bit-size": 128, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "start", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": ":unsigned-char" } } }, { "tag": "field", "name": "end", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": ":unsigned-char" } } }, { "tag": "field", "name": "pointer", "bit-offset": 64, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": ":unsigned-char" } } }, { "tag": "field", "name": "last", "bit-offset": 96, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": ":unsigned-char" } } }] } }, { "tag": "field", "name": "encoding", "bit-offset": 480, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "yaml_encoding_t" } }, { "tag": "field", "name": "canonical", "bit-offset": 512, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "best_indent", "bit-offset": 544, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "best_width", "bit-offset": 576, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "unicode", "bit-offset": 608, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "line_break", "bit-offset": 640, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "yaml_break_t" } }, { "tag": "field", "name": "states", "bit-offset": 672, "bit-size": 96, "bit-alignment": 32, "type": { "tag": "struct", "name": "", "id": 65, "location": "/usr/include/yaml.h:1616:5", "bit-size": 96, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "start", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_emitter_state_t" } } }, { "tag": "field", "name": "end", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_emitter_state_t" } } }, { "tag": "field", "name": "top", "bit-offset": 64, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_emitter_state_t" } } }] } }, { "tag": "field", "name": "state", "bit-offset": 768, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "yaml_emitter_state_t" } }, { "tag": "field", "name": "events", "bit-offset": 800, "bit-size": 128, "bit-alignment": 32, "type": { "tag": "struct", "name": "", "id": 66, "location": "/usr/include/yaml.h:1629:5", "bit-size": 128, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "start", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_event_t" } } }, { "tag": "field", "name": "end", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_event_t" } } }, { "tag": "field", "name": "head", "bit-offset": 64, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_event_t" } } }, { "tag": "field", "name": "tail", "bit-offset": 96, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_event_t" } } }] } }, { "tag": "field", "name": "indents", "bit-offset": 928, "bit-size": 96, "bit-alignment": 32, "type": { "tag": "struct", "name": "", "id": 67, "location": "/usr/include/yaml.h:1641:5", "bit-size": 96, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "start", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": ":int" } } }, { "tag": "field", "name": "end", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": ":int" } } }, { "tag": "field", "name": "top", "bit-offset": 64, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": ":int" } } }] } }, { "tag": "field", "name": "tag_directives", "bit-offset": 1024, "bit-size": 96, "bit-alignment": 32, "type": { "tag": "struct", "name": "", "id": 68, "location": "/usr/include/yaml.h:1651:5", "bit-size": 96, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "start", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_tag_directive_t" } } }, { "tag": "field", "name": "end", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_tag_directive_t" } } }, { "tag": "field", "name": "top", "bit-offset": 64, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_tag_directive_t" } } }] } }, { "tag": "field", "name": "indent", "bit-offset": 1120, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "flow_level", "bit-offset": 1152, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "root_context", "bit-offset": 1184, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "sequence_context", "bit-offset": 1216, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "mapping_context", "bit-offset": 1248, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "simple_key_context", "bit-offset": 1280, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "line", "bit-offset": 1312, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "column", "bit-offset": 1344, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "whitespace", "bit-offset": 1376, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "indention", "bit-offset": 1408, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "open_ended", "bit-offset": 1440, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "anchor_data", "bit-offset": 1472, "bit-size": 96, "bit-alignment": 32, "type": { "tag": "struct", "name": "", "id": 69, "location": "/usr/include/yaml.h:1687:5", "bit-size": 96, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "anchor", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "field", "name": "anchor_length", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "size_t" } }, { "tag": "field", "name": "alias", "bit-offset": 64, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }] } }, { "tag": "field", "name": "tag_data", "bit-offset": 1568, "bit-size": 128, "bit-alignment": 32, "type": { "tag": "struct", "name": "", "id": 70, "location": "/usr/include/yaml.h:1697:5", "bit-size": 128, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "handle", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "field", "name": "handle_length", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "size_t" } }, { "tag": "field", "name": "suffix", "bit-offset": 64, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "field", "name": "suffix_length", "bit-offset": 96, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "size_t" } }] } }, { "tag": "field", "name": "scalar_data", "bit-offset": 1696, "bit-size": 256, "bit-alignment": 32, "type": { "tag": "struct", "name": "", "id": 71, "location": "/usr/include/yaml.h:1709:5", "bit-size": 256, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "value", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "field", "name": "length", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "size_t" } }, { "tag": "field", "name": "multiline", "bit-offset": 64, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "flow_plain_allowed", "bit-offset": 96, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "block_plain_allowed", "bit-offset": 128, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "single_quoted_allowed", "bit-offset": 160, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "block_allowed", "bit-offset": 192, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "style", "bit-offset": 224, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "yaml_scalar_style_t" } }] } }, { "tag": "field", "name": "opened", "bit-offset": 1952, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "closed", "bit-offset": 1984, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "anchors", "bit-offset": 2016, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "struct", "name": "", "id": 72, "location": "/usr/include/yaml.h:1743:5", "bit-size": 96, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "references", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "anchor", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "serialized", "bit-offset": 64, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }] } } }, { "tag": "field", "name": "last_anchor_id", "bit-offset": 2048, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "document", "bit-offset": 2080, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":pointer", "type": { "tag": "yaml_document_t" } } }] },
498
+{ "tag": "typedef", "name": "yaml_emitter_t", "location": "/usr/include/yaml.h:1762:3", "type": { "tag": ":struct", "name": "yaml_emitter_s", "id": 0 } },
499
+{ "tag": "function", "name": "yaml_emitter_initialize", "location": "/usr/include/yaml.h:1776:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "emitter", "type": { "tag": ":pointer", "type": { "tag": "yaml_emitter_t" } } }], "return-type": { "tag": ":int" } },
500
+{ "tag": "function", "name": "yaml_emitter_delete", "location": "/usr/include/yaml.h:1785:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "emitter", "type": { "tag": ":pointer", "type": { "tag": "yaml_emitter_t" } } }], "return-type": { "tag": ":void" } },
501
+{ "tag": "function", "name": "yaml_emitter_set_output_string", "location": "/usr/include/yaml.h:1803:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "emitter", "type": { "tag": ":pointer", "type": { "tag": "yaml_emitter_t" } } }, { "tag": "parameter", "name": "output", "type": { "tag": ":pointer", "type": { "tag": ":unsigned-char" } } }, { "tag": "parameter", "name": "size", "type": { "tag": "size_t" } }, { "tag": "parameter", "name": "size_written", "type": { "tag": ":pointer", "type": { "tag": "size_t" } } }], "return-type": { "tag": ":void" } },
502
+{ "tag": "function", "name": "yaml_emitter_set_output_file", "location": "/usr/include/yaml.h:1817:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "emitter", "type": { "tag": ":pointer", "type": { "tag": "yaml_emitter_t" } } }, { "tag": "parameter", "name": "file", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":void" } },
503
+{ "tag": "function", "name": "yaml_emitter_set_output", "location": "/usr/include/yaml.h:1829:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "emitter", "type": { "tag": ":pointer", "type": { "tag": "yaml_emitter_t" } } }, { "tag": "parameter", "name": "handler", "type": { "tag": ":function-pointer" } }, { "tag": "parameter", "name": "data", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": ":void" } },
504
+{ "tag": "function", "name": "yaml_emitter_set_encoding", "location": "/usr/include/yaml.h:1840:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "emitter", "type": { "tag": ":pointer", "type": { "tag": "yaml_emitter_t" } } }, { "tag": "parameter", "name": "encoding", "type": { "tag": "yaml_encoding_t" } }], "return-type": { "tag": ":void" } },
505
+{ "tag": "function", "name": "yaml_emitter_set_canonical", "location": "/usr/include/yaml.h:1851:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "emitter", "type": { "tag": ":pointer", "type": { "tag": "yaml_emitter_t" } } }, { "tag": "parameter", "name": "canonical", "type": { "tag": ":int" } }], "return-type": { "tag": ":void" } },
506
+{ "tag": "function", "name": "yaml_emitter_set_indent", "location": "/usr/include/yaml.h:1861:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "emitter", "type": { "tag": ":pointer", "type": { "tag": "yaml_emitter_t" } } }, { "tag": "parameter", "name": "indent", "type": { "tag": ":int" } }], "return-type": { "tag": ":void" } },
507
+{ "tag": "function", "name": "yaml_emitter_set_width", "location": "/usr/include/yaml.h:1871:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "emitter", "type": { "tag": ":pointer", "type": { "tag": "yaml_emitter_t" } } }, { "tag": "parameter", "name": "width", "type": { "tag": ":int" } }], "return-type": { "tag": ":void" } },
508
+{ "tag": "function", "name": "yaml_emitter_set_unicode", "location": "/usr/include/yaml.h:1881:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "emitter", "type": { "tag": ":pointer", "type": { "tag": "yaml_emitter_t" } } }, { "tag": "parameter", "name": "unicode", "type": { "tag": ":int" } }], "return-type": { "tag": ":void" } },
509
+{ "tag": "function", "name": "yaml_emitter_set_break", "location": "/usr/include/yaml.h:1891:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "emitter", "type": { "tag": ":pointer", "type": { "tag": "yaml_emitter_t" } } }, { "tag": "parameter", "name": "line_break", "type": { "tag": "yaml_break_t" } }], "return-type": { "tag": ":void" } },
510
+{ "tag": "function", "name": "yaml_emitter_emit", "location": "/usr/include/yaml.h:1908:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "emitter", "type": { "tag": ":pointer", "type": { "tag": "yaml_emitter_t" } } }, { "tag": "parameter", "name": "event", "type": { "tag": ":pointer", "type": { "tag": "yaml_event_t" } } }], "return-type": { "tag": ":int" } },
511
+{ "tag": "function", "name": "yaml_emitter_open", "location": "/usr/include/yaml.h:1921:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "emitter", "type": { "tag": ":pointer", "type": { "tag": "yaml_emitter_t" } } }], "return-type": { "tag": ":int" } },
512
+{ "tag": "function", "name": "yaml_emitter_close", "location": "/usr/include/yaml.h:1934:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "emitter", "type": { "tag": ":pointer", "type": { "tag": "yaml_emitter_t" } } }], "return-type": { "tag": ":int" } },
513
+{ "tag": "function", "name": "yaml_emitter_dump", "location": "/usr/include/yaml.h:1951:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "emitter", "type": { "tag": ":pointer", "type": { "tag": "yaml_emitter_t" } } }, { "tag": "parameter", "name": "document", "type": { "tag": ":pointer", "type": { "tag": "yaml_document_t" } } }], "return-type": { "tag": ":int" } },
514
+{ "tag": "function", "name": "yaml_emitter_flush", "location": "/usr/include/yaml.h:1962:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "emitter", "type": { "tag": ":pointer", "type": { "tag": "yaml_emitter_t" } } }], "return-type": { "tag": ":int" } }
515
+]
0 516
new file mode 100755
... ...
@@ -0,0 +1,676 @@
1
+/* /usr/include/wchar.h:80:10 */
2
+#define ____mbstate_t_defined 1
3
+
4
+/* /usr/include/stdio.h:66:10 */
5
+#define ____FILE_defined 1
6
+
7
+/* /usr/include/_G_config.h:48:9 */
8
+#define _G_HAVE_MMAP 1
9
+
10
+/* /usr/include/_G_config.h:51:9 */
11
+#define _G_IO_IO_FILE_VERSION 0x20001
12
+
13
+/* /usr/include/_G_config.h:49:9 */
14
+#define _G_HAVE_MREMAP 1
15
+
16
+/* /usr/include/_G_config.h:56:9 */
17
+#define _G_BUFSIZ 8192
18
+
19
+/* /usr/include/_G_config.h:5:9 */
20
+#define _G_config_h 1
21
+
22
+/* /usr/include/bits/byteswap.h:24:9 */
23
+#define _BITS_BYTESWAP_H 1
24
+
25
+/* /usr/include/bits/stdio_lim.h:25:10 */
26
+#define FILENAME_MAX 4096
27
+
28
+/* /usr/include/bits/waitflags.h:34:9 */
29
+#define __WNOTHREAD 0x20000000
30
+
31
+/* /usr/include/bits/waitflags.h:32:9 */
32
+#define WNOWAIT 0x01000000
33
+
34
+/* /usr/include/bits/waitflags.h:31:9 */
35
+#define WCONTINUED 8
36
+
37
+/* /usr/include/bits/waitflags.h:29:9 */
38
+#define WSTOPPED 2
39
+
40
+/* /usr/include/bits/waitflags.h:30:9 */
41
+#define WEXITED 4
42
+
43
+/* /usr/include/bits/waitflags.h:26:9 */
44
+#define WUNTRACED 2
45
+
46
+/* /usr/include/bits/waitflags.h:25:9 */
47
+#define WNOHANG 1
48
+
49
+/* /usr/include/stdio.h:120:9 */
50
+#define _IOFBF 0
51
+
52
+/* /usr/include/bits/types.h:24:9 */
53
+#define _BITS_TYPES_H 1
54
+
55
+/* /usr/include/stdio.h:122:9 */
56
+#define _IONBF 2
57
+
58
+/* /usr/include/stdio.h:121:9 */
59
+#define _IOLBF 1
60
+
61
+/* /usr/include/bits/typesizes.h:24:9 */
62
+#define _BITS_TYPESIZES_H 1
63
+
64
+/* /usr/include/sys/sysmacros.h:21:9 */
65
+#define _SYS_SYSMACROS_H 1
66
+
67
+/* /usr/include/libio.h:118:9 */
68
+#define _IO_FLAGS2_USER_WBUF 8
69
+
70
+/* /usr/include/stdio.h:26:10 */
71
+#define _STDIO_H 1
72
+
73
+/* /usr/include/libio.h:113:9 */
74
+#define _IO_FLAGS2_MMAP 1
75
+
76
+/* /usr/include/libio.h:128:9 */
77
+#define _IO_RIGHT 04
78
+
79
+/* /usr/include/libio.h:111:9 */
80
+#define _IO_USER_LOCK 0x8000
81
+
82
+/* /usr/include/stdio.h:56:10 */
83
+#define __FILE_defined 1
84
+
85
+/* /usr/include/libio.h:110:9 */
86
+#define _IO_BAD_SEEN 0x4000
87
+
88
+/* /usr/include/libio.h:109:9 */
89
+#define _IO_IS_FILEBUF 0x2000
90
+
91
+/* /usr/include/bits/select.h:28:11 */
92
+#define __FD_ZERO_STOS "stosq"
93
+
94
+/* /usr/include/libio.h:108:9 */
95
+#define _IO_IS_APPENDING 0x1000
96
+
97
+/* /usr/include/sys/types.h:211:9 */
98
+#define __BIT_TYPES_DEFINED__ 1
99
+
100
+/* /usr/include/libio.h:106:9 */
101
+#define _IO_TIED_PUT_GET 0x400
102
+
103
+/* /usr/include/libio.h:103:9 */
104
+#define _IO_LINKED 0x80
105
+
106
+/* /usr/include/libio.h:102:9 */
107
+#define _IO_DELETE_DONT_CLOSE 0x40
108
+
109
+/* /usr/include/libio.h:101:9 */
110
+#define _IO_ERR_SEEN 0x20
111
+
112
+/* /usr/include/sys/select.h:22:9 */
113
+#define _SYS_SELECT_H 1
114
+
115
+/* /usr/include/libio.h:100:9 */
116
+#define _IO_EOF_SEEN 0x10
117
+
118
+/* /usr/include/time.h:98:10 */
119
+#define __timer_t_defined 1
120
+
121
+/* /usr/include/libio.h:105:9 */
122
+#define _IO_LINE_BUF 0x200
123
+
124
+/* /usr/include/libio.h:98:9 */
125
+#define _IO_NO_READS 4
126
+
127
+/* /usr/include/time.h:86:10 */
128
+#define __clockid_t_defined 1
129
+
130
+/* /usr/include/libio.h:97:9 */
131
+#define _IO_UNBUFFERED 2
132
+
133
+/* /usr/include/libio.h:96:9 */
134
+#define _IO_USER_BUF 1
135
+
136
+/* /usr/include/bits/pthreadtypes.h:19:9 */
137
+#define _BITS_PTHREADTYPES_H 1
138
+
139
+/* /usr/include/libio.h:95:9 */
140
+#define _IO_MAGIC_MASK 0xFFFF0000
141
+
142
+/* /usr/include/bits/pthreadtypes.h:25:11 */
143
+#define __SIZEOF_PTHREAD_ATTR_T 56
144
+
145
+/* /usr/include/libio.h:99:9 */
146
+#define _IO_NO_WRITES 8
147
+
148
+/* /usr/include/bits/pthreadtypes.h:26:11 */
149
+#define __SIZEOF_PTHREAD_MUTEX_T 40
150
+
151
+/* /usr/include/bits/pthreadtypes.h:27:11 */
152
+#define __SIZEOF_PTHREAD_MUTEXATTR_T 4
153
+
154
+/* /usr/include/time.h:114:10 */
155
+#define __timespec_defined 1
156
+
157
+/* /usr/include/libio.h:93:9 */
158
+#define _IO_MAGIC 0xFBAD0000
159
+
160
+/* /usr/include/bits/pthreadtypes.h:28:11 */
161
+#define __SIZEOF_PTHREAD_COND_T 48
162
+
163
+/* /usr/include/libio.h:107:9 */
164
+#define _IO_CURRENTLY_PUTTING 0x800
165
+
166
+/* /usr/include/libio.h:85:9 */
167
+#define _IOS_BIN 128
168
+
169
+/* /usr/include/libio.h:94:9 */
170
+#define _OLD_STDIO_MAGIC 0xFABC0000
171
+
172
+/* /usr/include/libio.h:84:9 */
173
+#define _IOS_NOREPLACE 64
174
+
175
+/* /usr/include/libio.h:82:9 */
176
+#define _IOS_TRUNC 16
177
+
178
+/* /usr/include/libio.h:83:9 */
179
+#define _IOS_NOCREATE 32
180
+
181
+/* /usr/include/libio.h:81:9 */
182
+#define _IOS_APPEND 8
183
+
184
+/* /usr/include/libio.h:114:9 */
185
+#define _IO_FLAGS2_NOTCANCEL 2
186
+
187
+/* /usr/include/libio.h:80:9 */
188
+#define _IOS_ATEND 4
189
+
190
+/* /usr/include/libio.h:79:9 */
191
+#define _IOS_OUTPUT 2
192
+
193
+/* /usr/include/libio.h:126:9 */
194
+#define _IO_SKIPWS 01
195
+
196
+/* /usr/include/stdio.h:151:10 */
197
+#define P_tmpdir "/tmp"
198
+
199
+/* /usr/include/libio.h:104:9 */
200
+#define _IO_IN_BACKUP 0x100
201
+
202
+/* /usr/include/libio.h:78:9 */
203
+#define _IOS_INPUT 1
204
+
205
+/* /usr/include/stdio.h:142:9 */
206
+#define SEEK_END 2
207
+
208
+/* /usr/include/libio.h:63:10 */
209
+#define EOF (-1)
210
+
211
+/* /usr/include/libio.h:60:9 */
212
+#define _IO_UNIFIED_JUMPTABLES 1
213
+
214
+/* /usr/include/features.h:237:10 */
215
+#define __USE_POSIX 1
216
+
217
+/* /usr/include/features.h:255:10 */
218
+#define __USE_ISOC95 1
219
+
220
+/* /usr/include/features.h:257:10 */
221
+#define __USE_ISOC99 1
222
+
223
+/* /usr/include/libio.h:127:9 */
224
+#define _IO_LEFT 02
225
+
226
+/* /usr/include/features.h:19:9 */
227
+#define _FEATURES_H 1
228
+
229
+/* /usr/include/stdlib.h:37:9 */
230
+#define _STDLIB_H 1
231
+
232
+/* /usr/include/bits/pthreadtypes.h:30:11 */
233
+#define __SIZEOF_PTHREAD_RWLOCK_T 56
234
+
235
+/* /usr/include/bits/pthreadtypes.h:29:11 */
236
+#define __SIZEOF_PTHREAD_CONDATTR_T 4
237
+
238
+/* /usr/include/bits/stdio_lim.h:23:10 */
239
+#define L_tmpnam 20
240
+
241
+/* /usr/include/bits/pthreadtypes.h:31:11 */
242
+#define __SIZEOF_PTHREAD_RWLOCKATTR_T 8
243
+
244
+/* /usr/include/bits/pthreadtypes.h:33:11 */
245
+#define __SIZEOF_PTHREAD_BARRIERATTR_T 4
246
+
247
+/* /usr/include/bits/pthreadtypes.h:32:11 */
248
+#define __SIZEOF_PTHREAD_BARRIER_T 32
249
+
250
+/* /usr/include/time.h:69:10 */
251
+#define __time_t_defined 1
252
+
253
+/* /usr/include/bits/stdio_lim.h:28:11 */
254
+#define L_ctermid 9
255
+
256
+/* /usr/include/time.h:53:10 */
257
+#define __clock_t_defined 1
258
+
259
+/* /usr/include/stdio.h:140:9 */
260
+#define SEEK_SET 0
261
+
262
+/* /usr/include/stdio.h:141:9 */
263
+#define SEEK_CUR 1
264
+
265
+/* /usr/include/bits/wordsize.h:4:10 */
266
+#define __WORDSIZE 64
267
+
268
+/* /usr/include/bits/wordsize.h:12:10 */
269
+#define __SYSCALL_WORDSIZE 64
270
+
271
+/* /usr/include/bits/wordsize.h:10:10 */
272
+#define __WORDSIZE_TIME64_COMPAT32 1
273
+
274
+/* /usr/include/yaml.h:665:9 */
275
+#define YAML_NULL_TAG "tag:yaml.org,2002:null"
276
+
277
+/* /usr/include/yaml.h:669:9 */
278
+#define YAML_STR_TAG "tag:yaml.org,2002:str"
279
+
280
+/* /usr/include/yaml.h:667:9 */
281
+#define YAML_BOOL_TAG "tag:yaml.org,2002:bool"
282
+
283
+/* /usr/include/yaml.h:673:9 */
284
+#define YAML_FLOAT_TAG "tag:yaml.org,2002:float"
285
+
286
+/* /usr/include/yaml.h:680:9 */
287
+#define YAML_MAP_TAG "tag:yaml.org,2002:map"
288
+
289
+/* /usr/include/yaml.h:671:9 */
290
+#define YAML_INT_TAG "tag:yaml.org,2002:int"
291
+
292
+/* /usr/include/yaml.h:678:9 */
293
+#define YAML_SEQ_TAG "tag:yaml.org,2002:seq"
294
+
295
+/* /usr/include/yaml.h:675:9 */
296
+#define YAML_TIMESTAMP_TAG "tag:yaml.org,2002:timestamp"
297
+
298
+/* /usr/include/bits/stdio_lim.h:37:10 */
299
+#define FOPEN_MAX 16
300
+
301
+/* /usr/include/features.h:233:10 */
302
+#define __USE_POSIX_IMPLICITLY 1
303
+
304
+/* /usr/include/bits/stdio_lim.h:24:10 */
305
+#define TMP_MAX 238328
306
+
307
+/* /usr/include/features.h:263:10 */
308
+#define _ATFILE_SOURCE 1
309
+
310
+/* /usr/include/stdc-predef.h:19:9 */
311
+#define _STDC_PREDEF_H 1
312
+
313
+/* /usr/include/bits/predefs.h:27:9 */
314
+#define __STDC_IEC_559__ 1
315
+
316
+/* /usr/include/stdc-predef.h:34:9 */
317
+#define __STDC_ISO_10646__ 201103L
318
+
319
+/* /usr/include/bits/predefs.h:28:9 */
320
+#define __STDC_IEC_559_COMPLEX__ 1
321
+
322
+/* /usr/include/features.h:350:9 */
323
+#define __GNU_LIBRARY__ 6
324
+
325
+/* /usr/include/stdc-predef.h:37:9 */
326
+#define __STDC_NO_THREADS__ 1
327
+
328
+/* /usr/include/features.h:355:9 */
329
+#define __GLIBC_MINOR__ 17
330
+
331
+/* /usr/include/features.h:354:9 */
332
+#define __GLIBC__ 2
333
+
334
+/* /usr/include/features.h:365:10 */
335
+#define __GLIBC_HAVE_LONG_LONG 1
336
+
337
+/* /usr/include/features.h:241:10 */
338
+#define __USE_POSIX2 1
339
+
340
+/* /usr/include/features.h:245:10 */
341
+#define __USE_POSIX199309 1
342
+
343
+/* /usr/include/stdlib.h:133:9 */
344
+#define EXIT_FAILURE 1
345
+
346
+/* /usr/include/stdlib.h:134:9 */
347
+#define EXIT_SUCCESS 0
348
+
349
+/* /usr/include/features.h:249:10 */
350
+#define __USE_POSIX199506 1
351
+
352
+/* /usr/include/stdlib.h:122:10 */
353
+#define __lldiv_t_defined 1
354
+
355
+/* /usr/include/features.h:253:10 */
356
+#define __USE_XOPEN2K 1
357
+
358
+/* /usr/include/stdlib.h:128:9 */
359
+#define RAND_MAX 2147483647
360
+
361
+/* /usr/include/features.h:261:10 */
362
+#define __USE_XOPEN2K8 1
363
+
364
+/* /usr/include/bits/sigset.h:27:10 */
365
+#define _SIGSET_NWORDS (1024/(8*sizeof(unsignedlongint)))
366
+
367
+/* /usr/include/bits/sigset.h:21:10 */
368
+#define _SIGSET_H_types 1
369
+
370
+/* /usr/include/features.h:309:10 */
371
+#define __USE_BSD 1
372
+
373
+/* /usr/include/bits/typesizes.h:79:10 */
374
+#define __OFF_T_MATCHES_OFF64_T 1
375
+
376
+/* /usr/include/features.h:313:10 */
377
+#define __USE_SVID 1
378
+
379
+/* /usr/include/features.h:305:10 */
380
+#define __USE_MISC 1
381
+
382
+/* /usr/include/bits/typesizes.h:82:10 */
383
+#define __INO_T_MATCHES_INO64_T 1
384
+
385
+/* /usr/include/features.h:317:10 */
386
+#define __USE_ATFILE 1
387
+
388
+/* /usr/include/bits/typesizes.h:86:9 */
389
+#define __FD_SETSIZE 1024
390
+
391
+/* /usr/include/bits/time.h:25:11 */
392
+#define _STRUCT_TIMEVAL 1
393
+
394
+/* /usr/include/features.h:336:10 */
395
+#define __USE_FORTIFY_LEVEL 0
396
+
397
+/* /usr/include/features.h:133:9 */
398
+#define __USE_ANSI 1
399
+
400
+/* /usr/include/features.h:188:10 */
401
+#define _BSD_SOURCE 1
402
+
403
+/* /usr/include/stdlib.h:110:10 */
404
+#define __ldiv_t_defined 1
405
+
406
+/* /usr/include/features.h:223:10 */
407
+#define _POSIX_SOURCE 1
408
+
409
+/* /usr/include/features.h:231:11 */
410
+#define _POSIX_C_SOURCE 200809L
411
+
412
+/* /usr/include/features.h:189:10 */
413
+#define _SVID_SOURCE 1
414
+
415
+/* /usr/include/sys/select.h:59:9 */
416
+#define __NFDBITS (8*(int)sizeof(__fd_mask))
417
+
418
+/* /usr/include/libio.h:129:9 */
419
+#define _IO_INTERNAL 010
420
+
421
+/* /usr/include/libio.h:130:9 */
422
+#define _IO_DEC 020
423
+
424
+/* /usr/include/bits/pthreadtypes.h:182:10 */
425
+#define __PTHREAD_RWLOCK_INT_FLAGS_SHARED 1
426
+
427
+/* /usr/include/libio.h:131:9 */
428
+#define _IO_OCT 040
429
+
430
+/* /usr/include/xlocale.h:21:9 */
431
+#define _XLOCALE_H 1
432
+
433
+/* /usr/include/libio.h:132:9 */
434
+#define _IO_HEX 0100
435
+
436
+/* /usr/include/libio.h:133:9 */
437
+#define _IO_SHOWBASE 0200
438
+
439
+/* /usr/include/libio.h:134:9 */
440
+#define _IO_SHOWPOINT 0400
441
+
442
+/* /usr/include/libio.h:135:9 */
443
+#define _IO_UPPERCASE 01000
444
+
445
+/* /usr/include/libio.h:136:9 */
446
+#define _IO_SHOWPOS 02000
447
+
448
+/* /usr/include/libio.h:137:9 */
449
+#define _IO_SCIENTIFIC 04000
450
+
451
+/* /usr/include/libio.h:138:9 */
452
+#define _IO_FIXED 010000
453
+
454
+/* /usr/include/endian.h:32:9 */
455
+#define __BIG_ENDIAN 4321
456
+
457
+/* /usr/include/libio.h:139:9 */
458
+#define _IO_UNITBUF 020000
459
+
460
+/* /usr/include/endian.h:33:9 */
461
+#define __PDP_ENDIAN 3412
462
+
463
+/* /usr/include/libio.h:141:9 */
464
+#define _IO_DONT_CLOSE 0100000
465
+
466
+/* /usr/include/libio.h:140:9 */
467
+#define _IO_STDIO 040000
468
+
469
+/* /usr/include/libio.h:142:9 */
470
+#define _IO_BOOLALPHA 0200000
471
+
472
+/* /usr/include/bits/waitstatus.h:58:9 */
473
+#define __W_CONTINUED 0xffff
474
+
475
+/* /usr/include/sys/types.h:23:9 */
476
+#define _SYS_TYPES_H 1
477
+
478
+/* /usr/include/bits/waitstatus.h:59:9 */
479
+#define __WCOREFLAG 0x80
480
+
481
+/* /usr/include/string.h:23:9 */
482
+#define _STRING_H 1
483
+
484
+/* /usr/include/endian.h:19:9 */
485
+#define _ENDIAN_H 1
486
+
487
+/* /usr/include/endian.h:31:9 */
488
+#define __LITTLE_ENDIAN 1234
489
+
490
+/* /usr/include/bits/waitflags.h:36:9 */
491
+#define __WALL 0x40000000
492
+
493
+/* /usr/include/sys/cdefs.h:20:9 */
494
+#define _SYS_CDEFS_H 1
495
+
496
+/* /usr/include/bits/waitflags.h:37:9 */
497
+#define __WCLONE 0x80000000
498
+
499
+/* /usr/include/alloca.h:19:9 */
500
+#define _ALLOCA_H 1
501
+
502
+/* /usr/include/bits/pthreadtypes.h:70:10 */
503
+#define __have_pthread_attr_t 1
504
+
505
+/* /usr/include/bits/pthreadtypes.h:106:10 */
506
+#define __PTHREAD_MUTEX_HAVE_PREV 1
507
+
508
+const __int128_t __c2ffi_____mbstate_t_defined = ____mbstate_t_defined;
509
+const __int128_t __c2ffi_____FILE_defined = ____FILE_defined;
510
+const __int128_t __c2ffi__G_HAVE_MMAP = _G_HAVE_MMAP;
511
+const __int128_t __c2ffi__G_IO_IO_FILE_VERSION = _G_IO_IO_FILE_VERSION;
512
+const __int128_t __c2ffi__G_HAVE_MREMAP = _G_HAVE_MREMAP;
513
+const __int128_t __c2ffi__G_BUFSIZ = _G_BUFSIZ;
514
+const __int128_t __c2ffi__G_config_h = _G_config_h;
515
+const __int128_t __c2ffi__BITS_BYTESWAP_H = _BITS_BYTESWAP_H;
516
+const __int128_t __c2ffi_FILENAME_MAX = FILENAME_MAX;
517
+const __int128_t __c2ffi___WNOTHREAD = __WNOTHREAD;
518
+const __int128_t __c2ffi_WNOWAIT = WNOWAIT;
519
+const __int128_t __c2ffi_WCONTINUED = WCONTINUED;
520
+const __int128_t __c2ffi_WSTOPPED = WSTOPPED;
521
+const __int128_t __c2ffi_WEXITED = WEXITED;
522
+const __int128_t __c2ffi_WUNTRACED = WUNTRACED;
523
+const __int128_t __c2ffi_WNOHANG = WNOHANG;
524
+const __int128_t __c2ffi__IOFBF = _IOFBF;
525
+const __int128_t __c2ffi__BITS_TYPES_H = _BITS_TYPES_H;
526
+const __int128_t __c2ffi__IONBF = _IONBF;
527
+const __int128_t __c2ffi__IOLBF = _IOLBF;
528
+const __int128_t __c2ffi__BITS_TYPESIZES_H = _BITS_TYPESIZES_H;
529
+const __int128_t __c2ffi__SYS_SYSMACROS_H = _SYS_SYSMACROS_H;
530
+const __int128_t __c2ffi__IO_FLAGS2_USER_WBUF = _IO_FLAGS2_USER_WBUF;
531
+const __int128_t __c2ffi__STDIO_H = _STDIO_H;
532
+const __int128_t __c2ffi__IO_FLAGS2_MMAP = _IO_FLAGS2_MMAP;
533
+const __int128_t __c2ffi__IO_RIGHT = _IO_RIGHT;
534
+const __int128_t __c2ffi__IO_USER_LOCK = _IO_USER_LOCK;
535
+const __int128_t __c2ffi___FILE_defined = __FILE_defined;
536
+const __int128_t __c2ffi__IO_BAD_SEEN = _IO_BAD_SEEN;
537
+const __int128_t __c2ffi__IO_IS_FILEBUF = _IO_IS_FILEBUF;
538
+const char* __c2ffi___FD_ZERO_STOS = __FD_ZERO_STOS;
539
+const __int128_t __c2ffi__IO_IS_APPENDING = _IO_IS_APPENDING;
540
+const __int128_t __c2ffi___BIT_TYPES_DEFINED__ = __BIT_TYPES_DEFINED__;
541
+const __int128_t __c2ffi__IO_TIED_PUT_GET = _IO_TIED_PUT_GET;
542
+const __int128_t __c2ffi__IO_LINKED = _IO_LINKED;
543
+const __int128_t __c2ffi__IO_DELETE_DONT_CLOSE = _IO_DELETE_DONT_CLOSE;
544
+const __int128_t __c2ffi__IO_ERR_SEEN = _IO_ERR_SEEN;
545
+const __int128_t __c2ffi__SYS_SELECT_H = _SYS_SELECT_H;
546
+const __int128_t __c2ffi__IO_EOF_SEEN = _IO_EOF_SEEN;
547
+const __int128_t __c2ffi___timer_t_defined = __timer_t_defined;
548
+const __int128_t __c2ffi__IO_LINE_BUF = _IO_LINE_BUF;
549
+const __int128_t __c2ffi__IO_NO_READS = _IO_NO_READS;
550
+const __int128_t __c2ffi___clockid_t_defined = __clockid_t_defined;
551
+const __int128_t __c2ffi__IO_UNBUFFERED = _IO_UNBUFFERED;
552
+const __int128_t __c2ffi__IO_USER_BUF = _IO_USER_BUF;
553
+const __int128_t __c2ffi__BITS_PTHREADTYPES_H = _BITS_PTHREADTYPES_H;
554
+const __int128_t __c2ffi__IO_MAGIC_MASK = _IO_MAGIC_MASK;
555
+const __int128_t __c2ffi___SIZEOF_PTHREAD_ATTR_T = __SIZEOF_PTHREAD_ATTR_T;
556
+const __int128_t __c2ffi__IO_NO_WRITES = _IO_NO_WRITES;
557
+const __int128_t __c2ffi___SIZEOF_PTHREAD_MUTEX_T = __SIZEOF_PTHREAD_MUTEX_T;
558
+const __int128_t __c2ffi___SIZEOF_PTHREAD_MUTEXATTR_T = __SIZEOF_PTHREAD_MUTEXATTR_T;
559
+const __int128_t __c2ffi___timespec_defined = __timespec_defined;
560
+const __int128_t __c2ffi__IO_MAGIC = _IO_MAGIC;
561
+const __int128_t __c2ffi___SIZEOF_PTHREAD_COND_T = __SIZEOF_PTHREAD_COND_T;
562
+const __int128_t __c2ffi__IO_CURRENTLY_PUTTING = _IO_CURRENTLY_PUTTING;
563
+const __int128_t __c2ffi__IOS_BIN = _IOS_BIN;
564
+const __int128_t __c2ffi__OLD_STDIO_MAGIC = _OLD_STDIO_MAGIC;
565
+const __int128_t __c2ffi__IOS_NOREPLACE = _IOS_NOREPLACE;
566
+const __int128_t __c2ffi__IOS_TRUNC = _IOS_TRUNC;
567
+const __int128_t __c2ffi__IOS_NOCREATE = _IOS_NOCREATE;
568
+const __int128_t __c2ffi__IOS_APPEND = _IOS_APPEND;
569
+const __int128_t __c2ffi__IO_FLAGS2_NOTCANCEL = _IO_FLAGS2_NOTCANCEL;
570
+const __int128_t __c2ffi__IOS_ATEND = _IOS_ATEND;
571
+const __int128_t __c2ffi__IOS_OUTPUT = _IOS_OUTPUT;
572
+const __int128_t __c2ffi__IO_SKIPWS = _IO_SKIPWS;
573
+const char* __c2ffi_P_tmpdir = P_tmpdir;
574
+const __int128_t __c2ffi__IO_IN_BACKUP = _IO_IN_BACKUP;
575
+const __int128_t __c2ffi__IOS_INPUT = _IOS_INPUT;
576
+const __int128_t __c2ffi_SEEK_END = SEEK_END;
577
+const __int128_t __c2ffi_EOF = EOF;
578
+const __int128_t __c2ffi__IO_UNIFIED_JUMPTABLES = _IO_UNIFIED_JUMPTABLES;
579
+const __int128_t __c2ffi___USE_POSIX = __USE_POSIX;
580
+const __int128_t __c2ffi___USE_ISOC95 = __USE_ISOC95;
581
+const __int128_t __c2ffi___USE_ISOC99 = __USE_ISOC99;
582
+const __int128_t __c2ffi__IO_LEFT = _IO_LEFT;
583
+const __int128_t __c2ffi__FEATURES_H = _FEATURES_H;
584
+const __int128_t __c2ffi__STDLIB_H = _STDLIB_H;
585
+const __int128_t __c2ffi___SIZEOF_PTHREAD_RWLOCK_T = __SIZEOF_PTHREAD_RWLOCK_T;
586
+const __int128_t __c2ffi___SIZEOF_PTHREAD_CONDATTR_T = __SIZEOF_PTHREAD_CONDATTR_T;
587
+const __int128_t __c2ffi_L_tmpnam = L_tmpnam;
588
+const __int128_t __c2ffi___SIZEOF_PTHREAD_RWLOCKATTR_T = __SIZEOF_PTHREAD_RWLOCKATTR_T;
589
+const __int128_t __c2ffi___SIZEOF_PTHREAD_BARRIERATTR_T = __SIZEOF_PTHREAD_BARRIERATTR_T;
590
+const __int128_t __c2ffi___SIZEOF_PTHREAD_BARRIER_T = __SIZEOF_PTHREAD_BARRIER_T;
591
+const __int128_t __c2ffi___time_t_defined = __time_t_defined;
592
+const __int128_t __c2ffi_L_ctermid = L_ctermid;
593
+const __int128_t __c2ffi___clock_t_defined = __clock_t_defined;
594
+const __int128_t __c2ffi_SEEK_SET = SEEK_SET;
595
+const __int128_t __c2ffi_SEEK_CUR = SEEK_CUR;
596
+const __int128_t __c2ffi___WORDSIZE = __WORDSIZE;
597
+const __int128_t __c2ffi___SYSCALL_WORDSIZE = __SYSCALL_WORDSIZE;
598
+const __int128_t __c2ffi___WORDSIZE_TIME64_COMPAT32 = __WORDSIZE_TIME64_COMPAT32;
599
+const char* __c2ffi_YAML_NULL_TAG = YAML_NULL_TAG;
600
+const char* __c2ffi_YAML_STR_TAG = YAML_STR_TAG;
601
+const char* __c2ffi_YAML_BOOL_TAG = YAML_BOOL_TAG;
602
+const char* __c2ffi_YAML_FLOAT_TAG = YAML_FLOAT_TAG;
603
+const char* __c2ffi_YAML_MAP_TAG = YAML_MAP_TAG;
604
+const char* __c2ffi_YAML_INT_TAG = YAML_INT_TAG;
605
+const char* __c2ffi_YAML_SEQ_TAG = YAML_SEQ_TAG;
606
+const char* __c2ffi_YAML_TIMESTAMP_TAG = YAML_TIMESTAMP_TAG;
607
+const __int128_t __c2ffi_FOPEN_MAX = FOPEN_MAX;
608
+const __int128_t __c2ffi___USE_POSIX_IMPLICITLY = __USE_POSIX_IMPLICITLY;
609
+const __int128_t __c2ffi_TMP_MAX = TMP_MAX;
610
+const __int128_t __c2ffi__ATFILE_SOURCE = _ATFILE_SOURCE;
611
+const __int128_t __c2ffi__STDC_PREDEF_H = _STDC_PREDEF_H;
612
+const __int128_t __c2ffi___STDC_IEC_559__ = __STDC_IEC_559__;
613
+const __int128_t __c2ffi___STDC_ISO_10646__ = __STDC_ISO_10646__;
614
+const __int128_t __c2ffi___STDC_IEC_559_COMPLEX__ = __STDC_IEC_559_COMPLEX__;
615
+const __int128_t __c2ffi___GNU_LIBRARY__ = __GNU_LIBRARY__;
616
+const __int128_t __c2ffi___STDC_NO_THREADS__ = __STDC_NO_THREADS__;
617
+const __int128_t __c2ffi___GLIBC_MINOR__ = __GLIBC_MINOR__;
618
+const __int128_t __c2ffi___GLIBC__ = __GLIBC__;
619
+const __int128_t __c2ffi___GLIBC_HAVE_LONG_LONG = __GLIBC_HAVE_LONG_LONG;
620
+const __int128_t __c2ffi___USE_POSIX2 = __USE_POSIX2;
621
+const __int128_t __c2ffi___USE_POSIX199309 = __USE_POSIX199309;
622
+const __int128_t __c2ffi_EXIT_FAILURE = EXIT_FAILURE;
623
+const __int128_t __c2ffi_EXIT_SUCCESS = EXIT_SUCCESS;
624
+const __int128_t __c2ffi___USE_POSIX199506 = __USE_POSIX199506;
625
+const __int128_t __c2ffi___lldiv_t_defined = __lldiv_t_defined;
626
+const __int128_t __c2ffi___USE_XOPEN2K = __USE_XOPEN2K;
627
+const __int128_t __c2ffi_RAND_MAX = RAND_MAX;
628
+const __int128_t __c2ffi___USE_XOPEN2K8 = __USE_XOPEN2K8;
629
+const __int128_t __c2ffi__SIGSET_NWORDS = _SIGSET_NWORDS;
630
+const __int128_t __c2ffi__SIGSET_H_types = _SIGSET_H_types;
631
+const __int128_t __c2ffi___USE_BSD = __USE_BSD;
632
+const __int128_t __c2ffi___OFF_T_MATCHES_OFF64_T = __OFF_T_MATCHES_OFF64_T;
633
+const __int128_t __c2ffi___USE_SVID = __USE_SVID;
634
+const __int128_t __c2ffi___USE_MISC = __USE_MISC;
635
+const __int128_t __c2ffi___INO_T_MATCHES_INO64_T = __INO_T_MATCHES_INO64_T;
636
+const __int128_t __c2ffi___USE_ATFILE = __USE_ATFILE;
637
+const __int128_t __c2ffi___FD_SETSIZE = __FD_SETSIZE;
638
+const __int128_t __c2ffi__STRUCT_TIMEVAL = _STRUCT_TIMEVAL;
639
+const __int128_t __c2ffi___USE_FORTIFY_LEVEL = __USE_FORTIFY_LEVEL;
640
+const __int128_t __c2ffi___USE_ANSI = __USE_ANSI;
641
+const __int128_t __c2ffi__BSD_SOURCE = _BSD_SOURCE;
642
+const __int128_t __c2ffi___ldiv_t_defined = __ldiv_t_defined;
643
+const __int128_t __c2ffi__POSIX_SOURCE = _POSIX_SOURCE;
644
+const __int128_t __c2ffi__POSIX_C_SOURCE = _POSIX_C_SOURCE;
645
+const __int128_t __c2ffi__SVID_SOURCE = _SVID_SOURCE;
646
+const __int128_t __c2ffi___NFDBITS = __NFDBITS;
647
+const __int128_t __c2ffi__IO_INTERNAL = _IO_INTERNAL;
648
+const __int128_t __c2ffi__IO_DEC = _IO_DEC;
649
+const __int128_t __c2ffi___PTHREAD_RWLOCK_INT_FLAGS_SHARED = __PTHREAD_RWLOCK_INT_FLAGS_SHARED;
650
+const __int128_t __c2ffi__IO_OCT = _IO_OCT;
651
+const __int128_t __c2ffi__XLOCALE_H = _XLOCALE_H;
652
+const __int128_t __c2ffi__IO_HEX = _IO_HEX;
653
+const __int128_t __c2ffi__IO_SHOWBASE = _IO_SHOWBASE;
654
+const __int128_t __c2ffi__IO_SHOWPOINT = _IO_SHOWPOINT;
655
+const __int128_t __c2ffi__IO_UPPERCASE = _IO_UPPERCASE;
656
+const __int128_t __c2ffi__IO_SHOWPOS = _IO_SHOWPOS;
657
+const __int128_t __c2ffi__IO_SCIENTIFIC = _IO_SCIENTIFIC;
658
+const __int128_t __c2ffi__IO_FIXED = _IO_FIXED;
659
+const __int128_t __c2ffi___BIG_ENDIAN = __BIG_ENDIAN;
660
+const __int128_t __c2ffi__IO_UNITBUF = _IO_UNITBUF;
661
+const __int128_t __c2ffi___PDP_ENDIAN = __PDP_ENDIAN;
662
+const __int128_t __c2ffi__IO_DONT_CLOSE = _IO_DONT_CLOSE;
663
+const __int128_t __c2ffi__IO_STDIO = _IO_STDIO;
664
+const __int128_t __c2ffi__IO_BOOLALPHA = _IO_BOOLALPHA;
665
+const __int128_t __c2ffi___W_CONTINUED = __W_CONTINUED;
666
+const __int128_t __c2ffi__SYS_TYPES_H = _SYS_TYPES_H;
667
+const __int128_t __c2ffi___WCOREFLAG = __WCOREFLAG;
668
+const __int128_t __c2ffi__STRING_H = _STRING_H;
669
+const __int128_t __c2ffi__ENDIAN_H = _ENDIAN_H;
670
+const __int128_t __c2ffi___LITTLE_ENDIAN = __LITTLE_ENDIAN;
671
+const __int128_t __c2ffi___WALL = __WALL;
672
+const __int128_t __c2ffi__SYS_CDEFS_H = _SYS_CDEFS_H;
673
+const __int128_t __c2ffi___WCLONE = __WCLONE;
674
+const __int128_t __c2ffi__ALLOCA_H = _ALLOCA_H;
675
+const __int128_t __c2ffi___have_pthread_attr_t = __have_pthread_attr_t;
676
+const __int128_t __c2ffi___PTHREAD_MUTEX_HAVE_PREV = __PTHREAD_MUTEX_HAVE_PREV;
0 677
new file mode 100755
... ...
@@ -0,0 +1,171 @@
1
+[
2
+{ "tag": "const", "name": "____mbstate_t_defined", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-apple-darwin9.h:508:18", "type": { "tag": "__int128_t" }, "value": 1 },
3
+{ "tag": "const", "name": "____FILE_defined", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-apple-darwin9.h:509:18", "type": { "tag": "__int128_t" }, "value": 1 },
4
+{ "tag": "const", "name": "_G_HAVE_MMAP", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-apple-darwin9.h:510:18", "type": { "tag": "__int128_t" }, "value": 1 },
5
+{ "tag": "const", "name": "_G_IO_IO_FILE_VERSION", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-apple-darwin9.h:511:18", "type": { "tag": "__int128_t" }, "value": 131073 },
6
+{ "tag": "const", "name": "_G_HAVE_MREMAP", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-apple-darwin9.h:512:18", "type": { "tag": "__int128_t" }, "value": 1 },
7
+{ "tag": "const", "name": "_G_BUFSIZ", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-apple-darwin9.h:513:18", "type": { "tag": "__int128_t" }, "value": 8192 },
8
+{ "tag": "const", "name": "_G_config_h", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-apple-darwin9.h:514:18", "type": { "tag": "__int128_t" }, "value": 1 },
9
+{ "tag": "const", "name": "_BITS_BYTESWAP_H", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-apple-darwin9.h:515:18", "type": { "tag": "__int128_t" }, "value": 1 },
10
+{ "tag": "const", "name": "FILENAME_MAX", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-apple-darwin9.h:516:18", "type": { "tag": "__int128_t" }, "value": 4096 },
11
+{ "tag": "const", "name": "__WNOTHREAD", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-apple-darwin9.h:517:18", "type": { "tag": "__int128_t" }, "value": 536870912 },
12
+{ "tag": "const", "name": "WNOWAIT", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-apple-darwin9.h:518:18", "type": { "tag": "__int128_t" }, "value": 16777216 },
13
+{ "tag": "const", "name": "WCONTINUED", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-apple-darwin9.h:519:18", "type": { "tag": "__int128_t" }, "value": 8 },
14
+{ "tag": "const", "name": "WSTOPPED", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-apple-darwin9.h:520:18", "type": { "tag": "__int128_t" }, "value": 2 },
15
+{ "tag": "const", "name": "WEXITED", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-apple-darwin9.h:521:18", "type": { "tag": "__int128_t" }, "value": 4 },
16
+{ "tag": "const", "name": "WUNTRACED", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-apple-darwin9.h:522:18", "type": { "tag": "__int128_t" }, "value": 2 },
17
+{ "tag": "const", "name": "WNOHANG", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-apple-darwin9.h:523:18", "type": { "tag": "__int128_t" }, "value": 1 },
18
+{ "tag": "const", "name": "_IOFBF", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-apple-darwin9.h:524:18", "type": { "tag": "__int128_t" }, "value": 0 },
19
+{ "tag": "const", "name": "_BITS_TYPES_H", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-apple-darwin9.h:525:18", "type": { "tag": "__int128_t" }, "value": 1 },
20
+{ "tag": "const", "name": "_IONBF", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-apple-darwin9.h:526:18", "type": { "tag": "__int128_t" }, "value": 2 },
21
+{ "tag": "const", "name": "_IOLBF", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-apple-darwin9.h:527:18", "type": { "tag": "__int128_t" }, "value": 1 },
22
+{ "tag": "const", "name": "_BITS_TYPESIZES_H", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-apple-darwin9.h:528:18", "type": { "tag": "__int128_t" }, "value": 1 },
23
+{ "tag": "const", "name": "_SYS_SYSMACROS_H", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-apple-darwin9.h:529:18", "type": { "tag": "__int128_t" }, "value": 1 },
24
+{ "tag": "const", "name": "_IO_FLAGS2_USER_WBUF", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-apple-darwin9.h:530:18", "type": { "tag": "__int128_t" }, "value": 8 },
25
+{ "tag": "const", "name": "_STDIO_H", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-apple-darwin9.h:531:18", "type": { "tag": "__int128_t" }, "value": 1 },
26
+{ "tag": "const", "name": "_IO_FLAGS2_MMAP", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-apple-darwin9.h:532:18", "type": { "tag": "__int128_t" }, "value": 1 },
27
+{ "tag": "const", "name": "_IO_RIGHT", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-apple-darwin9.h:533:18", "type": { "tag": "__int128_t" }, "value": 4 },
28
+{ "tag": "const", "name": "_IO_USER_LOCK", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-apple-darwin9.h:534:18", "type": { "tag": "__int128_t" }, "value": 32768 },
29
+{ "tag": "const", "name": "__FILE_defined", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-apple-darwin9.h:535:18", "type": { "tag": "__int128_t" }, "value": 1 },
30
+{ "tag": "const", "name": "_IO_BAD_SEEN", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-apple-darwin9.h:536:18", "type": { "tag": "__int128_t" }, "value": 16384 },
31
+{ "tag": "const", "name": "_IO_IS_FILEBUF", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-apple-darwin9.h:537:18", "type": { "tag": "__int128_t" }, "value": 8192 },
32
+{ "tag": "const", "name": "__FD_ZERO_STOS", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-apple-darwin9.h:538:13", "type": { "tag": ":pointer", "type": { "tag": ":char" } }, "value": "stosq" },
33
+{ "tag": "const", "name": "_IO_IS_APPENDING", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-apple-darwin9.h:539:18", "type": { "tag": "__int128_t" }, "value": 4096 },
34
+{ "tag": "const", "name": "__BIT_TYPES_DEFINED__", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-apple-darwin9.h:540:18", "type": { "tag": "__int128_t" }, "value": 1 },
35
+{ "tag": "const", "name": "_IO_TIED_PUT_GET", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-apple-darwin9.h:541:18", "type": { "tag": "__int128_t" }, "value": 1024 },
36
+{ "tag": "const", "name": "_IO_LINKED", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-apple-darwin9.h:542:18", "type": { "tag": "__int128_t" }, "value": 128 },
37
+{ "tag": "const", "name": "_IO_DELETE_DONT_CLOSE", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-apple-darwin9.h:543:18", "type": { "tag": "__int128_t" }, "value": 64 },
38
+{ "tag": "const", "name": "_IO_ERR_SEEN", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-apple-darwin9.h:544:18", "type": { "tag": "__int128_t" }, "value": 32 },
39
+{ "tag": "const", "name": "_SYS_SELECT_H", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-apple-darwin9.h:545:18", "type": { "tag": "__int128_t" }, "value": 1 },
40
+{ "tag": "const", "name": "_IO_EOF_SEEN", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-apple-darwin9.h:546:18", "type": { "tag": "__int128_t" }, "value": 16 },
41
+{ "tag": "const", "name": "__timer_t_defined", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-apple-darwin9.h:547:18", "type": { "tag": "__int128_t" }, "value": 1 },
42
+{ "tag": "const", "name": "_IO_LINE_BUF", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-apple-darwin9.h:548:18", "type": { "tag": "__int128_t" }, "value": 512 },
43
+{ "tag": "const", "name": "_IO_NO_READS", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-apple-darwin9.h:549:18", "type": { "tag": "__int128_t" }, "value": 4 },
44
+{ "tag": "const", "name": "__clockid_t_defined", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-apple-darwin9.h:550:18", "type": { "tag": "__int128_t" }, "value": 1 },
45
+{ "tag": "const", "name": "_IO_UNBUFFERED", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-apple-darwin9.h:551:18", "type": { "tag": "__int128_t" }, "value": 2 },
46
+{ "tag": "const", "name": "_IO_USER_BUF", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-apple-darwin9.h:552:18", "type": { "tag": "__int128_t" }, "value": 1 },
47
+{ "tag": "const", "name": "_BITS_PTHREADTYPES_H", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-apple-darwin9.h:553:18", "type": { "tag": "__int128_t" }, "value": 1 },
48
+{ "tag": "const", "name": "_IO_MAGIC_MASK", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-apple-darwin9.h:554:18", "type": { "tag": "__int128_t" }, "value": 4294901760 },
49
+{ "tag": "const", "name": "__SIZEOF_PTHREAD_ATTR_T", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-apple-darwin9.h:555:18", "type": { "tag": "__int128_t" }, "value": 56 },
50
+{ "tag": "const", "name": "_IO_NO_WRITES", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-apple-darwin9.h:556:18", "type": { "tag": "__int128_t" }, "value": 8 },
51
+{ "tag": "const", "name": "__SIZEOF_PTHREAD_MUTEX_T", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-apple-darwin9.h:557:18", "type": { "tag": "__int128_t" }, "value": 40 },
52
+{ "tag": "const", "name": "__SIZEOF_PTHREAD_MUTEXATTR_T", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-apple-darwin9.h:558:18", "type": { "tag": "__int128_t" }, "value": 4 },
53
+{ "tag": "const", "name": "__timespec_defined", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-apple-darwin9.h:559:18", "type": { "tag": "__int128_t" }, "value": 1 },
54
+{ "tag": "const", "name": "_IO_MAGIC", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-apple-darwin9.h:560:18", "type": { "tag": "__int128_t" }, "value": 4222418944 },
55
+{ "tag": "const", "name": "__SIZEOF_PTHREAD_COND_T", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-apple-darwin9.h:561:18", "type": { "tag": "__int128_t" }, "value": 48 },
56
+{ "tag": "const", "name": "_IO_CURRENTLY_PUTTING", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-apple-darwin9.h:562:18", "type": { "tag": "__int128_t" }, "value": 2048 },
57
+{ "tag": "const", "name": "_IOS_BIN", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-apple-darwin9.h:563:18", "type": { "tag": "__int128_t" }, "value": 128 },
58
+{ "tag": "const", "name": "_OLD_STDIO_MAGIC", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-apple-darwin9.h:564:18", "type": { "tag": "__int128_t" }, "value": 4206624768 },
59
+{ "tag": "const", "name": "_IOS_NOREPLACE", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-apple-darwin9.h:565:18", "type": { "tag": "__int128_t" }, "value": 64 },
60
+{ "tag": "const", "name": "_IOS_TRUNC", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-apple-darwin9.h:566:18", "type": { "tag": "__int128_t" }, "value": 16 },
61
+{ "tag": "const", "name": "_IOS_NOCREATE", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-apple-darwin9.h:567:18", "type": { "tag": "__int128_t" }, "value": 32 },
62
+{ "tag": "const", "name": "_IOS_APPEND", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-apple-darwin9.h:568:18", "type": { "tag": "__int128_t" }, "value": 8 },
63
+{ "tag": "const", "name": "_IO_FLAGS2_NOTCANCEL", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-apple-darwin9.h:569:18", "type": { "tag": "__int128_t" }, "value": 2 },
64
+{ "tag": "const", "name": "_IOS_ATEND", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-apple-darwin9.h:570:18", "type": { "tag": "__int128_t" }, "value": 4 },
65
+{ "tag": "const", "name": "_IOS_OUTPUT", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-apple-darwin9.h:571:18", "type": { "tag": "__int128_t" }, "value": 2 },
66
+{ "tag": "const", "name": "_IO_SKIPWS", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-apple-darwin9.h:572:18", "type": { "tag": "__int128_t" }, "value": 1 },
67
+{ "tag": "const", "name": "P_tmpdir", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-apple-darwin9.h:573:13", "type": { "tag": ":pointer", "type": { "tag": ":char" } }, "value": "/tmp" },
68
+{ "tag": "const", "name": "_IO_IN_BACKUP", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-apple-darwin9.h:574:18", "type": { "tag": "__int128_t" }, "value": 256 },
69
+{ "tag": "const", "name": "_IOS_INPUT", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-apple-darwin9.h:575:18", "type": { "tag": "__int128_t" }, "value": 1 },
70
+{ "tag": "const", "name": "SEEK_END", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-apple-darwin9.h:576:18", "type": { "tag": "__int128_t" }, "value": 2 },
71
+{ "tag": "const", "name": "EOF", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-apple-darwin9.h:577:18", "type": { "tag": "__int128_t" }, "value": -1 },
72
+{ "tag": "const", "name": "_IO_UNIFIED_JUMPTABLES", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-apple-darwin9.h:578:18", "type": { "tag": "__int128_t" }, "value": 1 },
73
+{ "tag": "const", "name": "__USE_POSIX", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-apple-darwin9.h:579:18", "type": { "tag": "__int128_t" }, "value": 1 },
74
+{ "tag": "const", "name": "__USE_ISOC95", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-apple-darwin9.h:580:18", "type": { "tag": "__int128_t" }, "value": 1 },
75
+{ "tag": "const", "name": "__USE_ISOC99", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-apple-darwin9.h:581:18", "type": { "tag": "__int128_t" }, "value": 1 },
76
+{ "tag": "const", "name": "_IO_LEFT", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-apple-darwin9.h:582:18", "type": { "tag": "__int128_t" }, "value": 2 },
77
+{ "tag": "const", "name": "_FEATURES_H", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-apple-darwin9.h:583:18", "type": { "tag": "__int128_t" }, "value": 1 },
78
+{ "tag": "const", "name": "_STDLIB_H", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-apple-darwin9.h:584:18", "type": { "tag": "__int128_t" }, "value": 1 },
79
+{ "tag": "const", "name": "__SIZEOF_PTHREAD_RWLOCK_T", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-apple-darwin9.h:585:18", "type": { "tag": "__int128_t" }, "value": 56 },
80
+{ "tag": "const", "name": "__SIZEOF_PTHREAD_CONDATTR_T", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-apple-darwin9.h:586:18", "type": { "tag": "__int128_t" }, "value": 4 },
81
+{ "tag": "const", "name": "L_tmpnam", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-apple-darwin9.h:587:18", "type": { "tag": "__int128_t" }, "value": 20 },
82
+{ "tag": "const", "name": "__SIZEOF_PTHREAD_RWLOCKATTR_T", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-apple-darwin9.h:588:18", "type": { "tag": "__int128_t" }, "value": 8 },
83
+{ "tag": "const", "name": "__SIZEOF_PTHREAD_BARRIERATTR_T", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-apple-darwin9.h:589:18", "type": { "tag": "__int128_t" }, "value": 4 },
84
+{ "tag": "const", "name": "__SIZEOF_PTHREAD_BARRIER_T", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-apple-darwin9.h:590:18", "type": { "tag": "__int128_t" }, "value": 32 },
85
+{ "tag": "const", "name": "__time_t_defined", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-apple-darwin9.h:591:18", "type": { "tag": "__int128_t" }, "value": 1 },
86
+{ "tag": "const", "name": "L_ctermid", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-apple-darwin9.h:592:18", "type": { "tag": "__int128_t" }, "value": 9 },
87
+{ "tag": "const", "name": "__clock_t_defined", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-apple-darwin9.h:593:18", "type": { "tag": "__int128_t" }, "value": 1 },
88
+{ "tag": "const", "name": "SEEK_SET", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-apple-darwin9.h:594:18", "type": { "tag": "__int128_t" }, "value": 0 },
89
+{ "tag": "const", "name": "SEEK_CUR", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-apple-darwin9.h:595:18", "type": { "tag": "__int128_t" }, "value": 1 },
90
+{ "tag": "const", "name": "__WORDSIZE", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-apple-darwin9.h:596:18", "type": { "tag": "__int128_t" }, "value": 64 },
91
+{ "tag": "const", "name": "__SYSCALL_WORDSIZE", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-apple-darwin9.h:597:18", "type": { "tag": "__int128_t" }, "value": 64 },
92
+{ "tag": "const", "name": "__WORDSIZE_TIME64_COMPAT32", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-apple-darwin9.h:598:18", "type": { "tag": "__int128_t" }, "value": 1 },
93
+{ "tag": "const", "name": "YAML_NULL_TAG", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-apple-darwin9.h:599:13", "type": { "tag": ":pointer", "type": { "tag": ":char" } }, "value": "tag:yaml.org,2002:null" },
94
+{ "tag": "const", "name": "YAML_STR_TAG", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-apple-darwin9.h:600:13", "type": { "tag": ":pointer", "type": { "tag": ":char" } }, "value": "tag:yaml.org,2002:str" },
95
+{ "tag": "const", "name": "YAML_BOOL_TAG", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-apple-darwin9.h:601:13", "type": { "tag": ":pointer", "type": { "tag": ":char" } }, "value": "tag:yaml.org,2002:bool" },
96
+{ "tag": "const", "name": "YAML_FLOAT_TAG", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-apple-darwin9.h:602:13", "type": { "tag": ":pointer", "type": { "tag": ":char" } }, "value": "tag:yaml.org,2002:float" },
97
+{ "tag": "const", "name": "YAML_MAP_TAG", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-apple-darwin9.h:603:13", "type": { "tag": ":pointer", "type": { "tag": ":char" } }, "value": "tag:yaml.org,2002:map" },
98
+{ "tag": "const", "name": "YAML_INT_TAG", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-apple-darwin9.h:604:13", "type": { "tag": ":pointer", "type": { "tag": ":char" } }, "value": "tag:yaml.org,2002:int" },
99
+{ "tag": "const", "name": "YAML_SEQ_TAG", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-apple-darwin9.h:605:13", "type": { "tag": ":pointer", "type": { "tag": ":char" } }, "value": "tag:yaml.org,2002:seq" },
100
+{ "tag": "const", "name": "YAML_TIMESTAMP_TAG", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-apple-darwin9.h:606:13", "type": { "tag": ":pointer", "type": { "tag": ":char" } }, "value": "tag:yaml.org,2002:timestamp" },
101
+{ "tag": "const", "name": "FOPEN_MAX", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-apple-darwin9.h:607:18", "type": { "tag": "__int128_t" }, "value": 16 },
102
+{ "tag": "const", "name": "__USE_POSIX_IMPLICITLY", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-apple-darwin9.h:608:18", "type": { "tag": "__int128_t" }, "value": 1 },
103
+{ "tag": "const", "name": "TMP_MAX", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-apple-darwin9.h:609:18", "type": { "tag": "__int128_t" }, "value": 238328 },
104
+{ "tag": "const", "name": "_ATFILE_SOURCE", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-apple-darwin9.h:610:18", "type": { "tag": "__int128_t" }, "value": 1 },
105
+{ "tag": "const", "name": "_STDC_PREDEF_H", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-apple-darwin9.h:611:18", "type": { "tag": "__int128_t" }, "value": 1 },
106
+{ "tag": "const", "name": "__STDC_IEC_559__", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-apple-darwin9.h:612:18", "type": { "tag": "__int128_t" }, "value": 1 },
107
+{ "tag": "const", "name": "__STDC_ISO_10646__", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-apple-darwin9.h:613:18", "type": { "tag": "__int128_t" }, "value": 201103 },
108
+{ "tag": "const", "name": "__STDC_IEC_559_COMPLEX__", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-apple-darwin9.h:614:18", "type": { "tag": "__int128_t" }, "value": 1 },
109
+{ "tag": "const", "name": "__GNU_LIBRARY__", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-apple-darwin9.h:615:18", "type": { "tag": "__int128_t" }, "value": 6 },
110
+{ "tag": "const", "name": "__STDC_NO_THREADS__", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-apple-darwin9.h:616:18", "type": { "tag": "__int128_t" }, "value": 1 },
111
+{ "tag": "const", "name": "__GLIBC_MINOR__", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-apple-darwin9.h:617:18", "type": { "tag": "__int128_t" }, "value": 17 },
112
+{ "tag": "const", "name": "__GLIBC__", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-apple-darwin9.h:618:18", "type": { "tag": "__int128_t" }, "value": 2 },
113
+{ "tag": "const", "name": "__GLIBC_HAVE_LONG_LONG", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-apple-darwin9.h:619:18", "type": { "tag": "__int128_t" }, "value": 1 },
114
+{ "tag": "const", "name": "__USE_POSIX2", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-apple-darwin9.h:620:18", "type": { "tag": "__int128_t" }, "value": 1 },
115
+{ "tag": "const", "name": "__USE_POSIX199309", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-apple-darwin9.h:621:18", "type": { "tag": "__int128_t" }, "value": 1 },
116
+{ "tag": "const", "name": "EXIT_FAILURE", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-apple-darwin9.h:622:18", "type": { "tag": "__int128_t" }, "value": 1 },
117
+{ "tag": "const", "name": "EXIT_SUCCESS", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-apple-darwin9.h:623:18", "type": { "tag": "__int128_t" }, "value": 0 },
118
+{ "tag": "const", "name": "__USE_POSIX199506", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-apple-darwin9.h:624:18", "type": { "tag": "__int128_t" }, "value": 1 },
119
+{ "tag": "const", "name": "__lldiv_t_defined", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-apple-darwin9.h:625:18", "type": { "tag": "__int128_t" }, "value": 1 },
120
+{ "tag": "const", "name": "__USE_XOPEN2K", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-apple-darwin9.h:626:18", "type": { "tag": "__int128_t" }, "value": 1 },
121
+{ "tag": "const", "name": "RAND_MAX", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-apple-darwin9.h:627:18", "type": { "tag": "__int128_t" }, "value": 2147483647 },
122
+{ "tag": "const", "name": "__USE_XOPEN2K8", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-apple-darwin9.h:628:18", "type": { "tag": "__int128_t" }, "value": 1 },
123
+{ "tag": "const", "name": "_SIGSET_NWORDS", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-apple-darwin9.h:629:18", "type": { "tag": "__int128_t" } },
124
+{ "tag": "const", "name": "_SIGSET_H_types", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-apple-darwin9.h:630:18", "type": { "tag": "__int128_t" }, "value": 1 },
125
+{ "tag": "const", "name": "__USE_BSD", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-apple-darwin9.h:631:18", "type": { "tag": "__int128_t" }, "value": 1 },
126
+{ "tag": "const", "name": "__OFF_T_MATCHES_OFF64_T", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-apple-darwin9.h:632:18", "type": { "tag": "__int128_t" }, "value": 1 },
127
+{ "tag": "const", "name": "__USE_SVID", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-apple-darwin9.h:633:18", "type": { "tag": "__int128_t" }, "value": 1 },
128
+{ "tag": "const", "name": "__USE_MISC", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-apple-darwin9.h:634:18", "type": { "tag": "__int128_t" }, "value": 1 },
129
+{ "tag": "const", "name": "__INO_T_MATCHES_INO64_T", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-apple-darwin9.h:635:18", "type": { "tag": "__int128_t" }, "value": 1 },
130
+{ "tag": "const", "name": "__USE_ATFILE", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-apple-darwin9.h:636:18", "type": { "tag": "__int128_t" }, "value": 1 },
131
+{ "tag": "const", "name": "__FD_SETSIZE", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-apple-darwin9.h:637:18", "type": { "tag": "__int128_t" }, "value": 1024 },
132
+{ "tag": "const", "name": "_STRUCT_TIMEVAL", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-apple-darwin9.h:638:18", "type": { "tag": "__int128_t" }, "value": 1 },
133
+{ "tag": "const", "name": "__USE_FORTIFY_LEVEL", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-apple-darwin9.h:639:18", "type": { "tag": "__int128_t" }, "value": 0 },
134
+{ "tag": "const", "name": "__USE_ANSI", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-apple-darwin9.h:640:18", "type": { "tag": "__int128_t" }, "value": 1 },
135
+{ "tag": "const", "name": "_BSD_SOURCE", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-apple-darwin9.h:641:18", "type": { "tag": "__int128_t" }, "value": 1 },
136
+{ "tag": "const", "name": "__ldiv_t_defined", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-apple-darwin9.h:642:18", "type": { "tag": "__int128_t" }, "value": 1 },
137
+{ "tag": "const", "name": "_POSIX_SOURCE", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-apple-darwin9.h:643:18", "type": { "tag": "__int128_t" }, "value": 1 },
138
+{ "tag": "const", "name": "_POSIX_C_SOURCE", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-apple-darwin9.h:644:18", "type": { "tag": "__int128_t" }, "value": 200809 },
139
+{ "tag": "const", "name": "_SVID_SOURCE", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-apple-darwin9.h:645:18", "type": { "tag": "__int128_t" }, "value": 1 },
140
+{ "tag": "const", "name": "__NFDBITS", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-apple-darwin9.h:646:18", "type": { "tag": "__int128_t" } },
141
+{ "tag": "const", "name": "_IO_INTERNAL", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-apple-darwin9.h:647:18", "type": { "tag": "__int128_t" }, "value": 8 },
142
+{ "tag": "const", "name": "_IO_DEC", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-apple-darwin9.h:648:18", "type": { "tag": "__int128_t" }, "value": 16 },
143
+{ "tag": "const", "name": "__PTHREAD_RWLOCK_INT_FLAGS_SHARED", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-apple-darwin9.h:649:18", "type": { "tag": "__int128_t" }, "value": 1 },
144
+{ "tag": "const", "name": "_IO_OCT", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-apple-darwin9.h:650:18", "type": { "tag": "__int128_t" }, "value": 32 },
145
+{ "tag": "const", "name": "_XLOCALE_H", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-apple-darwin9.h:651:18", "type": { "tag": "__int128_t" }, "value": 1 },
146
+{ "tag": "const", "name": "_IO_HEX", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-apple-darwin9.h:652:18", "type": { "tag": "__int128_t" }, "value": 64 },
147
+{ "tag": "const", "name": "_IO_SHOWBASE", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-apple-darwin9.h:653:18", "type": { "tag": "__int128_t" }, "value": 128 },
148
+{ "tag": "const", "name": "_IO_SHOWPOINT", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-apple-darwin9.h:654:18", "type": { "tag": "__int128_t" }, "value": 256 },
149
+{ "tag": "const", "name": "_IO_UPPERCASE", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-apple-darwin9.h:655:18", "type": { "tag": "__int128_t" }, "value": 512 },
150
+{ "tag": "const", "name": "_IO_SHOWPOS", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-apple-darwin9.h:656:18", "type": { "tag": "__int128_t" }, "value": 1024 },
151
+{ "tag": "const", "name": "_IO_SCIENTIFIC", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-apple-darwin9.h:657:18", "type": { "tag": "__int128_t" }, "value": 2048 },
152
+{ "tag": "const", "name": "_IO_FIXED", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-apple-darwin9.h:658:18", "type": { "tag": "__int128_t" }, "value": 4096 },
153
+{ "tag": "const", "name": "__BIG_ENDIAN", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-apple-darwin9.h:659:18", "type": { "tag": "__int128_t" }, "value": 4321 },
154
+{ "tag": "const", "name": "_IO_UNITBUF", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-apple-darwin9.h:660:18", "type": { "tag": "__int128_t" }, "value": 8192 },
155
+{ "tag": "const", "name": "__PDP_ENDIAN", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-apple-darwin9.h:661:18", "type": { "tag": "__int128_t" }, "value": 3412 },
156
+{ "tag": "const", "name": "_IO_DONT_CLOSE", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-apple-darwin9.h:662:18", "type": { "tag": "__int128_t" }, "value": 32768 },
157
+{ "tag": "const", "name": "_IO_STDIO", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-apple-darwin9.h:663:18", "type": { "tag": "__int128_t" }, "value": 16384 },
158
+{ "tag": "const", "name": "_IO_BOOLALPHA", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-apple-darwin9.h:664:18", "type": { "tag": "__int128_t" }, "value": 65536 },
159
+{ "tag": "const", "name": "__W_CONTINUED", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-apple-darwin9.h:665:18", "type": { "tag": "__int128_t" }, "value": 65535 },
160
+{ "tag": "const", "name": "_SYS_TYPES_H", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-apple-darwin9.h:666:18", "type": { "tag": "__int128_t" }, "value": 1 },
161
+{ "tag": "const", "name": "__WCOREFLAG", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-apple-darwin9.h:667:18", "type": { "tag": "__int128_t" }, "value": 128 },
162
+{ "tag": "const", "name": "_STRING_H", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-apple-darwin9.h:668:18", "type": { "tag": "__int128_t" }, "value": 1 },
163
+{ "tag": "const", "name": "_ENDIAN_H", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-apple-darwin9.h:669:18", "type": { "tag": "__int128_t" }, "value": 1 },
164
+{ "tag": "const", "name": "__LITTLE_ENDIAN", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-apple-darwin9.h:670:18", "type": { "tag": "__int128_t" }, "value": 1234 },
165
+{ "tag": "const", "name": "__WALL", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-apple-darwin9.h:671:18", "type": { "tag": "__int128_t" }, "value": 1073741824 },
166
+{ "tag": "const", "name": "_SYS_CDEFS_H", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-apple-darwin9.h:672:18", "type": { "tag": "__int128_t" }, "value": 1 },
167
+{ "tag": "const", "name": "__WCLONE", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-apple-darwin9.h:673:18", "type": { "tag": "__int128_t" }, "value": 2147483648 },
168
+{ "tag": "const", "name": "_ALLOCA_H", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-apple-darwin9.h:674:18", "type": { "tag": "__int128_t" }, "value": 1 },
169
+{ "tag": "const", "name": "__have_pthread_attr_t", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-apple-darwin9.h:675:18", "type": { "tag": "__int128_t" }, "value": 1 },
170
+{ "tag": "const", "name": "__PTHREAD_MUTEX_HAVE_PREV", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-apple-darwin9.h:676:18", "type": { "tag": "__int128_t" }, "value": 1 }
171
+]
0 172
new file mode 100755
... ...
@@ -0,0 +1,515 @@
1
+[
2
+{ "tag": "typedef", "name": "size_t", "location": "/usr/include/stddef.h:213:23", "type": { "tag": ":unsigned-long" } },
3
+{ "tag": "typedef", "name": "wchar_t", "location": "/usr/include/stddef.h:325:24", "type": { "tag": ":int" } },
4
+{ "tag": "typedef", "name": "__u_char", "location": "/usr/include/bits/types.h:30:23", "type": { "tag": ":unsigned-char" } },
5
+{ "tag": "typedef", "name": "__u_short", "location": "/usr/include/bits/types.h:31:28", "type": { "tag": ":unsigned-short" } },
6
+{ "tag": "typedef", "name": "__u_int", "location": "/usr/include/bits/types.h:32:22", "type": { "tag": ":unsigned-int" } },
7
+{ "tag": "typedef", "name": "__u_long", "location": "/usr/include/bits/types.h:33:27", "type": { "tag": ":unsigned-long" } },
8
+{ "tag": "typedef", "name": "__int8_t", "location": "/usr/include/bits/types.h:36:21", "type": { "tag": ":signed-char" } },
9
+{ "tag": "typedef", "name": "__uint8_t", "location": "/usr/include/bits/types.h:37:23", "type": { "tag": ":unsigned-char" } },
10
+{ "tag": "typedef", "name": "__int16_t", "location": "/usr/include/bits/types.h:38:26", "type": { "tag": ":short" } },
11
+{ "tag": "typedef", "name": "__uint16_t", "location": "/usr/include/bits/types.h:39:28", "type": { "tag": ":unsigned-short" } },
12
+{ "tag": "typedef", "name": "__int32_t", "location": "/usr/include/bits/types.h:40:20", "type": { "tag": ":int" } },
13
+{ "tag": "typedef", "name": "__uint32_t", "location": "/usr/include/bits/types.h:41:22", "type": { "tag": ":unsigned-int" } },
14
+{ "tag": "typedef", "name": "__int64_t", "location": "/usr/include/bits/types.h:43:25", "type": { "tag": ":long" } },
15
+{ "tag": "typedef", "name": "__uint64_t", "location": "/usr/include/bits/types.h:44:27", "type": { "tag": ":unsigned-long" } },
16
+{ "tag": "typedef", "name": "__quad_t", "location": "/usr/include/bits/types.h:52:18", "type": { "tag": ":long" } },
17
+{ "tag": "typedef", "name": "__u_quad_t", "location": "/usr/include/bits/types.h:53:27", "type": { "tag": ":unsigned-long" } },
18
+{ "tag": "typedef", "name": "__dev_t", "location": "/usr/include/bits/types.h:133:25", "type": { "tag": ":unsigned-long" } },
19
+{ "tag": "typedef", "name": "__uid_t", "location": "/usr/include/bits/types.h:134:25", "type": { "tag": ":unsigned-int" } },
20
+{ "tag": "typedef", "name": "__gid_t", "location": "/usr/include/bits/types.h:135:25", "type": { "tag": ":unsigned-int" } },
21
+{ "tag": "typedef", "name": "__ino_t", "location": "/usr/include/bits/types.h:136:25", "type": { "tag": ":unsigned-long" } },
22
+{ "tag": "typedef", "name": "__ino64_t", "location": "/usr/include/bits/types.h:137:27", "type": { "tag": ":unsigned-long" } },
23
+{ "tag": "typedef", "name": "__mode_t", "location": "/usr/include/bits/types.h:138:26", "type": { "tag": ":unsigned-int" } },
24
+{ "tag": "typedef", "name": "__nlink_t", "location": "/usr/include/bits/types.h:139:27", "type": { "tag": ":unsigned-long" } },
25
+{ "tag": "typedef", "name": "__off_t", "location": "/usr/include/bits/types.h:140:25", "type": { "tag": ":long" } },
26
+{ "tag": "typedef", "name": "__off64_t", "location": "/usr/include/bits/types.h:141:27", "type": { "tag": ":long" } },
27
+{ "tag": "typedef", "name": "__pid_t", "location": "/usr/include/bits/types.h:142:25", "type": { "tag": ":int" } },
28
+{ "tag": "typedef", "name": "__fsid_t", "location": "/usr/include/bits/types.h:143:26", "type": { "tag": "struct", "name": "", "id": 1, "location": "/usr/include/bits/types.h:143:12 <Spelling=/usr/include/bits/typesizes.h:72:24>", "bit-size": 64, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "__val", "bit-offset": 0, "bit-size": 64, "bit-alignment": 32, "type": { "tag": ":array", "type": { "tag": ":int" }, "size": 2 } }] } },
29
+{ "tag": "typedef", "name": "__clock_t", "location": "/usr/include/bits/types.h:144:27", "type": { "tag": ":long" } },
30
+{ "tag": "typedef", "name": "__rlim_t", "location": "/usr/include/bits/types.h:145:26", "type": { "tag": ":unsigned-long" } },
31
+{ "tag": "typedef", "name": "__rlim64_t", "location": "/usr/include/bits/types.h:146:28", "type": { "tag": ":unsigned-long" } },
32
+{ "tag": "typedef", "name": "__id_t", "location": "/usr/include/bits/types.h:147:24", "type": { "tag": ":unsigned-int" } },
33
+{ "tag": "typedef", "name": "__time_t", "location": "/usr/include/bits/types.h:148:26", "type": { "tag": ":long" } },
34
+{ "tag": "typedef", "name": "__useconds_t", "location": "/usr/include/bits/types.h:149:30", "type": { "tag": ":unsigned-int" } },
35
+{ "tag": "typedef", "name": "__suseconds_t", "location": "/usr/include/bits/types.h:150:31", "type": { "tag": ":long" } },
36
+{ "tag": "typedef", "name": "__daddr_t", "location": "/usr/include/bits/types.h:152:27", "type": { "tag": ":int" } },
37
+{ "tag": "typedef", "name": "__key_t", "location": "/usr/include/bits/types.h:153:25", "type": { "tag": ":int" } },
38
+{ "tag": "typedef", "name": "__clockid_t", "location": "/usr/include/bits/types.h:156:29", "type": { "tag": ":int" } },
39
+{ "tag": "typedef", "name": "__timer_t", "location": "/usr/include/bits/types.h:159:27", "type": { "tag": ":pointer", "type": { "tag": ":void" } } },
40
+{ "tag": "typedef", "name": "__blksize_t", "location": "/usr/include/bits/types.h:162:29", "type": { "tag": ":long" } },
41
+{ "tag": "typedef", "name": "__blkcnt_t", "location": "/usr/include/bits/types.h:167:28", "type": { "tag": ":long" } },
42
+{ "tag": "typedef", "name": "__blkcnt64_t", "location": "/usr/include/bits/types.h:168:30", "type": { "tag": ":long" } },
43
+{ "tag": "typedef", "name": "__fsblkcnt_t", "location": "/usr/include/bits/types.h:171:30", "type": { "tag": ":unsigned-long" } },
44
+{ "tag": "typedef", "name": "__fsblkcnt64_t", "location": "/usr/include/bits/types.h:172:32", "type": { "tag": ":unsigned-long" } },
45
+{ "tag": "typedef", "name": "__fsfilcnt_t", "location": "/usr/include/bits/types.h:175:30", "type": { "tag": ":unsigned-long" } },
46
+{ "tag": "typedef", "name": "__fsfilcnt64_t", "location": "/usr/include/bits/types.h:176:32", "type": { "tag": ":unsigned-long" } },
47
+{ "tag": "typedef", "name": "__fsword_t", "location": "/usr/include/bits/types.h:179:28", "type": { "tag": ":long" } },
48
+{ "tag": "typedef", "name": "__ssize_t", "location": "/usr/include/bits/types.h:181:27", "type": { "tag": ":long" } },
49
+{ "tag": "typedef", "name": "__syscall_slong_t", "location": "/usr/include/bits/types.h:184:33", "type": { "tag": ":long" } },
50
+{ "tag": "typedef", "name": "__syscall_ulong_t", "location": "/usr/include/bits/types.h:186:33", "type": { "tag": ":unsigned-long" } },
51
+{ "tag": "typedef", "name": "__loff_t", "location": "/usr/include/bits/types.h:190:19", "type": { "tag": "__off64_t" } },
52
+{ "tag": "typedef", "name": "__qaddr_t", "location": "/usr/include/bits/types.h:191:19", "type": { "tag": ":pointer", "type": { "tag": "__quad_t" } } },
53
+{ "tag": "typedef", "name": "__caddr_t", "location": "/usr/include/bits/types.h:192:15", "type": { "tag": ":pointer", "type": { "tag": ":char" } } },
54
+{ "tag": "typedef", "name": "__intptr_t", "location": "/usr/include/bits/types.h:195:25", "type": { "tag": ":long" } },
55
+{ "tag": "typedef", "name": "__socklen_t", "location": "/usr/include/bits/types.h:198:23", "type": { "tag": ":unsigned-int" } },
56
+{ "tag": "union", "name": "wait", "id": 0, "location": "/usr/include/bits/waitstatus.h:66:7", "bit-size": 32, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "w_status", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "__wait_terminated", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "struct", "name": "", "id": 2, "location": "/usr/include/bits/waitstatus.h:69:5", "bit-size": 32, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "__w_termsig", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":bitfield", "width": 7, "type": { "tag": ":unsigned-int" } } }, { "tag": "field", "name": "__w_coredump", "bit-offset": 7, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":bitfield", "width": 1, "type": { "tag": ":unsigned-int" } } }, { "tag": "field", "name": "__w_retcode", "bit-offset": 8, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":bitfield", "width": 8, "type": { "tag": ":unsigned-int" } } }, { "tag": "field", "name": "", "bit-offset": 16, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":bitfield", "width": 16, "type": { "tag": ":unsigned-int" } } }] } }, { "tag": "field", "name": "__wait_stopped", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "struct", "name": "", "id": 3, "location": "/usr/include/bits/waitstatus.h:84:5", "bit-size": 32, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "__w_stopval", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":bitfield", "width": 8, "type": { "tag": ":unsigned-int" } } }, { "tag": "field", "name": "__w_stopsig", "bit-offset": 8, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":bitfield", "width": 8, "type": { "tag": ":unsigned-int" } } }, { "tag": "field", "name": "", "bit-offset": 16, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":bitfield", "width": 16, "type": { "tag": ":unsigned-int" } } }] } }] },
57
+{ "tag": "typedef", "name": "__WAIT_STATUS", "location": "/usr/include/stdlib.h:71:5", "type": { "tag": "union", "name": "", "id": 4, "location": "/usr/include/stdlib.h:67:9", "bit-size": 64, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "__uptr", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":union", "name": "wait", "id": 0 } } }, { "tag": "field", "name": "__iptr", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":int" } } }] } },
58
+{ "tag": "typedef", "name": "div_t", "location": "/usr/include/stdlib.h:101:5", "type": { "tag": "struct", "name": "", "id": 5, "location": "/usr/include/stdlib.h:97:9", "bit-size": 64, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "quot", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "rem", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }] } },
59
+{ "tag": "typedef", "name": "ldiv_t", "location": "/usr/include/stdlib.h:109:5", "type": { "tag": "struct", "name": "", "id": 6, "location": "/usr/include/stdlib.h:105:9", "bit-size": 128, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "quot", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":long" } }, { "tag": "field", "name": "rem", "bit-offset": 64, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":long" } }] } },
60
+{ "tag": "typedef", "name": "lldiv_t", "location": "/usr/include/stdlib.h:121:5", "type": { "tag": "struct", "name": "", "id": 7, "location": "/usr/include/stdlib.h:117:23", "bit-size": 128, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "quot", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":long-long" } }, { "tag": "field", "name": "rem", "bit-offset": 64, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":long-long" } }] } },
61
+{ "tag": "function", "name": "__ctype_get_mb_cur_max", "location": "/usr/include/stdlib.h:139:15", "variadic": false, "parameters": [], "return-type": { "tag": "size_t" } },
62
+{ "tag": "function", "name": "atof", "location": "/usr/include/stdlib.h:144:15", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__nptr", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":double" } },
63
+{ "tag": "function", "name": "atoi", "location": "/usr/include/stdlib.h:147:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__nptr", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":int" } },
64
+{ "tag": "function", "name": "atol", "location": "/usr/include/stdlib.h:150:17", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__nptr", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":long" } },
65
+{ "tag": "function", "name": "atoll", "location": "/usr/include/stdlib.h:157:36", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__nptr", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":long-long" } },
66
+{ "tag": "function", "name": "strtod", "location": "/usr/include/stdlib.h:164:15", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__nptr", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__endptr", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char" } } } }], "return-type": { "tag": ":double" } },
67
+{ "tag": "function", "name": "strtof", "location": "/usr/include/stdlib.h:172:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__nptr", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__endptr", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char" } } } }], "return-type": { "tag": ":float" } },
68
+{ "tag": "function", "name": "strtold", "location": "/usr/include/stdlib.h:175:20", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__nptr", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__endptr", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char" } } } }], "return-type": { "tag": ":long-double" } },
69
+{ "tag": "function", "name": "strtol", "location": "/usr/include/stdlib.h:183:17", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__nptr", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__endptr", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char" } } } }, { "tag": "parameter", "name": "__base", "type": { "tag": ":int" } }], "return-type": { "tag": ":long" } },
70
+{ "tag": "function", "name": "strtoul", "location": "/usr/include/stdlib.h:187:26", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__nptr", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__endptr", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char" } } } }, { "tag": "parameter", "name": "__base", "type": { "tag": ":int" } }], "return-type": { "tag": ":unsigned-long" } },
71
+{ "tag": "function", "name": "strtoq", "location": "/usr/include/stdlib.h:195:22", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__nptr", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__endptr", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char" } } } }, { "tag": "parameter", "name": "__base", "type": { "tag": ":int" } }], "return-type": { "tag": ":long-long" } },
72
+{ "tag": "function", "name": "strtouq", "location": "/usr/include/stdlib.h:200:31", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__nptr", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__endptr", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char" } } } }, { "tag": "parameter", "name": "__base", "type": { "tag": ":int" } }], "return-type": { "tag": ":unsigned-long-long" } },
73
+{ "tag": "function", "name": "strtoll", "location": "/usr/include/stdlib.h:209:22", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__nptr", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__endptr", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char" } } } }, { "tag": "parameter", "name": "__base", "type": { "tag": ":int" } }], "return-type": { "tag": ":long-long" } },
74
+{ "tag": "function", "name": "strtoull", "location": "/usr/include/stdlib.h:214:31", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__nptr", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__endptr", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char" } } } }, { "tag": "parameter", "name": "__base", "type": { "tag": ":int" } }], "return-type": { "tag": ":unsigned-long-long" } },
75
+{ "tag": "function", "name": "l64a", "location": "/usr/include/stdlib.h:305:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__n", "type": { "tag": ":long" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
76
+{ "tag": "function", "name": "a64l", "location": "/usr/include/stdlib.h:308:17", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":long" } },
77
+{ "tag": "typedef", "name": "u_char", "location": "/usr/include/sys/types.h:33:18", "type": { "tag": "__u_char" } },
78
+{ "tag": "typedef", "name": "u_short", "location": "/usr/include/sys/types.h:34:19", "type": { "tag": "__u_short" } },
79
+{ "tag": "typedef", "name": "u_int", "location": "/usr/include/sys/types.h:35:17", "type": { "tag": "__u_int" } },
80
+{ "tag": "typedef", "name": "u_long", "location": "/usr/include/sys/types.h:36:18", "type": { "tag": "__u_long" } },
81
+{ "tag": "typedef", "name": "quad_t", "location": "/usr/include/sys/types.h:37:18", "type": { "tag": "__quad_t" } },
82
+{ "tag": "typedef", "name": "u_quad_t", "location": "/usr/include/sys/types.h:38:20", "type": { "tag": "__u_quad_t" } },
83
+{ "tag": "typedef", "name": "fsid_t", "location": "/usr/include/sys/types.h:39:18", "type": { "tag": "__fsid_t" } },
84
+{ "tag": "typedef", "name": "loff_t", "location": "/usr/include/sys/types.h:44:18", "type": { "tag": "__loff_t" } },
85
+{ "tag": "typedef", "name": "ino_t", "location": "/usr/include/sys/types.h:48:17", "type": { "tag": "__ino_t" } },
86
+{ "tag": "typedef", "name": "dev_t", "location": "/usr/include/sys/types.h:60:17", "type": { "tag": "__dev_t" } },
87
+{ "tag": "typedef", "name": "gid_t", "location": "/usr/include/sys/types.h:65:17", "type": { "tag": "__gid_t" } },
88
+{ "tag": "typedef", "name": "mode_t", "location": "/usr/include/sys/types.h:70:18", "type": { "tag": "__mode_t" } },
89
+{ "tag": "typedef", "name": "nlink_t", "location": "/usr/include/sys/types.h:75:19", "type": { "tag": "__nlink_t" } },
90
+{ "tag": "typedef", "name": "uid_t", "location": "/usr/include/sys/types.h:80:17", "type": { "tag": "__uid_t" } },
91
+{ "tag": "typedef", "name": "off_t", "location": "/usr/include/sys/types.h:86:17", "type": { "tag": "__off_t" } },
92
+{ "tag": "typedef", "name": "pid_t", "location": "/usr/include/sys/types.h:98:17", "type": { "tag": "__pid_t" } },
93
+{ "tag": "typedef", "name": "id_t", "location": "/usr/include/sys/types.h:104:16", "type": { "tag": "__id_t" } },
94
+{ "tag": "typedef", "name": "ssize_t", "location": "/usr/include/sys/types.h:109:19", "type": { "tag": "__ssize_t" } },
95
+{ "tag": "typedef", "name": "daddr_t", "location": "/usr/include/sys/types.h:115:19", "type": { "tag": "__daddr_t" } },
96
+{ "tag": "typedef", "name": "caddr_t", "location": "/usr/include/sys/types.h:116:19", "type": { "tag": "__caddr_t" } },
97
+{ "tag": "typedef", "name": "key_t", "location": "/usr/include/sys/types.h:122:17", "type": { "tag": "__key_t" } },
98
+{ "tag": "typedef", "name": "clock_t", "location": "/usr/include/time.h:59:19", "type": { "tag": "__clock_t" } },
99
+{ "tag": "typedef", "name": "time_t", "location": "/usr/include/time.h:75:18", "type": { "tag": "__time_t" } },
100
+{ "tag": "typedef", "name": "clockid_t", "location": "/usr/include/time.h:91:21", "type": { "tag": "__clockid_t" } },
101
+{ "tag": "typedef", "name": "timer_t", "location": "/usr/include/time.h:103:19", "type": { "tag": "__timer_t" } },
102
+{ "tag": "typedef", "name": "ulong", "location": "/usr/include/sys/types.h:150:27", "type": { "tag": ":unsigned-long" } },
103
+{ "tag": "typedef", "name": "ushort", "location": "/usr/include/sys/types.h:151:28", "type": { "tag": ":unsigned-short" } },
104
+{ "tag": "typedef", "name": "uint", "location": "/usr/include/sys/types.h:152:22", "type": { "tag": ":unsigned-int" } },
105
+{ "tag": "typedef", "name": "int8_t", "location": "/usr/include/sys/types.h:194:1 <Spelling=<scratch space>:3:1>", "type": { "tag": ":int" } },
106
+{ "tag": "typedef", "name": "int16_t", "location": "/usr/include/sys/types.h:195:1 <Spelling=<scratch space>:3:1>", "type": { "tag": ":int" } },
107
+{ "tag": "typedef", "name": "int32_t", "location": "/usr/include/sys/types.h:196:1 <Spelling=<scratch space>:3:1>", "type": { "tag": ":int" } },
108
+{ "tag": "typedef", "name": "int64_t", "location": "/usr/include/sys/types.h:197:1 <Spelling=<scratch space>:3:1>", "type": { "tag": ":int" } },
109
+{ "tag": "typedef", "name": "u_int8_t", "location": "/usr/include/sys/types.h:200:1 <Spelling=<scratch space>:3:1>", "type": { "tag": ":unsigned-int" } },
110
+{ "tag": "typedef", "name": "u_int16_t", "location": "/usr/include/sys/types.h:201:1 <Spelling=<scratch space>:3:1>", "type": { "tag": ":unsigned-int" } },
111
+{ "tag": "typedef", "name": "u_int32_t", "location": "/usr/include/sys/types.h:202:1 <Spelling=<scratch space>:3:1>", "type": { "tag": ":unsigned-int" } },
112
+{ "tag": "typedef", "name": "u_int64_t", "location": "/usr/include/sys/types.h:203:1 <Spelling=<scratch space>:3:1>", "type": { "tag": ":unsigned-int" } },
113
+{ "tag": "typedef", "name": "register_t", "location": "/usr/include/sys/types.h:205:13", "type": { "tag": ":int" } },
114
+{ "tag": "typedef", "name": "__sig_atomic_t", "location": "/usr/include/bits/sigset.h:23:13", "type": { "tag": ":int" } },
115
+{ "tag": "typedef", "name": "__sigset_t", "location": "/usr/include/bits/sigset.h:31:5", "type": { "tag": "struct", "name": "", "id": 8, "location": "/usr/include/bits/sigset.h:28:9", "bit-size": 1024, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "__val", "bit-offset": 0, "bit-size": 1024, "bit-alignment": 64, "type": { "tag": ":array", "type": { "tag": ":unsigned-long" }, "size": 16 } }] } },
116
+{ "tag": "typedef", "name": "sigset_t", "location": "/usr/include/sys/select.h:37:20", "type": { "tag": "__sigset_t" } },
117
+{ "tag": "struct", "name": "timespec", "id": 0, "location": "/usr/include/time.h:120:8", "bit-size": 128, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "tv_sec", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": "__time_t" } }, { "tag": "field", "name": "tv_nsec", "bit-offset": 64, "bit-size": 64, "bit-alignment": 64, "type": { "tag": "__syscall_slong_t" } }] },
118
+{ "tag": "struct", "name": "timeval", "id": 0, "location": "/usr/include/bits/time.h:30:8", "bit-size": 128, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "tv_sec", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": "__time_t" } }, { "tag": "field", "name": "tv_usec", "bit-offset": 64, "bit-size": 64, "bit-alignment": 64, "type": { "tag": "__suseconds_t" } }] },
119
+{ "tag": "typedef", "name": "suseconds_t", "location": "/usr/include/sys/select.h:48:23", "type": { "tag": "__suseconds_t" } },
120
+{ "tag": "typedef", "name": "__fd_mask", "location": "/usr/include/sys/select.h:54:18", "type": { "tag": ":long" } },
121
+{ "tag": "typedef", "name": "fd_set", "location": "/usr/include/sys/select.h:75:5", "type": { "tag": "struct", "name": "", "id": 9, "location": "/usr/include/sys/select.h:64:9", "bit-size": 1024, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "__fds_bits", "bit-offset": 0, "bit-size": 1024, "bit-alignment": 64, "type": { "tag": ":array", "type": { "tag": "__fd_mask" }, "size": 16 } }] } },
122
+{ "tag": "typedef", "name": "fd_mask", "location": "/usr/include/sys/select.h:82:19", "type": { "tag": "__fd_mask" } },
123
+{ "tag": "function", "name": "select", "location": "/usr/include/sys/select.h:106:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__nfds", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__readfds", "type": { "tag": ":pointer", "type": { "tag": "fd_set" } } }, { "tag": "parameter", "name": "__writefds", "type": { "tag": ":pointer", "type": { "tag": "fd_set" } } }, { "tag": "parameter", "name": "__exceptfds", "type": { "tag": ":pointer", "type": { "tag": "fd_set" } } }, { "tag": "parameter", "name": "__timeout", "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "timeval", "id": 0 } } }], "return-type": { "tag": ":int" } },
124
+{ "tag": "function", "name": "pselect", "location": "/usr/include/sys/select.h:118:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__nfds", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__readfds", "type": { "tag": ":pointer", "type": { "tag": "fd_set" } } }, { "tag": "parameter", "name": "__writefds", "type": { "tag": ":pointer", "type": { "tag": "fd_set" } } }, { "tag": "parameter", "name": "__exceptfds", "type": { "tag": ":pointer", "type": { "tag": "fd_set" } } }, { "tag": "parameter", "name": "__timeout", "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "timespec", "id": 0 } } }, { "tag": "parameter", "name": "__sigmask", "type": { "tag": ":pointer", "type": { "tag": "__sigset_t" } } }], "return-type": { "tag": ":int" } },
125
+{ "tag": "function", "name": "gnu_dev_major", "location": "/usr/include/sys/sysmacros.h:32:21", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__dev", "type": { "tag": ":unsigned-long-long" } }], "return-type": { "tag": ":unsigned-int" } },
126
+{ "tag": "function", "name": "gnu_dev_minor", "location": "/usr/include/sys/sysmacros.h:35:21", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__dev", "type": { "tag": ":unsigned-long-long" } }], "return-type": { "tag": ":unsigned-int" } },
127
+{ "tag": "function", "name": "gnu_dev_makedev", "location": "/usr/include/sys/sysmacros.h:38:31", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__major", "type": { "tag": ":unsigned-int" } }, { "tag": "parameter", "name": "__minor", "type": { "tag": ":unsigned-int" } }], "return-type": { "tag": ":unsigned-long-long" } },
128
+{ "tag": "typedef", "name": "blksize_t", "location": "/usr/include/sys/types.h:228:21", "type": { "tag": "__blksize_t" } },
129
+{ "tag": "typedef", "name": "blkcnt_t", "location": "/usr/include/sys/types.h:235:20", "type": { "tag": "__blkcnt_t" } },
130
+{ "tag": "typedef", "name": "fsblkcnt_t", "location": "/usr/include/sys/types.h:239:22", "type": { "tag": "__fsblkcnt_t" } },
131
+{ "tag": "typedef", "name": "fsfilcnt_t", "location": "/usr/include/sys/types.h:243:22", "type": { "tag": "__fsfilcnt_t" } },
132
+{ "tag": "typedef", "name": "pthread_t", "location": "/usr/include/bits/pthreadtypes.h:60:27", "type": { "tag": ":unsigned-long" } },
133
+{ "tag": "union", "name": "pthread_attr_t", "id": 0, "location": "/usr/include/bits/pthreadtypes.h:63:7", "bit-size": 448, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "__size", "bit-offset": 0, "bit-size": 448, "bit-alignment": 8, "type": { "tag": ":array", "type": { "tag": ":char" }, "size": 56 } }, { "tag": "field", "name": "__align", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":long" } }] },
134
+{ "tag": "typedef", "name": "pthread_attr_t", "location": "/usr/include/bits/pthreadtypes.h:69:30", "type": { "tag": ":union", "name": "pthread_attr_t", "id": 0 } },
135
+{ "tag": "struct", "name": "__pthread_internal_list", "id": 0, "location": "/usr/include/bits/pthreadtypes.h:75:16", "bit-size": 128, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "__prev", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "__pthread_internal_list", "id": 0 } } }, { "tag": "field", "name": "__next", "bit-offset": 64, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "__pthread_internal_list", "id": 0 } } }] },
136
+{ "tag": "typedef", "name": "__pthread_list_t", "location": "/usr/include/bits/pthreadtypes.h:79:3", "type": { "tag": ":struct", "name": "__pthread_internal_list", "id": 0 } },
137
+{ "tag": "typedef", "name": "pthread_mutex_t", "location": "/usr/include/bits/pthreadtypes.h:118:3", "type": { "tag": "union", "name": "", "id": 10, "location": "/usr/include/bits/pthreadtypes.h:90:9", "bit-size": 320, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "__data", "bit-offset": 0, "bit-size": 320, "bit-alignment": 64, "type": { "tag": "struct", "name": "__pthread_mutex_s", "id": 0, "location": "/usr/include/bits/pthreadtypes.h:92:10", "bit-size": 320, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "__lock", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "__count", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":unsigned-int" } }, { "tag": "field", "name": "__owner", "bit-offset": 64, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "__nusers", "bit-offset": 96, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":unsigned-int" } }, { "tag": "field", "name": "__kind", "bit-offset": 128, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "__spins", "bit-offset": 160, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "__list", "bit-offset": 192, "bit-size": 128, "bit-alignment": 64, "type": { "tag": "__pthread_list_t" } }] } }, { "tag": "field", "name": "__size", "bit-offset": 0, "bit-size": 320, "bit-alignment": 8, "type": { "tag": ":array", "type": { "tag": ":char" }, "size": 40 } }, { "tag": "field", "name": "__align", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":long" } }] } },
138
+{ "tag": "typedef", "name": "pthread_mutexattr_t", "location": "/usr/include/bits/pthreadtypes.h:124:3", "type": { "tag": "union", "name": "", "id": 11, "location": "/usr/include/bits/pthreadtypes.h:120:9", "bit-size": 32, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "__size", "bit-offset": 0, "bit-size": 32, "bit-alignment": 8, "type": { "tag": ":array", "type": { "tag": ":char" }, "size": 4 } }, { "tag": "field", "name": "__align", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }] } },
139
+{ "tag": "typedef", "name": "pthread_cond_t", "location": "/usr/include/bits/pthreadtypes.h:144:3", "type": { "tag": "union", "name": "", "id": 12, "location": "/usr/include/bits/pthreadtypes.h:129:9", "bit-size": 384, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "__data", "bit-offset": 0, "bit-size": 384, "bit-alignment": 64, "type": { "tag": "struct", "name": "", "id": 13, "location": "/usr/include/bits/pthreadtypes.h:131:3", "bit-size": 384, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "__lock", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "__futex", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":unsigned-int" } }, { "tag": "field", "name": "__total_seq", "bit-offset": 64, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":unsigned-long-long" } }, { "tag": "field", "name": "__wakeup_seq", "bit-offset": 128, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":unsigned-long-long" } }, { "tag": "field", "name": "__woken_seq", "bit-offset": 192, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":unsigned-long-long" } }, { "tag": "field", "name": "__mutex", "bit-offset": 256, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "field", "name": "__nwaiters", "bit-offset": 320, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":unsigned-int" } }, { "tag": "field", "name": "__broadcast_seq", "bit-offset": 352, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":unsigned-int" } }] } }, { "tag": "field", "name": "__size", "bit-offset": 0, "bit-size": 384, "bit-alignment": 8, "type": { "tag": ":array", "type": { "tag": ":char" }, "size": 48 } }, { "tag": "field", "name": "__align", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":long-long" } }] } },
140
+{ "tag": "typedef", "name": "pthread_condattr_t", "location": "/usr/include/bits/pthreadtypes.h:150:3", "type": { "tag": "union", "name": "", "id": 14, "location": "/usr/include/bits/pthreadtypes.h:146:9", "bit-size": 32, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "__size", "bit-offset": 0, "bit-size": 32, "bit-alignment": 8, "type": { "tag": ":array", "type": { "tag": ":char" }, "size": 4 } }, { "tag": "field", "name": "__align", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }] } },
141
+{ "tag": "typedef", "name": "pthread_key_t", "location": "/usr/include/bits/pthreadtypes.h:154:22", "type": { "tag": ":unsigned-int" } },
142
+{ "tag": "typedef", "name": "pthread_once_t", "location": "/usr/include/bits/pthreadtypes.h:158:13", "type": { "tag": ":int" } },
143
+{ "tag": "typedef", "name": "pthread_rwlock_t", "location": "/usr/include/bits/pthreadtypes.h:204:3", "type": { "tag": "union", "name": "", "id": 15, "location": "/usr/include/bits/pthreadtypes.h:164:9", "bit-size": 448, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "__data", "bit-offset": 0, "bit-size": 448, "bit-alignment": 64, "type": { "tag": "struct", "name": "", "id": 16, "location": "/usr/include/bits/pthreadtypes.h:167:3", "bit-size": 448, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "__lock", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "__nr_readers", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":unsigned-int" } }, { "tag": "field", "name": "__readers_wakeup", "bit-offset": 64, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":unsigned-int" } }, { "tag": "field", "name": "__writer_wakeup", "bit-offset": 96, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":unsigned-int" } }, { "tag": "field", "name": "__nr_readers_queued", "bit-offset": 128, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":unsigned-int" } }, { "tag": "field", "name": "__nr_writers_queued", "bit-offset": 160, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":unsigned-int" } }, { "tag": "field", "name": "__writer", "bit-offset": 192, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "__shared", "bit-offset": 224, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "__pad1", "bit-offset": 256, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":unsigned-long" } }, { "tag": "field", "name": "__pad2", "bit-offset": 320, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":unsigned-long" } }, { "tag": "field", "name": "__flags", "bit-offset": 384, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":unsigned-int" } }] } }, { "tag": "field", "name": "__size", "bit-offset": 0, "bit-size": 448, "bit-alignment": 8, "type": { "tag": ":array", "type": { "tag": ":char" }, "size": 56 } }, { "tag": "field", "name": "__align", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":long" } }] } },
144
+{ "tag": "typedef", "name": "pthread_rwlockattr_t", "location": "/usr/include/bits/pthreadtypes.h:210:3", "type": { "tag": "union", "name": "", "id": 17, "location": "/usr/include/bits/pthreadtypes.h:206:9", "bit-size": 64, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "__size", "bit-offset": 0, "bit-size": 64, "bit-alignment": 8, "type": { "tag": ":array", "type": { "tag": ":char" }, "size": 8 } }, { "tag": "field", "name": "__align", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":long" } }] } },
145
+{ "tag": "typedef", "name": "pthread_spinlock_t", "location": "/usr/include/bits/pthreadtypes.h:216:22", "type": { "tag": ":int" } },
146
+{ "tag": "typedef", "name": "pthread_barrier_t", "location": "/usr/include/bits/pthreadtypes.h:225:3", "type": { "tag": "union", "name": "", "id": 18, "location": "/usr/include/bits/pthreadtypes.h:221:9", "bit-size": 256, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "__size", "bit-offset": 0, "bit-size": 256, "bit-alignment": 8, "type": { "tag": ":array", "type": { "tag": ":char" }, "size": 32 } }, { "tag": "field", "name": "__align", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":long" } }] } },
147
+{ "tag": "typedef", "name": "pthread_barrierattr_t", "location": "/usr/include/bits/pthreadtypes.h:231:3", "type": { "tag": "union", "name": "", "id": 19, "location": "/usr/include/bits/pthreadtypes.h:227:9", "bit-size": 32, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "__size", "bit-offset": 0, "bit-size": 32, "bit-alignment": 8, "type": { "tag": ":array", "type": { "tag": ":char" }, "size": 4 } }, { "tag": "field", "name": "__align", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }] } },
148
+{ "tag": "function", "name": "random", "location": "/usr/include/stdlib.h:321:17", "variadic": false, "parameters": [], "return-type": { "tag": ":long" } },
149
+{ "tag": "function", "name": "srandom", "location": "/usr/include/stdlib.h:324:13", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__seed", "type": { "tag": ":unsigned-int" } }], "return-type": { "tag": ":void" } },
150
+{ "tag": "function", "name": "initstate", "location": "/usr/include/stdlib.h:330:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__seed", "type": { "tag": ":unsigned-int" } }, { "tag": "parameter", "name": "__statebuf", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__statelen", "type": { "tag": "size_t" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
151
+{ "tag": "function", "name": "setstate", "location": "/usr/include/stdlib.h:335:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__statebuf", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
152
+{ "tag": "struct", "name": "random_data", "id": 0, "location": "/usr/include/stdlib.h:343:8", "bit-size": 384, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "fptr", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "int32_t" } } }, { "tag": "field", "name": "rptr", "bit-offset": 64, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "int32_t" } } }, { "tag": "field", "name": "state", "bit-offset": 128, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "int32_t" } } }, { "tag": "field", "name": "rand_type", "bit-offset": 192, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "rand_deg", "bit-offset": 224, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "rand_sep", "bit-offset": 256, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "end_ptr", "bit-offset": 320, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "int32_t" } } }] },
153
+{ "tag": "function", "name": "random_r", "location": "/usr/include/stdlib.h:354:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__buf", "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "random_data", "id": 0 } } }, { "tag": "parameter", "name": "__result", "type": { "tag": ":pointer", "type": { "tag": "int32_t" } } }], "return-type": { "tag": ":int" } },
154
+{ "tag": "function", "name": "srandom_r", "location": "/usr/include/stdlib.h:357:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__seed", "type": { "tag": ":unsigned-int" } }, { "tag": "parameter", "name": "__buf", "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "random_data", "id": 0 } } }], "return-type": { "tag": ":int" } },
155
+{ "tag": "function", "name": "initstate_r", "location": "/usr/include/stdlib.h:360:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__seed", "type": { "tag": ":unsigned-int" } }, { "tag": "parameter", "name": "__statebuf", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__statelen", "type": { "tag": "size_t" } }, { "tag": "parameter", "name": "__buf", "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "random_data", "id": 0 } } }], "return-type": { "tag": ":int" } },
156
+{ "tag": "function", "name": "setstate_r", "location": "/usr/include/stdlib.h:365:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__statebuf", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__buf", "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "random_data", "id": 0 } } }], "return-type": { "tag": ":int" } },
157
+{ "tag": "function", "name": "rand", "location": "/usr/include/stdlib.h:374:12", "variadic": false, "parameters": [], "return-type": { "tag": ":int" } },
158
+{ "tag": "function", "name": "srand", "location": "/usr/include/stdlib.h:376:13", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__seed", "type": { "tag": ":unsigned-int" } }], "return-type": { "tag": ":void" } },
159
+{ "tag": "function", "name": "rand_r", "location": "/usr/include/stdlib.h:381:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__seed", "type": { "tag": ":pointer", "type": { "tag": ":unsigned-int" } } }], "return-type": { "tag": ":int" } },
160
+{ "tag": "function", "name": "drand48", "location": "/usr/include/stdlib.h:389:15", "variadic": false, "parameters": [], "return-type": { "tag": ":double" } },
161
+{ "tag": "function", "name": "erand48", "location": "/usr/include/stdlib.h:390:15", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__xsubi", "type": { "tag": ":array", "type": { "tag": ":unsigned-short" }, "size": 3 } }], "return-type": { "tag": ":double" } },
162
+{ "tag": "function", "name": "lrand48", "location": "/usr/include/stdlib.h:393:17", "variadic": false, "parameters": [], "return-type": { "tag": ":long" } },
163
+{ "tag": "function", "name": "nrand48", "location": "/usr/include/stdlib.h:394:17", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__xsubi", "type": { "tag": ":array", "type": { "tag": ":unsigned-short" }, "size": 3 } }], "return-type": { "tag": ":long" } },
164
+{ "tag": "function", "name": "mrand48", "location": "/usr/include/stdlib.h:398:17", "variadic": false, "parameters": [], "return-type": { "tag": ":long" } },
165
+{ "tag": "function", "name": "jrand48", "location": "/usr/include/stdlib.h:399:17", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__xsubi", "type": { "tag": ":array", "type": { "tag": ":unsigned-short" }, "size": 3 } }], "return-type": { "tag": ":long" } },
166
+{ "tag": "function", "name": "srand48", "location": "/usr/include/stdlib.h:403:13", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__seedval", "type": { "tag": ":long" } }], "return-type": { "tag": ":void" } },
167
+{ "tag": "function", "name": "seed48", "location": "/usr/include/stdlib.h:404:28", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__seed16v", "type": { "tag": ":array", "type": { "tag": ":unsigned-short" }, "size": 3 } }], "return-type": { "tag": ":pointer", "type": { "tag": ":unsigned-short" } } },
168
+{ "tag": "function", "name": "lcong48", "location": "/usr/include/stdlib.h:406:13", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__param", "type": { "tag": ":array", "type": { "tag": ":unsigned-short" }, "size": 7 } }], "return-type": { "tag": ":void" } },
169
+{ "tag": "struct", "name": "drand48_data", "id": 0, "location": "/usr/include/stdlib.h:412:8", "bit-size": 192, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "__x", "bit-offset": 0, "bit-size": 48, "bit-alignment": 16, "type": { "tag": ":array", "type": { "tag": ":unsigned-short" }, "size": 3 } }, { "tag": "field", "name": "__old_x", "bit-offset": 48, "bit-size": 48, "bit-alignment": 16, "type": { "tag": ":array", "type": { "tag": ":unsigned-short" }, "size": 3 } }, { "tag": "field", "name": "__c", "bit-offset": 96, "bit-size": 16, "bit-alignment": 16, "type": { "tag": ":unsigned-short" } }, { "tag": "field", "name": "__init", "bit-offset": 112, "bit-size": 16, "bit-alignment": 16, "type": { "tag": ":unsigned-short" } }, { "tag": "field", "name": "__a", "bit-offset": 128, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":unsigned-long-long" } }] },
170
+{ "tag": "function", "name": "drand48_r", "location": "/usr/include/stdlib.h:422:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__buffer", "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "drand48_data", "id": 0 } } }, { "tag": "parameter", "name": "__result", "type": { "tag": ":pointer", "type": { "tag": ":double" } } }], "return-type": { "tag": ":int" } },
171
+{ "tag": "function", "name": "erand48_r", "location": "/usr/include/stdlib.h:424:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__xsubi", "type": { "tag": ":array", "type": { "tag": ":unsigned-short" }, "size": 3 } }, { "tag": "parameter", "name": "__buffer", "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "drand48_data", "id": 0 } } }, { "tag": "parameter", "name": "__result", "type": { "tag": ":pointer", "type": { "tag": ":double" } } }], "return-type": { "tag": ":int" } },
172
+{ "tag": "function", "name": "lrand48_r", "location": "/usr/include/stdlib.h:429:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__buffer", "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "drand48_data", "id": 0 } } }, { "tag": "parameter", "name": "__result", "type": { "tag": ":pointer", "type": { "tag": ":long" } } }], "return-type": { "tag": ":int" } },
173
+{ "tag": "function", "name": "nrand48_r", "location": "/usr/include/stdlib.h:432:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__xsubi", "type": { "tag": ":array", "type": { "tag": ":unsigned-short" }, "size": 3 } }, { "tag": "parameter", "name": "__buffer", "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "drand48_data", "id": 0 } } }, { "tag": "parameter", "name": "__result", "type": { "tag": ":pointer", "type": { "tag": ":long" } } }], "return-type": { "tag": ":int" } },
174
+{ "tag": "function", "name": "mrand48_r", "location": "/usr/include/stdlib.h:438:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__buffer", "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "drand48_data", "id": 0 } } }, { "tag": "parameter", "name": "__result", "type": { "tag": ":pointer", "type": { "tag": ":long" } } }], "return-type": { "tag": ":int" } },
175
+{ "tag": "function", "name": "jrand48_r", "location": "/usr/include/stdlib.h:441:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__xsubi", "type": { "tag": ":array", "type": { "tag": ":unsigned-short" }, "size": 3 } }, { "tag": "parameter", "name": "__buffer", "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "drand48_data", "id": 0 } } }, { "tag": "parameter", "name": "__result", "type": { "tag": ":pointer", "type": { "tag": ":long" } } }], "return-type": { "tag": ":int" } },
176
+{ "tag": "function", "name": "srand48_r", "location": "/usr/include/stdlib.h:447:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__seedval", "type": { "tag": ":long" } }, { "tag": "parameter", "name": "__buffer", "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "drand48_data", "id": 0 } } }], "return-type": { "tag": ":int" } },
177
+{ "tag": "function", "name": "seed48_r", "location": "/usr/include/stdlib.h:450:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__seed16v", "type": { "tag": ":array", "type": { "tag": ":unsigned-short" }, "size": 3 } }, { "tag": "parameter", "name": "__buffer", "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "drand48_data", "id": 0 } } }], "return-type": { "tag": ":int" } },
178
+{ "tag": "function", "name": "lcong48_r", "location": "/usr/include/stdlib.h:453:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__param", "type": { "tag": ":array", "type": { "tag": ":unsigned-short" }, "size": 7 } }, { "tag": "parameter", "name": "__buffer", "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "drand48_data", "id": 0 } } }], "return-type": { "tag": ":int" } },
179
+{ "tag": "function", "name": "malloc", "location": "/usr/include/stdlib.h:465:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__size", "type": { "tag": "size_t" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":void" } } },
180
+{ "tag": "function", "name": "calloc", "location": "/usr/include/stdlib.h:467:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__nmemb", "type": { "tag": "size_t" } }, { "tag": "parameter", "name": "__size", "type": { "tag": "size_t" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":void" } } },
181
+{ "tag": "function", "name": "realloc", "location": "/usr/include/stdlib.h:479:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__ptr", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__size", "type": { "tag": "size_t" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":void" } } },
182
+{ "tag": "function", "name": "free", "location": "/usr/include/stdlib.h:482:13", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__ptr", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": ":void" } },
183
+{ "tag": "function", "name": "cfree", "location": "/usr/include/stdlib.h:487:13", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__ptr", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": ":void" } },
184
+{ "tag": "function", "name": "alloca", "location": "/usr/include/alloca.h:32:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__size", "type": { "tag": "size_t" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":void" } } },
185
+{ "tag": "function", "name": "valloc", "location": "/usr/include/stdlib.h:497:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__size", "type": { "tag": "size_t" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":void" } } },
186
+{ "tag": "function", "name": "posix_memalign", "location": "/usr/include/stdlib.h:502:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__memptr", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":void" } } } }, { "tag": "parameter", "name": "__alignment", "type": { "tag": "size_t" } }, { "tag": "parameter", "name": "__size", "type": { "tag": "size_t" } }], "return-type": { "tag": ":int" } },
187
+{ "tag": "function", "name": "abort", "location": "/usr/include/stdlib.h:514:13", "variadic": false, "parameters": [], "return-type": { "tag": ":void" } },
188
+{ "tag": "function", "name": "atexit", "location": "/usr/include/stdlib.h:518:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__func", "type": { "tag": ":function-pointer" } }], "return-type": { "tag": ":int" } },
189
+{ "tag": "function", "name": "on_exit", "location": "/usr/include/stdlib.h:534:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__func", "type": { "tag": ":function-pointer" } }, { "tag": "parameter", "name": "__arg", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": ":int" } },
190
+{ "tag": "function", "name": "exit", "location": "/usr/include/stdlib.h:542:13", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__status", "type": { "tag": ":int" } }], "return-type": { "tag": ":void" } },
191
+{ "tag": "function", "name": "_Exit", "location": "/usr/include/stdlib.h:556:13", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__status", "type": { "tag": ":int" } }], "return-type": { "tag": ":void" } },
192
+{ "tag": "function", "name": "getenv", "location": "/usr/include/stdlib.h:563:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__name", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
193
+{ "tag": "function", "name": "putenv", "location": "/usr/include/stdlib.h:577:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__string", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":int" } },
194
+{ "tag": "function", "name": "setenv", "location": "/usr/include/stdlib.h:583:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__name", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__value", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__replace", "type": { "tag": ":int" } }], "return-type": { "tag": ":int" } },
195
+{ "tag": "function", "name": "unsetenv", "location": "/usr/include/stdlib.h:587:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__name", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":int" } },
196
+{ "tag": "function", "name": "clearenv", "location": "/usr/include/stdlib.h:594:12", "variadic": false, "parameters": [], "return-type": { "tag": ":int" } },
197
+{ "tag": "function", "name": "mktemp", "location": "/usr/include/stdlib.h:605:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__template", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
198
+{ "tag": "function", "name": "mkstemp", "location": "/usr/include/stdlib.h:619:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__template", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":int" } },
199
+{ "tag": "function", "name": "mkstemps", "location": "/usr/include/stdlib.h:641:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__template", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__suffixlen", "type": { "tag": ":int" } }], "return-type": { "tag": ":int" } },
200
+{ "tag": "function", "name": "mkdtemp", "location": "/usr/include/stdlib.h:662:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__template", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
201
+{ "tag": "function", "name": "system", "location": "/usr/include/stdlib.h:716:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__command", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":int" } },
202
+{ "tag": "function", "name": "realpath", "location": "/usr/include/stdlib.h:733:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__name", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__resolved", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
203
+{ "tag": "typedef", "name": "__compar_fn_t", "location": "/usr/include/stdlib.h:741:15", "type": { "tag": ":function-pointer" } },
204
+{ "tag": "function", "name": "bsearch", "location": "/usr/include/stdlib.h:754:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__key", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__base", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__nmemb", "type": { "tag": "size_t" } }, { "tag": "parameter", "name": "__size", "type": { "tag": "size_t" } }, { "tag": "parameter", "name": "__compar", "type": { "tag": "__compar_fn_t" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":void" } } },
205
+{ "tag": "function", "name": "qsort", "location": "/usr/include/stdlib.h:760:13", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__base", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__nmemb", "type": { "tag": "size_t" } }, { "tag": "parameter", "name": "__size", "type": { "tag": "size_t" } }, { "tag": "parameter", "name": "__compar", "type": { "tag": "__compar_fn_t" } }], "return-type": { "tag": ":void" } },
206
+{ "tag": "function", "name": "abs", "location": "/usr/include/stdlib.h:770:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":int" } }], "return-type": { "tag": ":int" } },
207
+{ "tag": "function", "name": "labs", "location": "/usr/include/stdlib.h:771:17", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":long" } }], "return-type": { "tag": ":long" } },
208
+{ "tag": "function", "name": "llabs", "location": "/usr/include/stdlib.h:775:36", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":long-long" } }], "return-type": { "tag": ":long-long" } },
209
+{ "tag": "function", "name": "div", "location": "/usr/include/stdlib.h:784:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__numer", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__denom", "type": { "tag": ":int" } }], "return-type": { "tag": "div_t" } },
210
+{ "tag": "function", "name": "ldiv", "location": "/usr/include/stdlib.h:786:15", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__numer", "type": { "tag": ":long" } }, { "tag": "parameter", "name": "__denom", "type": { "tag": ":long" } }], "return-type": { "tag": "ldiv_t" } },
211
+{ "tag": "function", "name": "lldiv", "location": "/usr/include/stdlib.h:792:30", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__numer", "type": { "tag": ":long-long" } }, { "tag": "parameter", "name": "__denom", "type": { "tag": ":long-long" } }], "return-type": { "tag": "lldiv_t" } },
212
+{ "tag": "function", "name": "ecvt", "location": "/usr/include/stdlib.h:807:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__value", "type": { "tag": ":double" } }, { "tag": "parameter", "name": "__ndigit", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__decpt", "type": { "tag": ":pointer", "type": { "tag": ":int" } } }, { "tag": "parameter", "name": "__sign", "type": { "tag": ":pointer", "type": { "tag": ":int" } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
213
+{ "tag": "function", "name": "fcvt", "location": "/usr/include/stdlib.h:813:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__value", "type": { "tag": ":double" } }, { "tag": "parameter", "name": "__ndigit", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__decpt", "type": { "tag": ":pointer", "type": { "tag": ":int" } } }, { "tag": "parameter", "name": "__sign", "type": { "tag": ":pointer", "type": { "tag": ":int" } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
214
+{ "tag": "function", "name": "gcvt", "location": "/usr/include/stdlib.h:819:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__value", "type": { "tag": ":double" } }, { "tag": "parameter", "name": "__ndigit", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__buf", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
215
+{ "tag": "function", "name": "qecvt", "location": "/usr/include/stdlib.h:825:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__value", "type": { "tag": ":long-double" } }, { "tag": "parameter", "name": "__ndigit", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__decpt", "type": { "tag": ":pointer", "type": { "tag": ":int" } } }, { "tag": "parameter", "name": "__sign", "type": { "tag": ":pointer", "type": { "tag": ":int" } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
216
+{ "tag": "function", "name": "qfcvt", "location": "/usr/include/stdlib.h:828:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__value", "type": { "tag": ":long-double" } }, { "tag": "parameter", "name": "__ndigit", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__decpt", "type": { "tag": ":pointer", "type": { "tag": ":int" } } }, { "tag": "parameter", "name": "__sign", "type": { "tag": ":pointer", "type": { "tag": ":int" } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
217
+{ "tag": "function", "name": "qgcvt", "location": "/usr/include/stdlib.h:831:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__value", "type": { "tag": ":long-double" } }, { "tag": "parameter", "name": "__ndigit", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__buf", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
218
+{ "tag": "function", "name": "ecvt_r", "location": "/usr/include/stdlib.h:837:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__value", "type": { "tag": ":double" } }, { "tag": "parameter", "name": "__ndigit", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__decpt", "type": { "tag": ":pointer", "type": { "tag": ":int" } } }, { "tag": "parameter", "name": "__sign", "type": { "tag": ":pointer", "type": { "tag": ":int" } } }, { "tag": "parameter", "name": "__buf", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__len", "type": { "tag": "size_t" } }], "return-type": { "tag": ":int" } },
219
+{ "tag": "function", "name": "fcvt_r", "location": "/usr/include/stdlib.h:840:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__value", "type": { "tag": ":double" } }, { "tag": "parameter", "name": "__ndigit", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__decpt", "type": { "tag": ":pointer", "type": { "tag": ":int" } } }, { "tag": "parameter", "name": "__sign", "type": { "tag": ":pointer", "type": { "tag": ":int" } } }, { "tag": "parameter", "name": "__buf", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__len", "type": { "tag": "size_t" } }], "return-type": { "tag": ":int" } },
220
+{ "tag": "function", "name": "qecvt_r", "location": "/usr/include/stdlib.h:844:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__value", "type": { "tag": ":long-double" } }, { "tag": "parameter", "name": "__ndigit", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__decpt", "type": { "tag": ":pointer", "type": { "tag": ":int" } } }, { "tag": "parameter", "name": "__sign", "type": { "tag": ":pointer", "type": { "tag": ":int" } } }, { "tag": "parameter", "name": "__buf", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__len", "type": { "tag": "size_t" } }], "return-type": { "tag": ":int" } },
221
+{ "tag": "function", "name": "qfcvt_r", "location": "/usr/include/stdlib.h:848:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__value", "type": { "tag": ":long-double" } }, { "tag": "parameter", "name": "__ndigit", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__decpt", "type": { "tag": ":pointer", "type": { "tag": ":int" } } }, { "tag": "parameter", "name": "__sign", "type": { "tag": ":pointer", "type": { "tag": ":int" } } }, { "tag": "parameter", "name": "__buf", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__len", "type": { "tag": "size_t" } }], "return-type": { "tag": ":int" } },
222
+{ "tag": "function", "name": "mblen", "location": "/usr/include/stdlib.h:859:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }], "return-type": { "tag": ":int" } },
223
+{ "tag": "function", "name": "mbtowc", "location": "/usr/include/stdlib.h:862:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__pwc", "type": { "tag": ":pointer", "type": { "tag": "wchar_t" } } }, { "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }], "return-type": { "tag": ":int" } },
224
+{ "tag": "function", "name": "wctomb", "location": "/usr/include/stdlib.h:866:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__wchar", "type": { "tag": "wchar_t" } }], "return-type": { "tag": ":int" } },
225
+{ "tag": "function", "name": "mbstowcs", "location": "/usr/include/stdlib.h:870:15", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__pwcs", "type": { "tag": ":pointer", "type": { "tag": "wchar_t" } } }, { "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }], "return-type": { "tag": "size_t" } },
226
+{ "tag": "function", "name": "wcstombs", "location": "/usr/include/stdlib.h:873:15", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__pwcs", "type": { "tag": ":pointer", "type": { "tag": "wchar_t" } } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }], "return-type": { "tag": "size_t" } },
227
+{ "tag": "function", "name": "rpmatch", "location": "/usr/include/stdlib.h:884:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__response", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":int" } },
228
+{ "tag": "function", "name": "getsubopt", "location": "/usr/include/stdlib.h:895:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__optionp", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char" } } } }, { "tag": "parameter", "name": "__tokens", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char" } } } }, { "tag": "parameter", "name": "__valuep", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char" } } } }], "return-type": { "tag": ":int" } },
229
+{ "tag": "function", "name": "getloadavg", "location": "/usr/include/stdlib.h:947:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__loadavg", "type": { "tag": ":pointer", "type": { "tag": ":double" } } }, { "tag": "parameter", "name": "__nelem", "type": { "tag": ":int" } }], "return-type": { "tag": ":int" } },
230
+{ "tag": "struct", "name": "_IO_FILE", "id": 0, "location": "/usr/include/stdio.h:44:8", "bit-size": 0, "bit-alignment": 0, "fields": [] },
231
+{ "tag": "typedef", "name": "FILE", "location": "/usr/include/stdio.h:48:25", "type": { "tag": ":struct", "name": "_IO_FILE", "id": 0 } },
232
+{ "tag": "typedef", "name": "__FILE", "location": "/usr/include/stdio.h:64:25", "type": { "tag": ":struct", "name": "_IO_FILE", "id": 0 } },
233
+{ "tag": "typedef", "name": "__mbstate_t", "location": "/usr/include/wchar.h:94:3", "type": { "tag": "struct", "name": "", "id": 20, "location": "/usr/include/wchar.h:82:9", "bit-size": 64, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "__count", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "__value", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "union", "name": "", "id": 21, "location": "/usr/include/wchar.h:85:3", "bit-size": 32, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "__wch", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "__wchb", "bit-offset": 0, "bit-size": 32, "bit-alignment": 8, "type": { "tag": ":array", "type": { "tag": ":char" }, "size": 4 } }] } }] } },
234
+{ "tag": "typedef", "name": "_G_fpos_t", "location": "/usr/include/_G_config.h:25:3", "type": { "tag": "struct", "name": "", "id": 22, "location": "/usr/include/_G_config.h:21:9", "bit-size": 128, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "__pos", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": "__off_t" } }, { "tag": "field", "name": "__state", "bit-offset": 64, "bit-size": 64, "bit-alignment": 32, "type": { "tag": "__mbstate_t" } }] } },
235
+{ "tag": "typedef", "name": "_G_fpos64_t", "location": "/usr/include/_G_config.h:30:3", "type": { "tag": "struct", "name": "", "id": 23, "location": "/usr/include/_G_config.h:26:9", "bit-size": 128, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "__pos", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": "__off64_t" } }, { "tag": "field", "name": "__state", "bit-offset": 64, "bit-size": 64, "bit-alignment": 32, "type": { "tag": "__mbstate_t" } }] } },
236
+{ "tag": "typedef", "name": "__gnuc_va_list", "location": "/usr/include/stdarg.h:40:27", "type": { "tag": "__builtin_va_list" } },
237
+{ "tag": "struct", "name": "_IO_jump_t", "id": 0, "location": "/usr/include/libio.h:145:8", "bit-size": 0, "bit-alignment": 0, "fields": [] },
238
+{ "tag": "struct", "name": "_IO_FILE", "id": 0, "location": "/usr/include/libio.h:145:28", "bit-size": 0, "bit-alignment": 0, "fields": [] },
239
+{ "tag": "typedef", "name": "_IO_lock_t", "location": "/usr/include/libio.h:155:14", "type": { "tag": ":void" } },
240
+{ "tag": "struct", "name": "_IO_marker", "id": 0, "location": "/usr/include/libio.h:161:8", "bit-size": 192, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "_next", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "_IO_marker", "id": 0 } } }, { "tag": "field", "name": "_sbuf", "bit-offset": 64, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "_IO_FILE", "id": 0 } } }, { "tag": "field", "name": "_pos", "bit-offset": 128, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }] },
241
+{ "tag": "enum", "name": "__codecvt_result", "id": 0, "location": "/usr/include/libio.h:181:6", "fields": [{ "tag": "field", "name": "__codecvt_ok", "value": 0 }, { "tag": "field", "name": "__codecvt_partial", "value": 1 }, { "tag": "field", "name": "__codecvt_error", "value": 2 }, { "tag": "field", "name": "__codecvt_noconv", "value": 3 }] },
242
+{ "tag": "struct", "name": "_IO_FILE", "id": 0, "location": "/usr/include/libio.h:246:8", "bit-size": 1728, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "_flags", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "_IO_read_ptr", "bit-offset": 64, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "field", "name": "_IO_read_end", "bit-offset": 128, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "field", "name": "_IO_read_base", "bit-offset": 192, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "field", "name": "_IO_write_base", "bit-offset": 256, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "field", "name": "_IO_write_ptr", "bit-offset": 320, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "field", "name": "_IO_write_end", "bit-offset": 384, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "field", "name": "_IO_buf_base", "bit-offset": 448, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "field", "name": "_IO_buf_end", "bit-offset": 512, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "field", "name": "_IO_save_base", "bit-offset": 576, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "field", "name": "_IO_backup_base", "bit-offset": 640, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "field", "name": "_IO_save_end", "bit-offset": 704, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "field", "name": "_markers", "bit-offset": 768, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "_IO_marker", "id": 0 } } }, { "tag": "field", "name": "_chain", "bit-offset": 832, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "_IO_FILE", "id": 0 } } }, { "tag": "field", "name": "_fileno", "bit-offset": 896, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "_flags2", "bit-offset": 928, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "_old_offset", "bit-offset": 960, "bit-size": 64, "bit-alignment": 64, "type": { "tag": "__off_t" } }, { "tag": "field", "name": "_cur_column", "bit-offset": 1024, "bit-size": 16, "bit-alignment": 16, "type": { "tag": ":unsigned-short" } }, { "tag": "field", "name": "_vtable_offset", "bit-offset": 1040, "bit-size": 8, "bit-alignment": 8, "type": { "tag": ":signed-char" } }, { "tag": "field", "name": "_shortbuf", "bit-offset": 1048, "bit-size": 8, "bit-alignment": 8, "type": { "tag": ":array", "type": { "tag": ":char" }, "size": 1 } }, { "tag": "field", "name": "_lock", "bit-offset": 1088, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "field", "name": "_offset", "bit-offset": 1152, "bit-size": 64, "bit-alignment": 64, "type": { "tag": "__off64_t" } }, { "tag": "field", "name": "__pad1", "bit-offset": 1216, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "field", "name": "__pad2", "bit-offset": 1280, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "field", "name": "__pad3", "bit-offset": 1344, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "field", "name": "__pad4", "bit-offset": 1408, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "field", "name": "__pad5", "bit-offset": 1472, "bit-size": 64, "bit-alignment": 64, "type": { "tag": "size_t" } }, { "tag": "field", "name": "_mode", "bit-offset": 1536, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "_unused2", "bit-offset": 1568, "bit-size": 160, "bit-alignment": 8, "type": { "tag": ":array", "type": { "tag": ":char" }, "size": 20 } }] },
243
+{ "tag": "typedef", "name": "_IO_FILE", "location": "/usr/include/libio.h:316:25", "type": { "tag": ":struct", "name": "_IO_FILE", "id": 0 } },
244
+{ "tag": "struct", "name": "_IO_FILE_plus", "id": 0, "location": "/usr/include/libio.h:319:8", "bit-size": 0, "bit-alignment": 0, "fields": [] },
245
+{ "tag": "extern", "name": "_IO_2_1_stdin_", "location": "/usr/include/libio.h:321:29", "type": { "tag": ":struct", "name": "_IO_FILE_plus", "id": 0 } },
246
+{ "tag": "extern", "name": "_IO_2_1_stdout_", "location": "/usr/include/libio.h:322:29", "type": { "tag": ":struct", "name": "_IO_FILE_plus", "id": 0 } },
247
+{ "tag": "extern", "name": "_IO_2_1_stderr_", "location": "/usr/include/libio.h:323:29", "type": { "tag": ":struct", "name": "_IO_FILE_plus", "id": 0 } },
248
+{ "tag": "typedef", "name": "__io_read_fn", "location": "/usr/include/libio.h:339:19", "type": { "tag": ":function" } },
249
+{ "tag": "typedef", "name": "__io_write_fn", "location": "/usr/include/libio.h:347:19", "type": { "tag": ":function" } },
250
+{ "tag": "typedef", "name": "__io_seek_fn", "location": "/usr/include/libio.h:356:13", "type": { "tag": ":function" } },
251
+{ "tag": "typedef", "name": "__io_close_fn", "location": "/usr/include/libio.h:359:13", "type": { "tag": ":function" } },
252
+{ "tag": "function", "name": "__underflow", "location": "/usr/include/libio.h:391:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": "_IO_FILE" } } }], "return-type": { "tag": ":int" } },
253
+{ "tag": "function", "name": "__uflow", "location": "/usr/include/libio.h:392:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": "_IO_FILE" } } }], "return-type": { "tag": ":int" } },
254
+{ "tag": "function", "name": "__overflow", "location": "/usr/include/libio.h:393:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": "_IO_FILE" } } }, { "tag": "parameter", "name": "", "type": { "tag": ":int" } }], "return-type": { "tag": ":int" } },
255
+{ "tag": "function", "name": "_IO_getc", "location": "/usr/include/libio.h:435:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__fp", "type": { "tag": ":pointer", "type": { "tag": "_IO_FILE" } } }], "return-type": { "tag": ":int" } },
256
+{ "tag": "function", "name": "_IO_putc", "location": "/usr/include/libio.h:436:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__c", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__fp", "type": { "tag": ":pointer", "type": { "tag": "_IO_FILE" } } }], "return-type": { "tag": ":int" } },
257
+{ "tag": "function", "name": "_IO_feof", "location": "/usr/include/libio.h:437:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__fp", "type": { "tag": ":pointer", "type": { "tag": "_IO_FILE" } } }], "return-type": { "tag": ":int" } },
258
+{ "tag": "function", "name": "_IO_ferror", "location": "/usr/include/libio.h:438:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__fp", "type": { "tag": ":pointer", "type": { "tag": "_IO_FILE" } } }], "return-type": { "tag": ":int" } },
259
+{ "tag": "function", "name": "_IO_peekc_locked", "location": "/usr/include/libio.h:440:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__fp", "type": { "tag": ":pointer", "type": { "tag": "_IO_FILE" } } }], "return-type": { "tag": ":int" } },
260
+{ "tag": "function", "name": "_IO_flockfile", "location": "/usr/include/libio.h:446:13", "variadic": false, "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": "_IO_FILE" } } }], "return-type": { "tag": ":void" } },
261
+{ "tag": "function", "name": "_IO_funlockfile", "location": "/usr/include/libio.h:447:13", "variadic": false, "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": "_IO_FILE" } } }], "return-type": { "tag": ":void" } },
262
+{ "tag": "function", "name": "_IO_ftrylockfile", "location": "/usr/include/libio.h:448:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": "_IO_FILE" } } }], "return-type": { "tag": ":int" } },
263
+{ "tag": "function", "name": "_IO_vfscanf", "location": "/usr/include/libio.h:465:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": "_IO_FILE" } } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "", "type": { "tag": "__gnuc_va_list" } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":int" } } }], "return-type": { "tag": ":int" } },
264
+{ "tag": "function", "name": "_IO_vfprintf", "location": "/usr/include/libio.h:467:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": "_IO_FILE" } } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "", "type": { "tag": "__gnuc_va_list" } }], "return-type": { "tag": ":int" } },
265
+{ "tag": "function", "name": "_IO_padn", "location": "/usr/include/libio.h:469:20", "variadic": false, "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": "_IO_FILE" } } }, { "tag": "parameter", "name": "", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "", "type": { "tag": "__ssize_t" } }], "return-type": { "tag": "__ssize_t" } },
266
+{ "tag": "function", "name": "_IO_sgetn", "location": "/usr/include/libio.h:470:19", "variadic": false, "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": "_IO_FILE" } } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "", "type": { "tag": "size_t" } }], "return-type": { "tag": "size_t" } },
267
+{ "tag": "function", "name": "_IO_seekoff", "location": "/usr/include/libio.h:472:20", "variadic": false, "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": "_IO_FILE" } } }, { "tag": "parameter", "name": "", "type": { "tag": "__off64_t" } }, { "tag": "parameter", "name": "", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "", "type": { "tag": ":int" } }], "return-type": { "tag": "__off64_t" } },
268
+{ "tag": "function", "name": "_IO_seekpos", "location": "/usr/include/libio.h:473:20", "variadic": false, "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": "_IO_FILE" } } }, { "tag": "parameter", "name": "", "type": { "tag": "__off64_t" } }, { "tag": "parameter", "name": "", "type": { "tag": ":int" } }], "return-type": { "tag": "__off64_t" } },
269
+{ "tag": "function", "name": "_IO_free_backup_area", "location": "/usr/include/libio.h:475:13", "variadic": false, "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": "_IO_FILE" } } }], "return-type": { "tag": ":void" } },
270
+{ "tag": "typedef", "name": "va_list", "location": "/usr/include/stdio.h:79:20", "type": { "tag": "__gnuc_va_list" } },
271
+{ "tag": "typedef", "name": "fpos_t", "location": "/usr/include/stdio.h:110:19", "type": { "tag": "_G_fpos_t" } },
272
+{ "tag": "extern", "name": "stdin", "location": "/usr/include/stdio.h:168:25", "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "_IO_FILE", "id": 0 } } },
273
+{ "tag": "extern", "name": "stdout", "location": "/usr/include/stdio.h:169:25", "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "_IO_FILE", "id": 0 } } },
274
+{ "tag": "extern", "name": "stderr", "location": "/usr/include/stdio.h:170:25", "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "_IO_FILE", "id": 0 } } },
275
+{ "tag": "function", "name": "remove", "location": "/usr/include/stdio.h:178:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__filename", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":int" } },
276
+{ "tag": "function", "name": "rename", "location": "/usr/include/stdio.h:180:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__old", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__new", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":int" } },
277
+{ "tag": "function", "name": "renameat", "location": "/usr/include/stdio.h:185:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__oldfd", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__old", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__newfd", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__new", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":int" } },
278
+{ "tag": "function", "name": "tmpfile", "location": "/usr/include/stdio.h:195:14", "variadic": false, "parameters": [], "return-type": { "tag": ":pointer", "type": { "tag": "FILE" } } },
279
+{ "tag": "function", "name": "tmpnam", "location": "/usr/include/stdio.h:209:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
280
+{ "tag": "function", "name": "tmpnam_r", "location": "/usr/include/stdio.h:215:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
281
+{ "tag": "function", "name": "tempnam", "location": "/usr/include/stdio.h:227:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__dir", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__pfx", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
282
+{ "tag": "function", "name": "fclose", "location": "/usr/include/stdio.h:237:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":int" } },
283
+{ "tag": "function", "name": "fflush", "location": "/usr/include/stdio.h:242:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":int" } },
284
+{ "tag": "function", "name": "fflush_unlocked", "location": "/usr/include/stdio.h:252:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":int" } },
285
+{ "tag": "function", "name": "fopen", "location": "/usr/include/stdio.h:272:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__filename", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__modes", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":pointer", "type": { "tag": "FILE" } } },
286
+{ "tag": "function", "name": "freopen", "location": "/usr/include/stdio.h:278:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__filename", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__modes", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":pointer", "type": { "tag": "FILE" } } },
287
+{ "tag": "function", "name": "fdopen", "location": "/usr/include/stdio.h:306:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__fd", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__modes", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":pointer", "type": { "tag": "FILE" } } },
288
+{ "tag": "function", "name": "fmemopen", "location": "/usr/include/stdio.h:319:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__len", "type": { "tag": "size_t" } }, { "tag": "parameter", "name": "__modes", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":pointer", "type": { "tag": "FILE" } } },
289
+{ "tag": "function", "name": "open_memstream", "location": "/usr/include/stdio.h:325:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__bufloc", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char" } } } }, { "tag": "parameter", "name": "__sizeloc", "type": { "tag": ":pointer", "type": { "tag": "size_t" } } }], "return-type": { "tag": ":pointer", "type": { "tag": "FILE" } } },
290
+{ "tag": "function", "name": "setbuf", "location": "/usr/include/stdio.h:332:13", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }, { "tag": "parameter", "name": "__buf", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":void" } },
291
+{ "tag": "function", "name": "setvbuf", "location": "/usr/include/stdio.h:336:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }, { "tag": "parameter", "name": "__buf", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__modes", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }], "return-type": { "tag": ":int" } },
292
+{ "tag": "function", "name": "setbuffer", "location": "/usr/include/stdio.h:343:13", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }, { "tag": "parameter", "name": "__buf", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__size", "type": { "tag": "size_t" } }], "return-type": { "tag": ":void" } },
293
+{ "tag": "function", "name": "setlinebuf", "location": "/usr/include/stdio.h:347:13", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":void" } },
294
+{ "tag": "function", "name": "fprintf", "location": "/usr/include/stdio.h:356:12", "variadic": true, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }, { "tag": "parameter", "name": "__format", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":int" } },
295
+{ "tag": "function", "name": "printf", "location": "/usr/include/stdio.h:362:12", "variadic": true, "parameters": [{ "tag": "parameter", "name": "__format", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":int" } },
296
+{ "tag": "function", "name": "sprintf", "location": "/usr/include/stdio.h:364:12", "variadic": true, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__format", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":int" } },
297
+{ "tag": "function", "name": "vfprintf", "location": "/usr/include/stdio.h:371:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }, { "tag": "parameter", "name": "__format", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__arg", "type": { "tag": "__gnuc_va_list" } }], "return-type": { "tag": ":int" } },
298
+{ "tag": "function", "name": "vprintf", "location": "/usr/include/stdio.h:377:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__format", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__arg", "type": { "tag": "__gnuc_va_list" } }], "return-type": { "tag": ":int" } },
299
+{ "tag": "function", "name": "vsprintf", "location": "/usr/include/stdio.h:379:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__format", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__arg", "type": { "tag": "__gnuc_va_list" } }], "return-type": { "tag": ":int" } },
300
+{ "tag": "function", "name": "snprintf", "location": "/usr/include/stdio.h:386:12", "variadic": true, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__maxlen", "type": { "tag": "size_t" } }, { "tag": "parameter", "name": "__format", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":int" } },
301
+{ "tag": "function", "name": "vsnprintf", "location": "/usr/include/stdio.h:390:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__maxlen", "type": { "tag": "size_t" } }, { "tag": "parameter", "name": "__format", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__arg", "type": { "tag": "__gnuc_va_list" } }], "return-type": { "tag": ":int" } },
302
+{ "tag": "function", "name": "vdprintf", "location": "/usr/include/stdio.h:412:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__fd", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__fmt", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__arg", "type": { "tag": "__gnuc_va_list" } }], "return-type": { "tag": ":int" } },
303
+{ "tag": "function", "name": "dprintf", "location": "/usr/include/stdio.h:415:12", "variadic": true, "parameters": [{ "tag": "parameter", "name": "__fd", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__fmt", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":int" } },
304
+{ "tag": "function", "name": "fscanf", "location": "/usr/include/stdio.h:425:12", "variadic": true, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }, { "tag": "parameter", "name": "__format", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":int" } },
305
+{ "tag": "function", "name": "scanf", "location": "/usr/include/stdio.h:431:12", "variadic": true, "parameters": [{ "tag": "parameter", "name": "__format", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":int" } },
306
+{ "tag": "function", "name": "sscanf", "location": "/usr/include/stdio.h:433:12", "variadic": true, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__format", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":int" } },
307
+{ "tag": "function", "name": "fscanf", "location": "/usr/include/stdio.h:443:12 <Spelling=/usr/include/stdio.h:443:24>", "variadic": true, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }, { "tag": "parameter", "name": "__format", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":int" } },
308
+{ "tag": "function", "name": "scanf", "location": "/usr/include/stdio.h:446:12 <Spelling=/usr/include/stdio.h:446:24>", "variadic": true, "parameters": [{ "tag": "parameter", "name": "__format", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":int" } },
309
+{ "tag": "function", "name": "sscanf", "location": "/usr/include/stdio.h:448:12 <Spelling=/usr/include/stdio.h:448:28>", "variadic": true, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__format", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":int" } },
310
+{ "tag": "function", "name": "vfscanf", "location": "/usr/include/stdio.h:471:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }, { "tag": "parameter", "name": "__format", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__arg", "type": { "tag": "__gnuc_va_list" } }], "return-type": { "tag": ":int" } },
311
+{ "tag": "function", "name": "vscanf", "location": "/usr/include/stdio.h:479:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__format", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__arg", "type": { "tag": "__gnuc_va_list" } }], "return-type": { "tag": ":int" } },
312
+{ "tag": "function", "name": "vsscanf", "location": "/usr/include/stdio.h:483:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__format", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__arg", "type": { "tag": "__gnuc_va_list" } }], "return-type": { "tag": ":int" } },
313
+{ "tag": "function", "name": "vfscanf", "location": "/usr/include/stdio.h:494:12 <Spelling=/usr/include/stdio.h:494:24>", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }, { "tag": "parameter", "name": "__format", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__arg", "type": { "tag": "__gnuc_va_list" } }], "return-type": { "tag": ":int" } },
314
+{ "tag": "function", "name": "vscanf", "location": "/usr/include/stdio.h:499:12 <Spelling=/usr/include/stdio.h:499:24>", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__format", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__arg", "type": { "tag": "__gnuc_va_list" } }], "return-type": { "tag": ":int" } },
315
+{ "tag": "function", "name": "vsscanf", "location": "/usr/include/stdio.h:502:12 <Spelling=/usr/include/stdio.h:502:28>", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__format", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__arg", "type": { "tag": "__gnuc_va_list" } }], "return-type": { "tag": ":int" } },
316
+{ "tag": "function", "name": "fgetc", "location": "/usr/include/stdio.h:531:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":int" } },
317
+{ "tag": "function", "name": "getc", "location": "/usr/include/stdio.h:532:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":int" } },
318
+{ "tag": "function", "name": "getchar", "location": "/usr/include/stdio.h:538:12", "variadic": false, "parameters": [], "return-type": { "tag": ":int" } },
319
+{ "tag": "function", "name": "getc_unlocked", "location": "/usr/include/stdio.h:550:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":int" } },
320
+{ "tag": "function", "name": "getchar_unlocked", "location": "/usr/include/stdio.h:551:12", "variadic": false, "parameters": [], "return-type": { "tag": ":int" } },
321
+{ "tag": "function", "name": "fgetc_unlocked", "location": "/usr/include/stdio.h:561:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":int" } },
322
+{ "tag": "function", "name": "fputc", "location": "/usr/include/stdio.h:573:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__c", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":int" } },
323
+{ "tag": "function", "name": "putc", "location": "/usr/include/stdio.h:574:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__c", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":int" } },
324
+{ "tag": "function", "name": "putchar", "location": "/usr/include/stdio.h:580:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__c", "type": { "tag": ":int" } }], "return-type": { "tag": ":int" } },
325
+{ "tag": "function", "name": "fputc_unlocked", "location": "/usr/include/stdio.h:594:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__c", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":int" } },
326
+{ "tag": "function", "name": "putc_unlocked", "location": "/usr/include/stdio.h:602:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__c", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":int" } },
327
+{ "tag": "function", "name": "putchar_unlocked", "location": "/usr/include/stdio.h:603:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__c", "type": { "tag": ":int" } }], "return-type": { "tag": ":int" } },
328
+{ "tag": "function", "name": "getw", "location": "/usr/include/stdio.h:610:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":int" } },
329
+{ "tag": "function", "name": "putw", "location": "/usr/include/stdio.h:613:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__w", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":int" } },
330
+{ "tag": "function", "name": "fgets", "location": "/usr/include/stdio.h:622:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__n", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
331
+{ "tag": "function", "name": "gets", "location": "/usr/include/stdio.h:638:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
332
+{ "tag": "function", "name": "__getdelim", "location": "/usr/include/stdio.h:665:20", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__lineptr", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char" } } } }, { "tag": "parameter", "name": "__n", "type": { "tag": ":pointer", "type": { "tag": "size_t" } } }, { "tag": "parameter", "name": "__delimiter", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": "__ssize_t" } },
333
+{ "tag": "function", "name": "getdelim", "location": "/usr/include/stdio.h:668:20", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__lineptr", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char" } } } }, { "tag": "parameter", "name": "__n", "type": { "tag": ":pointer", "type": { "tag": "size_t" } } }, { "tag": "parameter", "name": "__delimiter", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": "__ssize_t" } },
334
+{ "tag": "function", "name": "getline", "location": "/usr/include/stdio.h:678:20", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__lineptr", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char" } } } }, { "tag": "parameter", "name": "__n", "type": { "tag": ":pointer", "type": { "tag": "size_t" } } }, { "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": "__ssize_t" } },
335
+{ "tag": "function", "name": "fputs", "location": "/usr/include/stdio.h:689:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":int" } },
336
+{ "tag": "function", "name": "puts", "location": "/usr/include/stdio.h:695:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":int" } },
337
+{ "tag": "function", "name": "ungetc", "location": "/usr/include/stdio.h:702:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__c", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":int" } },
338
+{ "tag": "function", "name": "fread", "location": "/usr/include/stdio.h:709:15", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__ptr", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__size", "type": { "tag": "size_t" } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }, { "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": "size_t" } },
339
+{ "tag": "function", "name": "fwrite", "location": "/usr/include/stdio.h:715:15", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__ptr", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__size", "type": { "tag": "size_t" } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }, { "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": "size_t" } },
340
+{ "tag": "function", "name": "fread_unlocked", "location": "/usr/include/stdio.h:737:15", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__ptr", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__size", "type": { "tag": "size_t" } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }, { "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": "size_t" } },
341
+{ "tag": "function", "name": "fwrite_unlocked", "location": "/usr/include/stdio.h:739:15", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__ptr", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__size", "type": { "tag": "size_t" } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }, { "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": "size_t" } },
342
+{ "tag": "function", "name": "fseek", "location": "/usr/include/stdio.h:749:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }, { "tag": "parameter", "name": "__off", "type": { "tag": ":long" } }, { "tag": "parameter", "name": "__whence", "type": { "tag": ":int" } }], "return-type": { "tag": ":int" } },
343
+{ "tag": "function", "name": "ftell", "location": "/usr/include/stdio.h:754:17", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":long" } },
344
+{ "tag": "function", "name": "rewind", "location": "/usr/include/stdio.h:759:13", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":void" } },
345
+{ "tag": "function", "name": "fseeko", "location": "/usr/include/stdio.h:773:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }, { "tag": "parameter", "name": "__off", "type": { "tag": "__off_t" } }, { "tag": "parameter", "name": "__whence", "type": { "tag": ":int" } }], "return-type": { "tag": ":int" } },
346
+{ "tag": "function", "name": "ftello", "location": "/usr/include/stdio.h:778:16", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": "__off_t" } },
347
+{ "tag": "function", "name": "fgetpos", "location": "/usr/include/stdio.h:798:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }, { "tag": "parameter", "name": "__pos", "type": { "tag": ":pointer", "type": { "tag": "fpos_t" } } }], "return-type": { "tag": ":int" } },
348
+{ "tag": "function", "name": "fsetpos", "location": "/usr/include/stdio.h:803:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }, { "tag": "parameter", "name": "__pos", "type": { "tag": ":pointer", "type": { "tag": "fpos_t" } } }], "return-type": { "tag": ":int" } },
349
+{ "tag": "function", "name": "clearerr", "location": "/usr/include/stdio.h:826:13", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":void" } },
350
+{ "tag": "function", "name": "feof", "location": "/usr/include/stdio.h:828:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":int" } },
351
+{ "tag": "function", "name": "ferror", "location": "/usr/include/stdio.h:830:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":int" } },
352
+{ "tag": "function", "name": "clearerr_unlocked", "location": "/usr/include/stdio.h:835:13", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":void" } },
353
+{ "tag": "function", "name": "feof_unlocked", "location": "/usr/include/stdio.h:836:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":int" } },
354
+{ "tag": "function", "name": "ferror_unlocked", "location": "/usr/include/stdio.h:837:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":int" } },
355
+{ "tag": "function", "name": "perror", "location": "/usr/include/stdio.h:846:13", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":void" } },
356
+{ "tag": "extern", "name": "sys_nerr", "location": "/usr/include/bits/sys_errlist.h:26:12", "type": { "tag": ":int" } },
357
+{ "tag": "extern", "name": "sys_errlist", "location": "/usr/include/bits/sys_errlist.h:27:26", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char" } } } },
358
+{ "tag": "function", "name": "fileno", "location": "/usr/include/stdio.h:858:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":int" } },
359
+{ "tag": "function", "name": "fileno_unlocked", "location": "/usr/include/stdio.h:863:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":int" } },
360
+{ "tag": "function", "name": "popen", "location": "/usr/include/stdio.h:873:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__command", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__modes", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":pointer", "type": { "tag": "FILE" } } },
361
+{ "tag": "function", "name": "pclose", "location": "/usr/include/stdio.h:879:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":int" } },
362
+{ "tag": "function", "name": "ctermid", "location": "/usr/include/stdio.h:885:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
363
+{ "tag": "function", "name": "flockfile", "location": "/usr/include/stdio.h:913:13", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":void" } },
364
+{ "tag": "function", "name": "ftrylockfile", "location": "/usr/include/stdio.h:917:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":int" } },
365
+{ "tag": "function", "name": "funlockfile", "location": "/usr/include/stdio.h:920:13", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":void" } },
366
+{ "tag": "function", "name": "memcpy", "location": "/usr/include/string.h:42:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__dest", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__src", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":void" } } },
367
+{ "tag": "function", "name": "memmove", "location": "/usr/include/string.h:46:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__dest", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__src", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":void" } } },
368
+{ "tag": "function", "name": "memccpy", "location": "/usr/include/string.h:54:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__dest", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__src", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__c", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":void" } } },
369
+{ "tag": "function", "name": "memset", "location": "/usr/include/string.h:62:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__c", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":void" } } },
370
+{ "tag": "function", "name": "memcmp", "location": "/usr/include/string.h:65:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s1", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__s2", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }], "return-type": { "tag": ":int" } },
371
+{ "tag": "function", "name": "memchr", "location": "/usr/include/string.h:92:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__c", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":void" } } },
372
+{ "tag": "function", "name": "strcpy", "location": "/usr/include/string.h:125:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__dest", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__src", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
373
+{ "tag": "function", "name": "strncpy", "location": "/usr/include/string.h:128:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__dest", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__src", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
374
+{ "tag": "function", "name": "strcat", "location": "/usr/include/string.h:133:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__dest", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__src", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
375
+{ "tag": "function", "name": "strncat", "location": "/usr/include/string.h:136:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__dest", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__src", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
376
+{ "tag": "function", "name": "strcmp", "location": "/usr/include/string.h:140:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s1", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__s2", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":int" } },
377
+{ "tag": "function", "name": "strncmp", "location": "/usr/include/string.h:143:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s1", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__s2", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }], "return-type": { "tag": ":int" } },
378
+{ "tag": "function", "name": "strcoll", "location": "/usr/include/string.h:147:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s1", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__s2", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":int" } },
379
+{ "tag": "function", "name": "strxfrm", "location": "/usr/include/string.h:150:15", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__dest", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__src", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }], "return-type": { "tag": "size_t" } },
380
+{ "tag": "struct", "name": "__locale_struct", "id": 0, "location": "/usr/include/xlocale.h:27:16", "bit-size": 1856, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "__locales", "bit-offset": 0, "bit-size": 832, "bit-alignment": 64, "type": { "tag": ":array", "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "__locale_data", "id": 0 } }, "size": 13 } }, { "tag": "field", "name": "__ctype_b", "bit-offset": 832, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":unsigned-short" } } }, { "tag": "field", "name": "__ctype_tolower", "bit-offset": 896, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":int" } } }, { "tag": "field", "name": "__ctype_toupper", "bit-offset": 960, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":int" } } }, { "tag": "field", "name": "__names", "bit-offset": 1024, "bit-size": 832, "bit-alignment": 64, "type": { "tag": ":array", "type": { "tag": ":pointer", "type": { "tag": ":char" } }, "size": 13 } }] },
381
+{ "tag": "typedef", "name": "__locale_t", "location": "/usr/include/xlocale.h:39:4", "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "__locale_struct", "id": 0 } } },
382
+{ "tag": "typedef", "name": "locale_t", "location": "/usr/include/xlocale.h:42:20", "type": { "tag": "__locale_t" } },
383
+{ "tag": "function", "name": "strcoll_l", "location": "/usr/include/string.h:162:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s1", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__s2", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__l", "type": { "tag": "__locale_t" } }], "return-type": { "tag": ":int" } },
384
+{ "tag": "function", "name": "strxfrm_l", "location": "/usr/include/string.h:165:15", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__dest", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__src", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }, { "tag": "parameter", "name": "__l", "type": { "tag": "__locale_t" } }], "return-type": { "tag": "size_t" } },
385
+{ "tag": "function", "name": "strdup", "location": "/usr/include/string.h:172:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
386
+{ "tag": "function", "name": "strndup", "location": "/usr/include/string.h:180:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__string", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
387
+{ "tag": "function", "name": "strchr", "location": "/usr/include/string.h:232:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__c", "type": { "tag": ":int" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
388
+{ "tag": "function", "name": "strrchr", "location": "/usr/include/string.h:259:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__c", "type": { "tag": ":int" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
389
+{ "tag": "function", "name": "strcspn", "location": "/usr/include/string.h:281:15", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__reject", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": "size_t" } },
390
+{ "tag": "function", "name": "strspn", "location": "/usr/include/string.h:285:15", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__accept", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": "size_t" } },
391
+{ "tag": "function", "name": "strpbrk", "location": "/usr/include/string.h:311:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__accept", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
392
+{ "tag": "function", "name": "strstr", "location": "/usr/include/string.h:338:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__haystack", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__needle", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
393
+{ "tag": "function", "name": "strtok", "location": "/usr/include/string.h:344:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__delim", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
394
+{ "tag": "function", "name": "__strtok_r", "location": "/usr/include/string.h:350:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__delim", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__save_ptr", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char" } } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
395
+{ "tag": "function", "name": "strtok_r", "location": "/usr/include/string.h:355:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__delim", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__save_ptr", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char" } } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
396
+{ "tag": "function", "name": "strlen", "location": "/usr/include/string.h:395:15", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": "size_t" } },
397
+{ "tag": "function", "name": "strnlen", "location": "/usr/include/string.h:402:15", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__string", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__maxlen", "type": { "tag": "size_t" } }], "return-type": { "tag": "size_t" } },
398
+{ "tag": "function", "name": "strerror", "location": "/usr/include/string.h:409:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__errnum", "type": { "tag": ":int" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
399
+{ "tag": "function", "name": "strerror_r", "location": "/usr/include/string.h:423:12 <Spelling=/usr/include/string.h:423:28>", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__errnum", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__buf", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__buflen", "type": { "tag": "size_t" } }], "return-type": { "tag": ":int" } },
400
+{ "tag": "function", "name": "strerror_l", "location": "/usr/include/string.h:441:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__errnum", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__l", "type": { "tag": "__locale_t" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
401
+{ "tag": "function", "name": "__bzero", "location": "/usr/include/string.h:447:13", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }], "return-type": { "tag": ":void" } },
402
+{ "tag": "function", "name": "bcopy", "location": "/usr/include/string.h:451:13", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__src", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__dest", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }], "return-type": { "tag": ":void" } },
403
+{ "tag": "function", "name": "bzero", "location": "/usr/include/string.h:455:13", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }], "return-type": { "tag": ":void" } },
404
+{ "tag": "function", "name": "bcmp", "location": "/usr/include/string.h:458:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s1", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__s2", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }], "return-type": { "tag": ":int" } },
405
+{ "tag": "function", "name": "index", "location": "/usr/include/string.h:485:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__c", "type": { "tag": ":int" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
406
+{ "tag": "function", "name": "rindex", "location": "/usr/include/string.h:513:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__c", "type": { "tag": ":int" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
407
+{ "tag": "function", "name": "ffs", "location": "/usr/include/string.h:519:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__i", "type": { "tag": ":int" } }], "return-type": { "tag": ":int" } },
408
+{ "tag": "function", "name": "strcasecmp", "location": "/usr/include/string.h:532:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s1", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__s2", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":int" } },
409
+{ "tag": "function", "name": "strncasecmp", "location": "/usr/include/string.h:536:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s1", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__s2", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }], "return-type": { "tag": ":int" } },
410
+{ "tag": "function", "name": "strsep", "location": "/usr/include/string.h:555:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stringp", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char" } } } }, { "tag": "parameter", "name": "__delim", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
411
+{ "tag": "function", "name": "strsignal", "location": "/usr/include/string.h:562:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__sig", "type": { "tag": ":int" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
412
+{ "tag": "function", "name": "__stpcpy", "location": "/usr/include/string.h:565:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__dest", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__src", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
413
+{ "tag": "function", "name": "stpcpy", "location": "/usr/include/string.h:567:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__dest", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__src", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
414
+{ "tag": "function", "name": "__stpncpy", "location": "/usr/include/string.h:572:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__dest", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__src", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
415
+{ "tag": "function", "name": "stpncpy", "location": "/usr/include/string.h:575:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__dest", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__src", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
416
+{ "tag": "function", "name": "yaml_get_version_string", "location": "/usr/include/yaml.h:57:1", "variadic": false, "parameters": [], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
417
+{ "tag": "function", "name": "yaml_get_version", "location": "/usr/include/yaml.h:68:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "major", "type": { "tag": ":pointer", "type": { "tag": ":int" } } }, { "tag": "parameter", "name": "minor", "type": { "tag": ":pointer", "type": { "tag": ":int" } } }, { "tag": "parameter", "name": "patch", "type": { "tag": ":pointer", "type": { "tag": ":int" } } }], "return-type": { "tag": ":void" } },
418
+{ "tag": "typedef", "name": "yaml_char_t", "location": "/usr/include/yaml.h:78:23", "type": { "tag": ":unsigned-char" } },
419
+{ "tag": "struct", "name": "yaml_version_directive_s", "id": 0, "location": "/usr/include/yaml.h:81:16", "bit-size": 64, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "major", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "minor", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }] },
420
+{ "tag": "typedef", "name": "yaml_version_directive_t", "location": "/usr/include/yaml.h:86:3", "type": { "tag": ":struct", "name": "yaml_version_directive_s", "id": 0 } },
421
+{ "tag": "struct", "name": "yaml_tag_directive_s", "id": 0, "location": "/usr/include/yaml.h:89:16", "bit-size": 128, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "handle", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "field", "name": "prefix", "bit-offset": 64, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }] },
422
+{ "tag": "typedef", "name": "yaml_tag_directive_t", "location": "/usr/include/yaml.h:94:3", "type": { "tag": ":struct", "name": "yaml_tag_directive_s", "id": 0 } },
423
+{ "tag": "enum", "name": "yaml_encoding_e", "id": 0, "location": "/usr/include/yaml.h:97:14", "fields": [{ "tag": "field", "name": "YAML_ANY_ENCODING", "value": 0 }, { "tag": "field", "name": "YAML_UTF8_ENCODING", "value": 1 }, { "tag": "field", "name": "YAML_UTF16LE_ENCODING", "value": 2 }, { "tag": "field", "name": "YAML_UTF16BE_ENCODING", "value": 3 }] },
424
+{ "tag": "typedef", "name": "yaml_encoding_t", "location": "/usr/include/yaml.h:106:3", "type": { "tag": ":enum", "name": "yaml_encoding_e", "id": 0 } },
425
+{ "tag": "enum", "name": "yaml_break_e", "id": 0, "location": "/usr/include/yaml.h:110:14", "fields": [{ "tag": "field", "name": "YAML_ANY_BREAK", "value": 0 }, { "tag": "field", "name": "YAML_CR_BREAK", "value": 1 }, { "tag": "field", "name": "YAML_LN_BREAK", "value": 2 }, { "tag": "field", "name": "YAML_CRLN_BREAK", "value": 3 }] },
426
+{ "tag": "typedef", "name": "yaml_break_t", "location": "/usr/include/yaml.h:119:3", "type": { "tag": ":enum", "name": "yaml_break_e", "id": 0 } },
427
+{ "tag": "enum", "name": "yaml_error_type_e", "id": 0, "location": "/usr/include/yaml.h:122:14", "fields": [{ "tag": "field", "name": "YAML_NO_ERROR", "value": 0 }, { "tag": "field", "name": "YAML_MEMORY_ERROR", "value": 1 }, { "tag": "field", "name": "YAML_READER_ERROR", "value": 2 }, { "tag": "field", "name": "YAML_SCANNER_ERROR", "value": 3 }, { "tag": "field", "name": "YAML_PARSER_ERROR", "value": 4 }, { "tag": "field", "name": "YAML_COMPOSER_ERROR", "value": 5 }, { "tag": "field", "name": "YAML_WRITER_ERROR", "value": 6 }, { "tag": "field", "name": "YAML_EMITTER_ERROR", "value": 7 }] },
428
+{ "tag": "typedef", "name": "yaml_error_type_t", "location": "/usr/include/yaml.h:142:3", "type": { "tag": ":enum", "name": "yaml_error_type_e", "id": 0 } },
429
+{ "tag": "struct", "name": "yaml_mark_s", "id": 0, "location": "/usr/include/yaml.h:145:16", "bit-size": 192, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "index", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": "size_t" } }, { "tag": "field", "name": "line", "bit-offset": 64, "bit-size": 64, "bit-alignment": 64, "type": { "tag": "size_t" } }, { "tag": "field", "name": "column", "bit-offset": 128, "bit-size": 64, "bit-alignment": 64, "type": { "tag": "size_t" } }] },
430
+{ "tag": "typedef", "name": "yaml_mark_t", "location": "/usr/include/yaml.h:154:3", "type": { "tag": ":struct", "name": "yaml_mark_s", "id": 0 } },
431
+{ "tag": "enum", "name": "yaml_scalar_style_e", "id": 0, "location": "/usr/include/yaml.h:164:14", "fields": [{ "tag": "field", "name": "YAML_ANY_SCALAR_STYLE", "value": 0 }, { "tag": "field", "name": "YAML_PLAIN_SCALAR_STYLE", "value": 1 }, { "tag": "field", "name": "YAML_SINGLE_QUOTED_SCALAR_STYLE", "value": 2 }, { "tag": "field", "name": "YAML_DOUBLE_QUOTED_SCALAR_STYLE", "value": 3 }, { "tag": "field", "name": "YAML_LITERAL_SCALAR_STYLE", "value": 4 }, { "tag": "field", "name": "YAML_FOLDED_SCALAR_STYLE", "value": 5 }] },
432
+{ "tag": "typedef", "name": "yaml_scalar_style_t", "location": "/usr/include/yaml.h:180:3", "type": { "tag": ":enum", "name": "yaml_scalar_style_e", "id": 0 } },
433
+{ "tag": "enum", "name": "yaml_sequence_style_e", "id": 0, "location": "/usr/include/yaml.h:183:14", "fields": [{ "tag": "field", "name": "YAML_ANY_SEQUENCE_STYLE", "value": 0 }, { "tag": "field", "name": "YAML_BLOCK_SEQUENCE_STYLE", "value": 1 }, { "tag": "field", "name": "YAML_FLOW_SEQUENCE_STYLE", "value": 2 }] },
434
+{ "tag": "typedef", "name": "yaml_sequence_style_t", "location": "/usr/include/yaml.h:191:3", "type": { "tag": ":enum", "name": "yaml_sequence_style_e", "id": 0 } },
435
+{ "tag": "enum", "name": "yaml_mapping_style_e", "id": 0, "location": "/usr/include/yaml.h:194:14", "fields": [{ "tag": "field", "name": "YAML_ANY_MAPPING_STYLE", "value": 0 }, { "tag": "field", "name": "YAML_BLOCK_MAPPING_STYLE", "value": 1 }, { "tag": "field", "name": "YAML_FLOW_MAPPING_STYLE", "value": 2 }] },
436
+{ "tag": "typedef", "name": "yaml_mapping_style_t", "location": "/usr/include/yaml.h:203:3", "type": { "tag": ":enum", "name": "yaml_mapping_style_e", "id": 0 } },
437
+{ "tag": "enum", "name": "yaml_token_type_e", "id": 0, "location": "/usr/include/yaml.h:213:14", "fields": [{ "tag": "field", "name": "YAML_NO_TOKEN", "value": 0 }, { "tag": "field", "name": "YAML_STREAM_START_TOKEN", "value": 1 }, { "tag": "field", "name": "YAML_STREAM_END_TOKEN", "value": 2 }, { "tag": "field", "name": "YAML_VERSION_DIRECTIVE_TOKEN", "value": 3 }, { "tag": "field", "name": "YAML_TAG_DIRECTIVE_TOKEN", "value": 4 }, { "tag": "field", "name": "YAML_DOCUMENT_START_TOKEN", "value": 5 }, { "tag": "field", "name": "YAML_DOCUMENT_END_TOKEN", "value": 6 }, { "tag": "field", "name": "YAML_BLOCK_SEQUENCE_START_TOKEN", "value": 7 }, { "tag": "field", "name": "YAML_BLOCK_MAPPING_START_TOKEN", "value": 8 }, { "tag": "field", "name": "YAML_BLOCK_END_TOKEN", "value": 9 }, { "tag": "field", "name": "YAML_FLOW_SEQUENCE_START_TOKEN", "value": 10 }, { "tag": "field", "name": "YAML_FLOW_SEQUENCE_END_TOKEN", "value": 11 }, { "tag": "field", "name": "YAML_FLOW_MAPPING_START_TOKEN", "value": 12 }, { "tag": "field", "name": "YAML_FLOW_MAPPING_END_TOKEN", "value": 13 }, { "tag": "field", "name": "YAML_BLOCK_ENTRY_TOKEN", "value": 14 }, { "tag": "field", "name": "YAML_FLOW_ENTRY_TOKEN", "value": 15 }, { "tag": "field", "name": "YAML_KEY_TOKEN", "value": 16 }, { "tag": "field", "name": "YAML_VALUE_TOKEN", "value": 17 }, { "tag": "field", "name": "YAML_ALIAS_TOKEN", "value": 18 }, { "tag": "field", "name": "YAML_ANCHOR_TOKEN", "value": 19 }, { "tag": "field", "name": "YAML_TAG_TOKEN", "value": 20 }, { "tag": "field", "name": "YAML_SCALAR_TOKEN", "value": 21 }] },
438
+{ "tag": "typedef", "name": "yaml_token_type_t", "location": "/usr/include/yaml.h:264:3", "type": { "tag": ":enum", "name": "yaml_token_type_e", "id": 0 } },
439
+{ "tag": "struct", "name": "yaml_token_s", "id": 0, "location": "/usr/include/yaml.h:267:16", "bit-size": 640, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "type", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "yaml_token_type_t" } }, { "tag": "field", "name": "data", "bit-offset": 64, "bit-size": 192, "bit-alignment": 64, "type": { "tag": "union", "name": "", "id": 24, "location": "/usr/include/yaml.h:273:5", "bit-size": 192, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "stream_start", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "struct", "name": "", "id": 25, "location": "/usr/include/yaml.h:276:9", "bit-size": 32, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "encoding", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "yaml_encoding_t" } }] } }, { "tag": "field", "name": "alias", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": "struct", "name": "", "id": 26, "location": "/usr/include/yaml.h:282:9", "bit-size": 64, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "value", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }] } }, { "tag": "field", "name": "anchor", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": "struct", "name": "", "id": 27, "location": "/usr/include/yaml.h:288:9", "bit-size": 64, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "value", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }] } }, { "tag": "field", "name": "tag", "bit-offset": 0, "bit-size": 128, "bit-alignment": 64, "type": { "tag": "struct", "name": "", "id": 28, "location": "/usr/include/yaml.h:294:9", "bit-size": 128, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "handle", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "field", "name": "suffix", "bit-offset": 64, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }] } }, { "tag": "field", "name": "scalar", "bit-offset": 0, "bit-size": 192, "bit-alignment": 64, "type": { "tag": "struct", "name": "", "id": 29, "location": "/usr/include/yaml.h:302:9", "bit-size": 192, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "value", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "field", "name": "length", "bit-offset": 64, "bit-size": 64, "bit-alignment": 64, "type": { "tag": "size_t" } }, { "tag": "field", "name": "style", "bit-offset": 128, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "yaml_scalar_style_t" } }] } }, { "tag": "field", "name": "version_directive", "bit-offset": 0, "bit-size": 64, "bit-alignment": 32, "type": { "tag": "struct", "name": "", "id": 30, "location": "/usr/include/yaml.h:312:9", "bit-size": 64, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "major", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "minor", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }] } }, { "tag": "field", "name": "tag_directive", "bit-offset": 0, "bit-size": 128, "bit-alignment": 64, "type": { "tag": "struct", "name": "", "id": 31, "location": "/usr/include/yaml.h:320:9", "bit-size": 128, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "handle", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "field", "name": "prefix", "bit-offset": 64, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }] } }] } }, { "tag": "field", "name": "start_mark", "bit-offset": 256, "bit-size": 192, "bit-alignment": 64, "type": { "tag": "yaml_mark_t" } }, { "tag": "field", "name": "end_mark", "bit-offset": 448, "bit-size": 192, "bit-alignment": 64, "type": { "tag": "yaml_mark_t" } }] },
440
+{ "tag": "typedef", "name": "yaml_token_t", "location": "/usr/include/yaml.h:334:3", "type": { "tag": ":struct", "name": "yaml_token_s", "id": 0 } },
441
+{ "tag": "function", "name": "yaml_token_delete", "location": "/usr/include/yaml.h:343:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "token", "type": { "tag": ":pointer", "type": { "tag": "yaml_token_t" } } }], "return-type": { "tag": ":void" } },
442
+{ "tag": "enum", "name": "yaml_event_type_e", "id": 0, "location": "/usr/include/yaml.h:353:14", "fields": [{ "tag": "field", "name": "YAML_NO_EVENT", "value": 0 }, { "tag": "field", "name": "YAML_STREAM_START_EVENT", "value": 1 }, { "tag": "field", "name": "YAML_STREAM_END_EVENT", "value": 2 }, { "tag": "field", "name": "YAML_DOCUMENT_START_EVENT", "value": 3 }, { "tag": "field", "name": "YAML_DOCUMENT_END_EVENT", "value": 4 }, { "tag": "field", "name": "YAML_ALIAS_EVENT", "value": 5 }, { "tag": "field", "name": "YAML_SCALAR_EVENT", "value": 6 }, { "tag": "field", "name": "YAML_SEQUENCE_START_EVENT", "value": 7 }, { "tag": "field", "name": "YAML_SEQUENCE_END_EVENT", "value": 8 }, { "tag": "field", "name": "YAML_MAPPING_START_EVENT", "value": 9 }, { "tag": "field", "name": "YAML_MAPPING_END_EVENT", "value": 10 }] },
443
+{ "tag": "typedef", "name": "yaml_event_type_t", "location": "/usr/include/yaml.h:381:3", "type": { "tag": ":enum", "name": "yaml_event_type_e", "id": 0 } },
444
+{ "tag": "struct", "name": "yaml_event_s", "id": 0, "location": "/usr/include/yaml.h:384:16", "bit-size": 832, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "type", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "yaml_event_type_t" } }, { "tag": "field", "name": "data", "bit-offset": 64, "bit-size": 384, "bit-alignment": 64, "type": { "tag": "union", "name": "", "id": 32, "location": "/usr/include/yaml.h:390:5", "bit-size": 384, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "stream_start", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "struct", "name": "", "id": 33, "location": "/usr/include/yaml.h:393:9", "bit-size": 32, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "encoding", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "yaml_encoding_t" } }] } }, { "tag": "field", "name": "document_start", "bit-offset": 0, "bit-size": 256, "bit-alignment": 64, "type": { "tag": "struct", "name": "", "id": 34, "location": "/usr/include/yaml.h:399:9", "bit-size": 256, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "version_directive", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_version_directive_t" } } }, { "tag": "field", "name": "tag_directives", "bit-offset": 64, "bit-size": 128, "bit-alignment": 64, "type": { "tag": "struct", "name": "", "id": 35, "location": "/usr/include/yaml.h:404:13", "bit-size": 128, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "start", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_tag_directive_t" } } }, { "tag": "field", "name": "end", "bit-offset": 64, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_tag_directive_t" } } }] } }, { "tag": "field", "name": "implicit", "bit-offset": 192, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }] } }, { "tag": "field", "name": "document_end", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "struct", "name": "", "id": 36, "location": "/usr/include/yaml.h:416:9", "bit-size": 32, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "implicit", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }] } }, { "tag": "field", "name": "alias", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": "struct", "name": "", "id": 37, "location": "/usr/include/yaml.h:422:9", "bit-size": 64, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "anchor", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }] } }, { "tag": "field", "name": "scalar", "bit-offset": 0, "bit-size": 384, "bit-alignment": 64, "type": { "tag": "struct", "name": "", "id": 38, "location": "/usr/include/yaml.h:428:9", "bit-size": 384, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "anchor", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "field", "name": "tag", "bit-offset": 64, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "field", "name": "value", "bit-offset": 128, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "field", "name": "length", "bit-offset": 192, "bit-size": 64, "bit-alignment": 64, "type": { "tag": "size_t" } }, { "tag": "field", "name": "plain_implicit", "bit-offset": 256, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "quoted_implicit", "bit-offset": 288, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "style", "bit-offset": 320, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "yaml_scalar_style_t" } }] } }, { "tag": "field", "name": "sequence_start", "bit-offset": 0, "bit-size": 192, "bit-alignment": 64, "type": { "tag": "struct", "name": "", "id": 39, "location": "/usr/include/yaml.h:446:9", "bit-size": 192, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "anchor", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "field", "name": "tag", "bit-offset": 64, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "field", "name": "implicit", "bit-offset": 128, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "style", "bit-offset": 160, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "yaml_sequence_style_t" } }] } }, { "tag": "field", "name": "mapping_start", "bit-offset": 0, "bit-size": 192, "bit-alignment": 64, "type": { "tag": "struct", "name": "", "id": 40, "location": "/usr/include/yaml.h:458:9", "bit-size": 192, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "anchor", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "field", "name": "tag", "bit-offset": 64, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "field", "name": "implicit", "bit-offset": 128, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "style", "bit-offset": 160, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "yaml_mapping_style_t" } }] } }] } }, { "tag": "field", "name": "start_mark", "bit-offset": 448, "bit-size": 192, "bit-alignment": 64, "type": { "tag": "yaml_mark_t" } }, { "tag": "field", "name": "end_mark", "bit-offset": 640, "bit-size": 192, "bit-alignment": 64, "type": { "tag": "yaml_mark_t" } }] },
445
+{ "tag": "typedef", "name": "yaml_event_t", "location": "/usr/include/yaml.h:476:3", "type": { "tag": ":struct", "name": "yaml_event_s", "id": 0 } },
446
+{ "tag": "function", "name": "yaml_stream_start_event_initialize", "location": "/usr/include/yaml.h:488:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "event", "type": { "tag": ":pointer", "type": { "tag": "yaml_event_t" } } }, { "tag": "parameter", "name": "encoding", "type": { "tag": "yaml_encoding_t" } }], "return-type": { "tag": ":int" } },
447
+{ "tag": "function", "name": "yaml_stream_end_event_initialize", "location": "/usr/include/yaml.h:500:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "event", "type": { "tag": ":pointer", "type": { "tag": "yaml_event_t" } } }], "return-type": { "tag": ":int" } },
448
+{ "tag": "function", "name": "yaml_document_start_event_initialize", "location": "/usr/include/yaml.h:522:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "event", "type": { "tag": ":pointer", "type": { "tag": "yaml_event_t" } } }, { "tag": "parameter", "name": "version_directive", "type": { "tag": ":pointer", "type": { "tag": "yaml_version_directive_t" } } }, { "tag": "parameter", "name": "tag_directives_start", "type": { "tag": ":pointer", "type": { "tag": "yaml_tag_directive_t" } } }, { "tag": "parameter", "name": "tag_directives_end", "type": { "tag": ":pointer", "type": { "tag": "yaml_tag_directive_t" } } }, { "tag": "parameter", "name": "implicit", "type": { "tag": ":int" } }], "return-type": { "tag": ":int" } },
449
+{ "tag": "function", "name": "yaml_document_end_event_initialize", "location": "/usr/include/yaml.h:541:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "event", "type": { "tag": ":pointer", "type": { "tag": "yaml_event_t" } } }, { "tag": "parameter", "name": "implicit", "type": { "tag": ":int" } }], "return-type": { "tag": ":int" } },
450
+{ "tag": "function", "name": "yaml_alias_event_initialize", "location": "/usr/include/yaml.h:553:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "event", "type": { "tag": ":pointer", "type": { "tag": "yaml_event_t" } } }, { "tag": "parameter", "name": "anchor", "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }], "return-type": { "tag": ":int" } },
451
+{ "tag": "function", "name": "yaml_scalar_event_initialize", "location": "/usr/include/yaml.h:578:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "event", "type": { "tag": ":pointer", "type": { "tag": "yaml_event_t" } } }, { "tag": "parameter", "name": "anchor", "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "parameter", "name": "tag", "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "parameter", "name": "value", "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "parameter", "name": "length", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "plain_implicit", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "quoted_implicit", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "style", "type": { "tag": "yaml_scalar_style_t" } }], "return-type": { "tag": ":int" } },
452
+{ "tag": "function", "name": "yaml_sequence_start_event_initialize", "location": "/usr/include/yaml.h:601:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "event", "type": { "tag": ":pointer", "type": { "tag": "yaml_event_t" } } }, { "tag": "parameter", "name": "anchor", "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "parameter", "name": "tag", "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "parameter", "name": "implicit", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "style", "type": { "tag": "yaml_sequence_style_t" } }], "return-type": { "tag": ":int" } },
453
+{ "tag": "function", "name": "yaml_sequence_end_event_initialize", "location": "/usr/include/yaml.h:614:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "event", "type": { "tag": ":pointer", "type": { "tag": "yaml_event_t" } } }], "return-type": { "tag": ":int" } },
454
+{ "tag": "function", "name": "yaml_mapping_start_event_initialize", "location": "/usr/include/yaml.h:633:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "event", "type": { "tag": ":pointer", "type": { "tag": "yaml_event_t" } } }, { "tag": "parameter", "name": "anchor", "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "parameter", "name": "tag", "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "parameter", "name": "implicit", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "style", "type": { "tag": "yaml_mapping_style_t" } }], "return-type": { "tag": ":int" } },
455
+{ "tag": "function", "name": "yaml_mapping_end_event_initialize", "location": "/usr/include/yaml.h:646:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "event", "type": { "tag": ":pointer", "type": { "tag": "yaml_event_t" } } }], "return-type": { "tag": ":int" } },
456
+{ "tag": "function", "name": "yaml_event_delete", "location": "/usr/include/yaml.h:655:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "event", "type": { "tag": ":pointer", "type": { "tag": "yaml_event_t" } } }], "return-type": { "tag": ":void" } },
457
+{ "tag": "enum", "name": "yaml_node_type_e", "id": 0, "location": "/usr/include/yaml.h:690:14", "fields": [{ "tag": "field", "name": "YAML_NO_NODE", "value": 0 }, { "tag": "field", "name": "YAML_SCALAR_NODE", "value": 1 }, { "tag": "field", "name": "YAML_SEQUENCE_NODE", "value": 2 }, { "tag": "field", "name": "YAML_MAPPING_NODE", "value": 3 }] },
458
+{ "tag": "typedef", "name": "yaml_node_type_t", "location": "/usr/include/yaml.h:700:3", "type": { "tag": ":enum", "name": "yaml_node_type_e", "id": 0 } },
459
+{ "tag": "struct", "name": "yaml_node_s", "id": 0, "location": "/usr/include/yaml.h:703:16", "bit-size": 0, "bit-alignment": 0, "fields": [] },
460
+{ "tag": "typedef", "name": "yaml_node_t", "location": "/usr/include/yaml.h:703:28", "type": { "tag": ":struct", "name": "yaml_node_s", "id": 0 } },
461
+{ "tag": "typedef", "name": "yaml_node_item_t", "location": "/usr/include/yaml.h:706:13", "type": { "tag": ":int" } },
462
+{ "tag": "struct", "name": "yaml_node_pair_s", "id": 0, "location": "/usr/include/yaml.h:709:16", "bit-size": 64, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "key", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "value", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }] },
463
+{ "tag": "typedef", "name": "yaml_node_pair_t", "location": "/usr/include/yaml.h:714:3", "type": { "tag": ":struct", "name": "yaml_node_pair_s", "id": 0 } },
464
+{ "tag": "struct", "name": "yaml_node_s", "id": 0, "location": "/usr/include/yaml.h:717:8", "bit-size": 768, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "type", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "yaml_node_type_t" } }, { "tag": "field", "name": "tag", "bit-offset": 64, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "field", "name": "data", "bit-offset": 128, "bit-size": 256, "bit-alignment": 64, "type": { "tag": "union", "name": "", "id": 41, "location": "/usr/include/yaml.h:726:5", "bit-size": 256, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "scalar", "bit-offset": 0, "bit-size": 192, "bit-alignment": 64, "type": { "tag": "struct", "name": "", "id": 42, "location": "/usr/include/yaml.h:729:9", "bit-size": 192, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "value", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "field", "name": "length", "bit-offset": 64, "bit-size": 64, "bit-alignment": 64, "type": { "tag": "size_t" } }, { "tag": "field", "name": "style", "bit-offset": 128, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "yaml_scalar_style_t" } }] } }, { "tag": "field", "name": "sequence", "bit-offset": 0, "bit-size": 256, "bit-alignment": 64, "type": { "tag": "struct", "name": "", "id": 43, "location": "/usr/include/yaml.h:739:9", "bit-size": 256, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "items", "bit-offset": 0, "bit-size": 192, "bit-alignment": 64, "type": { "tag": "struct", "name": "", "id": 44, "location": "/usr/include/yaml.h:741:13", "bit-size": 192, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "start", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_node_item_t" } } }, { "tag": "field", "name": "end", "bit-offset": 64, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_node_item_t" } } }, { "tag": "field", "name": "top", "bit-offset": 128, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_node_item_t" } } }] } }, { "tag": "field", "name": "style", "bit-offset": 192, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "yaml_sequence_style_t" } }] } }, { "tag": "field", "name": "mapping", "bit-offset": 0, "bit-size": 256, "bit-alignment": 64, "type": { "tag": "struct", "name": "", "id": 45, "location": "/usr/include/yaml.h:754:9", "bit-size": 256, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "pairs", "bit-offset": 0, "bit-size": 192, "bit-alignment": 64, "type": { "tag": "struct", "name": "", "id": 46, "location": "/usr/include/yaml.h:756:13", "bit-size": 192, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "start", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_node_pair_t" } } }, { "tag": "field", "name": "end", "bit-offset": 64, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_node_pair_t" } } }, { "tag": "field", "name": "top", "bit-offset": 128, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_node_pair_t" } } }] } }, { "tag": "field", "name": "style", "bit-offset": 192, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "yaml_mapping_style_t" } }] } }] } }, { "tag": "field", "name": "start_mark", "bit-offset": 384, "bit-size": 192, "bit-alignment": 64, "type": { "tag": "yaml_mark_t" } }, { "tag": "field", "name": "end_mark", "bit-offset": 576, "bit-size": 192, "bit-alignment": 64, "type": { "tag": "yaml_mark_t" } }] },
465
+{ "tag": "struct", "name": "yaml_document_s", "id": 0, "location": "/usr/include/yaml.h:778:16", "bit-size": 832, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "nodes", "bit-offset": 0, "bit-size": 192, "bit-alignment": 64, "type": { "tag": "struct", "name": "", "id": 47, "location": "/usr/include/yaml.h:781:5", "bit-size": 192, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "start", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_node_t" } } }, { "tag": "field", "name": "end", "bit-offset": 64, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_node_t" } } }, { "tag": "field", "name": "top", "bit-offset": 128, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_node_t" } } }] } }, { "tag": "field", "name": "version_directive", "bit-offset": 192, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_version_directive_t" } } }, { "tag": "field", "name": "tag_directives", "bit-offset": 256, "bit-size": 128, "bit-alignment": 64, "type": { "tag": "struct", "name": "", "id": 48, "location": "/usr/include/yaml.h:794:5", "bit-size": 128, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "start", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_tag_directive_t" } } }, { "tag": "field", "name": "end", "bit-offset": 64, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_tag_directive_t" } } }] } }, { "tag": "field", "name": "start_implicit", "bit-offset": 384, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "end_implicit", "bit-offset": 416, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "start_mark", "bit-offset": 448, "bit-size": 192, "bit-alignment": 64, "type": { "tag": "yaml_mark_t" } }, { "tag": "field", "name": "end_mark", "bit-offset": 640, "bit-size": 192, "bit-alignment": 64, "type": { "tag": "yaml_mark_t" } }] },
466
+{ "tag": "typedef", "name": "yaml_document_t", "location": "/usr/include/yaml.h:811:3", "type": { "tag": ":struct", "name": "yaml_document_s", "id": 0 } },
467
+{ "tag": "function", "name": "yaml_document_initialize", "location": "/usr/include/yaml.h:832:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "document", "type": { "tag": ":pointer", "type": { "tag": "yaml_document_t" } } }, { "tag": "parameter", "name": "version_directive", "type": { "tag": ":pointer", "type": { "tag": "yaml_version_directive_t" } } }, { "tag": "parameter", "name": "tag_directives_start", "type": { "tag": ":pointer", "type": { "tag": "yaml_tag_directive_t" } } }, { "tag": "parameter", "name": "tag_directives_end", "type": { "tag": ":pointer", "type": { "tag": "yaml_tag_directive_t" } } }, { "tag": "parameter", "name": "start_implicit", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "end_implicit", "type": { "tag": ":int" } }], "return-type": { "tag": ":int" } },
468
+{ "tag": "function", "name": "yaml_document_delete", "location": "/usr/include/yaml.h:845:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "document", "type": { "tag": ":pointer", "type": { "tag": "yaml_document_t" } } }], "return-type": { "tag": ":void" } },
469
+{ "tag": "function", "name": "yaml_document_get_node", "location": "/usr/include/yaml.h:860:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "document", "type": { "tag": ":pointer", "type": { "tag": "yaml_document_t" } } }, { "tag": "parameter", "name": "index", "type": { "tag": ":int" } }], "return-type": { "tag": ":pointer", "type": { "tag": "yaml_node_t" } } },
470
+{ "tag": "function", "name": "yaml_document_get_root_node", "location": "/usr/include/yaml.h:879:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "document", "type": { "tag": ":pointer", "type": { "tag": "yaml_document_t" } } }], "return-type": { "tag": ":pointer", "type": { "tag": "yaml_node_t" } } },
471
+{ "tag": "function", "name": "yaml_document_add_scalar", "location": "/usr/include/yaml.h:896:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "document", "type": { "tag": ":pointer", "type": { "tag": "yaml_document_t" } } }, { "tag": "parameter", "name": "tag", "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "parameter", "name": "value", "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "parameter", "name": "length", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "style", "type": { "tag": "yaml_scalar_style_t" } }], "return-type": { "tag": ":int" } },
472
+{ "tag": "function", "name": "yaml_document_add_sequence", "location": "/usr/include/yaml.h:913:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "document", "type": { "tag": ":pointer", "type": { "tag": "yaml_document_t" } } }, { "tag": "parameter", "name": "tag", "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "parameter", "name": "style", "type": { "tag": "yaml_sequence_style_t" } }], "return-type": { "tag": ":int" } },
473
+{ "tag": "function", "name": "yaml_document_add_mapping", "location": "/usr/include/yaml.h:929:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "document", "type": { "tag": ":pointer", "type": { "tag": "yaml_document_t" } } }, { "tag": "parameter", "name": "tag", "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "parameter", "name": "style", "type": { "tag": "yaml_mapping_style_t" } }], "return-type": { "tag": ":int" } },
474
+{ "tag": "function", "name": "yaml_document_append_sequence_item", "location": "/usr/include/yaml.h:943:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "document", "type": { "tag": ":pointer", "type": { "tag": "yaml_document_t" } } }, { "tag": "parameter", "name": "sequence", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "item", "type": { "tag": ":int" } }], "return-type": { "tag": ":int" } },
475
+{ "tag": "function", "name": "yaml_document_append_mapping_pair", "location": "/usr/include/yaml.h:958:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "document", "type": { "tag": ":pointer", "type": { "tag": "yaml_document_t" } } }, { "tag": "parameter", "name": "mapping", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "key", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "value", "type": { "tag": ":int" } }], "return-type": { "tag": ":int" } },
476
+{ "tag": "typedef", "name": "yaml_read_handler_t", "location": "/usr/include/yaml.h:986:13", "type": { "tag": ":function" } },
477
+{ "tag": "struct", "name": "yaml_simple_key_s", "id": 0, "location": "/usr/include/yaml.h:993:16", "bit-size": 320, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "possible", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "required", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "token_number", "bit-offset": 64, "bit-size": 64, "bit-alignment": 64, "type": { "tag": "size_t" } }, { "tag": "field", "name": "mark", "bit-offset": 128, "bit-size": 192, "bit-alignment": 64, "type": { "tag": "yaml_mark_t" } }] },
478
+{ "tag": "typedef", "name": "yaml_simple_key_t", "location": "/usr/include/yaml.h:1005:3", "type": { "tag": ":struct", "name": "yaml_simple_key_s", "id": 0 } },
479
+{ "tag": "enum", "name": "yaml_parser_state_e", "id": 0, "location": "/usr/include/yaml.h:1010:14", "fields": [{ "tag": "field", "name": "YAML_PARSE_STREAM_START_STATE", "value": 0 }, { "tag": "field", "name": "YAML_PARSE_IMPLICIT_DOCUMENT_START_STATE", "value": 1 }, { "tag": "field", "name": "YAML_PARSE_DOCUMENT_START_STATE", "value": 2 }, { "tag": "field", "name": "YAML_PARSE_DOCUMENT_CONTENT_STATE", "value": 3 }, { "tag": "field", "name": "YAML_PARSE_DOCUMENT_END_STATE", "value": 4 }, { "tag": "field", "name": "YAML_PARSE_BLOCK_NODE_STATE", "value": 5 }, { "tag": "field", "name": "YAML_PARSE_BLOCK_NODE_OR_INDENTLESS_SEQUENCE_STATE", "value": 6 }, { "tag": "field", "name": "YAML_PARSE_FLOW_NODE_STATE", "value": 7 }, { "tag": "field", "name": "YAML_PARSE_BLOCK_SEQUENCE_FIRST_ENTRY_STATE", "value": 8 }, { "tag": "field", "name": "YAML_PARSE_BLOCK_SEQUENCE_ENTRY_STATE", "value": 9 }, { "tag": "field", "name": "YAML_PARSE_INDENTLESS_SEQUENCE_ENTRY_STATE", "value": 10 }, { "tag": "field", "name": "YAML_PARSE_BLOCK_MAPPING_FIRST_KEY_STATE", "value": 11 }, { "tag": "field", "name": "YAML_PARSE_BLOCK_MAPPING_KEY_STATE", "value": 12 }, { "tag": "field", "name": "YAML_PARSE_BLOCK_MAPPING_VALUE_STATE", "value": 13 }, { "tag": "field", "name": "YAML_PARSE_FLOW_SEQUENCE_FIRST_ENTRY_STATE", "value": 14 }, { "tag": "field", "name": "YAML_PARSE_FLOW_SEQUENCE_ENTRY_STATE", "value": 15 }, { "tag": "field", "name": "YAML_PARSE_FLOW_SEQUENCE_ENTRY_MAPPING_KEY_STATE", "value": 16 }, { "tag": "field", "name": "YAML_PARSE_FLOW_SEQUENCE_ENTRY_MAPPING_VALUE_STATE", "value": 17 }, { "tag": "field", "name": "YAML_PARSE_FLOW_SEQUENCE_ENTRY_MAPPING_END_STATE", "value": 18 }, { "tag": "field", "name": "YAML_PARSE_FLOW_MAPPING_FIRST_KEY_STATE", "value": 19 }, { "tag": "field", "name": "YAML_PARSE_FLOW_MAPPING_KEY_STATE", "value": 20 }, { "tag": "field", "name": "YAML_PARSE_FLOW_MAPPING_VALUE_STATE", "value": 21 }, { "tag": "field", "name": "YAML_PARSE_FLOW_MAPPING_EMPTY_VALUE_STATE", "value": 22 }, { "tag": "field", "name": "YAML_PARSE_END_STATE", "value": 23 }] },
480
+{ "tag": "typedef", "name": "yaml_parser_state_t", "location": "/usr/include/yaml.h:1059:3", "type": { "tag": ":enum", "name": "yaml_parser_state_e", "id": 0 } },
481
+{ "tag": "struct", "name": "yaml_alias_data_s", "id": 0, "location": "/usr/include/yaml.h:1065:16", "bit-size": 320, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "anchor", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "field", "name": "index", "bit-offset": 64, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "mark", "bit-offset": 128, "bit-size": 192, "bit-alignment": 64, "type": { "tag": "yaml_mark_t" } }] },
482
+{ "tag": "typedef", "name": "yaml_alias_data_t", "location": "/usr/include/yaml.h:1072:3", "type": { "tag": ":struct", "name": "yaml_alias_data_s", "id": 0 } },
483
+{ "tag": "struct", "name": "yaml_parser_s", "id": 0, "location": "/usr/include/yaml.h:1081:16", "bit-size": 3840, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "error", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "yaml_error_type_t" } }, { "tag": "field", "name": "problem", "bit-offset": 64, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "field", "name": "problem_offset", "bit-offset": 128, "bit-size": 64, "bit-alignment": 64, "type": { "tag": "size_t" } }, { "tag": "field", "name": "problem_value", "bit-offset": 192, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "problem_mark", "bit-offset": 256, "bit-size": 192, "bit-alignment": 64, "type": { "tag": "yaml_mark_t" } }, { "tag": "field", "name": "context", "bit-offset": 448, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "field", "name": "context_mark", "bit-offset": 512, "bit-size": 192, "bit-alignment": 64, "type": { "tag": "yaml_mark_t" } }, { "tag": "field", "name": "read_handler", "bit-offset": 704, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":function-pointer" } }, { "tag": "field", "name": "read_handler_data", "bit-offset": 768, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "field", "name": "input", "bit-offset": 832, "bit-size": 192, "bit-alignment": 64, "type": { "tag": "union", "name": "", "id": 49, "location": "/usr/include/yaml.h:1119:5", "bit-size": 192, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "string", "bit-offset": 0, "bit-size": 192, "bit-alignment": 64, "type": { "tag": "struct", "name": "", "id": 50, "location": "/usr/include/yaml.h:1121:9", "bit-size": 192, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "start", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":unsigned-char" } } }, { "tag": "field", "name": "end", "bit-offset": 64, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":unsigned-char" } } }, { "tag": "field", "name": "current", "bit-offset": 128, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":unsigned-char" } } }] } }, { "tag": "field", "name": "file", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }] } }, { "tag": "field", "name": "eof", "bit-offset": 1024, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "buffer", "bit-offset": 1088, "bit-size": 256, "bit-alignment": 64, "type": { "tag": "struct", "name": "", "id": 51, "location": "/usr/include/yaml.h:1138:5", "bit-size": 256, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "start", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "field", "name": "end", "bit-offset": 64, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "field", "name": "pointer", "bit-offset": 128, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "field", "name": "last", "bit-offset": 192, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }] } }, { "tag": "field", "name": "unread", "bit-offset": 1344, "bit-size": 64, "bit-alignment": 64, "type": { "tag": "size_t" } }, { "tag": "field", "name": "raw_buffer", "bit-offset": 1408, "bit-size": 256, "bit-alignment": 64, "type": { "tag": "struct", "name": "", "id": 52, "location": "/usr/include/yaml.h:1153:5", "bit-size": 256, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "start", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":unsigned-char" } } }, { "tag": "field", "name": "end", "bit-offset": 64, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":unsigned-char" } } }, { "tag": "field", "name": "pointer", "bit-offset": 128, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":unsigned-char" } } }, { "tag": "field", "name": "last", "bit-offset": 192, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":unsigned-char" } } }] } }, { "tag": "field", "name": "encoding", "bit-offset": 1664, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "yaml_encoding_t" } }, { "tag": "field", "name": "offset", "bit-offset": 1728, "bit-size": 64, "bit-alignment": 64, "type": { "tag": "size_t" } }, { "tag": "field", "name": "mark", "bit-offset": 1792, "bit-size": 192, "bit-alignment": 64, "type": { "tag": "yaml_mark_t" } }, { "tag": "field", "name": "stream_start_produced", "bit-offset": 1984, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "stream_end_produced", "bit-offset": 2016, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "flow_level", "bit-offset": 2048, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "tokens", "bit-offset": 2112, "bit-size": 256, "bit-alignment": 64, "type": { "tag": "struct", "name": "", "id": 53, "location": "/usr/include/yaml.h:1192:5", "bit-size": 256, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "start", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_token_t" } } }, { "tag": "field", "name": "end", "bit-offset": 64, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_token_t" } } }, { "tag": "field", "name": "head", "bit-offset": 128, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_token_t" } } }, { "tag": "field", "name": "tail", "bit-offset": 192, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_token_t" } } }] } }, { "tag": "field", "name": "tokens_parsed", "bit-offset": 2368, "bit-size": 64, "bit-alignment": 64, "type": { "tag": "size_t" } }, { "tag": "field", "name": "token_available", "bit-offset": 2432, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "indents", "bit-offset": 2496, "bit-size": 192, "bit-alignment": 64, "type": { "tag": "struct", "name": "", "id": 54, "location": "/usr/include/yaml.h:1210:5", "bit-size": 192, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "start", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":int" } } }, { "tag": "field", "name": "end", "bit-offset": 64, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":int" } } }, { "tag": "field", "name": "top", "bit-offset": 128, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":int" } } }] } }, { "tag": "field", "name": "indent", "bit-offset": 2688, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "simple_key_allowed", "bit-offset": 2720, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "simple_keys", "bit-offset": 2752, "bit-size": 192, "bit-alignment": 64, "type": { "tag": "struct", "name": "", "id": 55, "location": "/usr/include/yaml.h:1226:5", "bit-size": 192, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "start", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_simple_key_t" } } }, { "tag": "field", "name": "end", "bit-offset": 64, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_simple_key_t" } } }, { "tag": "field", "name": "top", "bit-offset": 128, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_simple_key_t" } } }] } }, { "tag": "field", "name": "states", "bit-offset": 2944, "bit-size": 192, "bit-alignment": 64, "type": { "tag": "struct", "name": "", "id": 56, "location": "/usr/include/yaml.h:1245:5", "bit-size": 192, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "start", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_parser_state_t" } } }, { "tag": "field", "name": "end", "bit-offset": 64, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_parser_state_t" } } }, { "tag": "field", "name": "top", "bit-offset": 128, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_parser_state_t" } } }] } }, { "tag": "field", "name": "state", "bit-offset": 3136, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "yaml_parser_state_t" } }, { "tag": "field", "name": "marks", "bit-offset": 3200, "bit-size": 192, "bit-alignment": 64, "type": { "tag": "struct", "name": "", "id": 57, "location": "/usr/include/yaml.h:1258:5", "bit-size": 192, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "start", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_mark_t" } } }, { "tag": "field", "name": "end", "bit-offset": 64, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_mark_t" } } }, { "tag": "field", "name": "top", "bit-offset": 128, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_mark_t" } } }] } }, { "tag": "field", "name": "tag_directives", "bit-offset": 3392, "bit-size": 192, "bit-alignment": 64, "type": { "tag": "struct", "name": "", "id": 58, "location": "/usr/include/yaml.h:1268:5", "bit-size": 192, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "start", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_tag_directive_t" } } }, { "tag": "field", "name": "end", "bit-offset": 64, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_tag_directive_t" } } }, { "tag": "field", "name": "top", "bit-offset": 128, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_tag_directive_t" } } }] } }, { "tag": "field", "name": "aliases", "bit-offset": 3584, "bit-size": 192, "bit-alignment": 64, "type": { "tag": "struct", "name": "", "id": 59, "location": "/usr/include/yaml.h:1287:5", "bit-size": 192, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "start", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_alias_data_t" } } }, { "tag": "field", "name": "end", "bit-offset": 64, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_alias_data_t" } } }, { "tag": "field", "name": "top", "bit-offset": 128, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_alias_data_t" } } }] } }, { "tag": "field", "name": "document", "bit-offset": 3776, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_document_t" } } }] },
484
+{ "tag": "typedef", "name": "yaml_parser_t", "location": "/usr/include/yaml.h:1303:3", "type": { "tag": ":struct", "name": "yaml_parser_s", "id": 0 } },
485
+{ "tag": "function", "name": "yaml_parser_initialize", "location": "/usr/include/yaml.h:1317:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "parser", "type": { "tag": ":pointer", "type": { "tag": "yaml_parser_t" } } }], "return-type": { "tag": ":int" } },
486
+{ "tag": "function", "name": "yaml_parser_delete", "location": "/usr/include/yaml.h:1326:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "parser", "type": { "tag": ":pointer", "type": { "tag": "yaml_parser_t" } } }], "return-type": { "tag": ":void" } },
487
+{ "tag": "function", "name": "yaml_parser_set_input_string", "location": "/usr/include/yaml.h:1341:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "parser", "type": { "tag": ":pointer", "type": { "tag": "yaml_parser_t" } } }, { "tag": "parameter", "name": "input", "type": { "tag": ":pointer", "type": { "tag": ":unsigned-char" } } }, { "tag": "parameter", "name": "size", "type": { "tag": "size_t" } }], "return-type": { "tag": ":void" } },
488
+{ "tag": "function", "name": "yaml_parser_set_input_file", "location": "/usr/include/yaml.h:1355:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "parser", "type": { "tag": ":pointer", "type": { "tag": "yaml_parser_t" } } }, { "tag": "parameter", "name": "file", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":void" } },
489
+{ "tag": "function", "name": "yaml_parser_set_input", "location": "/usr/include/yaml.h:1367:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "parser", "type": { "tag": ":pointer", "type": { "tag": "yaml_parser_t" } } }, { "tag": "parameter", "name": "handler", "type": { "tag": ":function-pointer" } }, { "tag": "parameter", "name": "data", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": ":void" } },
490
+{ "tag": "function", "name": "yaml_parser_set_encoding", "location": "/usr/include/yaml.h:1378:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "parser", "type": { "tag": ":pointer", "type": { "tag": "yaml_parser_t" } } }, { "tag": "parameter", "name": "encoding", "type": { "tag": "yaml_encoding_t" } }], "return-type": { "tag": ":void" } },
491
+{ "tag": "function", "name": "yaml_parser_scan", "location": "/usr/include/yaml.h:1402:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "parser", "type": { "tag": ":pointer", "type": { "tag": "yaml_parser_t" } } }, { "tag": "parameter", "name": "token", "type": { "tag": ":pointer", "type": { "tag": "yaml_token_t" } } }], "return-type": { "tag": ":int" } },
492
+{ "tag": "function", "name": "yaml_parser_parse", "location": "/usr/include/yaml.h:1426:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "parser", "type": { "tag": ":pointer", "type": { "tag": "yaml_parser_t" } } }, { "tag": "parameter", "name": "event", "type": { "tag": ":pointer", "type": { "tag": "yaml_event_t" } } }], "return-type": { "tag": ":int" } },
493
+{ "tag": "function", "name": "yaml_parser_load", "location": "/usr/include/yaml.h:1451:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "parser", "type": { "tag": ":pointer", "type": { "tag": "yaml_parser_t" } } }, { "tag": "parameter", "name": "document", "type": { "tag": ":pointer", "type": { "tag": "yaml_document_t" } } }], "return-type": { "tag": ":int" } },
494
+{ "tag": "typedef", "name": "yaml_write_handler_t", "location": "/usr/include/yaml.h:1476:13", "type": { "tag": ":function" } },
495
+{ "tag": "enum", "name": "yaml_emitter_state_e", "id": 0, "location": "/usr/include/yaml.h:1479:14", "fields": [{ "tag": "field", "name": "YAML_EMIT_STREAM_START_STATE", "value": 0 }, { "tag": "field", "name": "YAML_EMIT_FIRST_DOCUMENT_START_STATE", "value": 1 }, { "tag": "field", "name": "YAML_EMIT_DOCUMENT_START_STATE", "value": 2 }, { "tag": "field", "name": "YAML_EMIT_DOCUMENT_CONTENT_STATE", "value": 3 }, { "tag": "field", "name": "YAML_EMIT_DOCUMENT_END_STATE", "value": 4 }, { "tag": "field", "name": "YAML_EMIT_FLOW_SEQUENCE_FIRST_ITEM_STATE", "value": 5 }, { "tag": "field", "name": "YAML_EMIT_FLOW_SEQUENCE_ITEM_STATE", "value": 6 }, { "tag": "field", "name": "YAML_EMIT_FLOW_MAPPING_FIRST_KEY_STATE", "value": 7 }, { "tag": "field", "name": "YAML_EMIT_FLOW_MAPPING_KEY_STATE", "value": 8 }, { "tag": "field", "name": "YAML_EMIT_FLOW_MAPPING_SIMPLE_VALUE_STATE", "value": 9 }, { "tag": "field", "name": "YAML_EMIT_FLOW_MAPPING_VALUE_STATE", "value": 10 }, { "tag": "field", "name": "YAML_EMIT_BLOCK_SEQUENCE_FIRST_ITEM_STATE", "value": 11 }, { "tag": "field", "name": "YAML_EMIT_BLOCK_SEQUENCE_ITEM_STATE", "value": 12 }, { "tag": "field", "name": "YAML_EMIT_BLOCK_MAPPING_FIRST_KEY_STATE", "value": 13 }, { "tag": "field", "name": "YAML_EMIT_BLOCK_MAPPING_KEY_STATE", "value": 14 }, { "tag": "field", "name": "YAML_EMIT_BLOCK_MAPPING_SIMPLE_VALUE_STATE", "value": 15 }, { "tag": "field", "name": "YAML_EMIT_BLOCK_MAPPING_VALUE_STATE", "value": 16 }, { "tag": "field", "name": "YAML_EMIT_END_STATE", "value": 17 }] },
496
+{ "tag": "typedef", "name": "yaml_emitter_state_t", "location": "/usr/include/yaml.h:1516:3", "type": { "tag": ":enum", "name": "yaml_emitter_state_e", "id": 0 } },
497
+{ "tag": "struct", "name": "yaml_emitter_s", "id": 0, "location": "/usr/include/yaml.h:1525:16", "bit-size": 3456, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "error", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "yaml_error_type_t" } }, { "tag": "field", "name": "problem", "bit-offset": 64, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "field", "name": "write_handler", "bit-offset": 128, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":function-pointer" } }, { "tag": "field", "name": "write_handler_data", "bit-offset": 192, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "field", "name": "output", "bit-offset": 256, "bit-size": 192, "bit-alignment": 64, "type": { "tag": "union", "name": "", "id": 60, "location": "/usr/include/yaml.h:1553:5", "bit-size": 192, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "string", "bit-offset": 0, "bit-size": 192, "bit-alignment": 64, "type": { "tag": "struct", "name": "", "id": 61, "location": "/usr/include/yaml.h:1555:9", "bit-size": 192, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "buffer", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":unsigned-char" } } }, { "tag": "field", "name": "size", "bit-offset": 64, "bit-size": 64, "bit-alignment": 64, "type": { "tag": "size_t" } }, { "tag": "field", "name": "size_written", "bit-offset": 128, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "size_t" } } }] } }, { "tag": "field", "name": "file", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }] } }, { "tag": "field", "name": "buffer", "bit-offset": 448, "bit-size": 256, "bit-alignment": 64, "type": { "tag": "struct", "name": "", "id": 62, "location": "/usr/include/yaml.h:1569:5", "bit-size": 256, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "start", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "field", "name": "end", "bit-offset": 64, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "field", "name": "pointer", "bit-offset": 128, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "field", "name": "last", "bit-offset": 192, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }] } }, { "tag": "field", "name": "raw_buffer", "bit-offset": 704, "bit-size": 256, "bit-alignment": 64, "type": { "tag": "struct", "name": "", "id": 63, "location": "/usr/include/yaml.h:1581:5", "bit-size": 256, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "start", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":unsigned-char" } } }, { "tag": "field", "name": "end", "bit-offset": 64, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":unsigned-char" } } }, { "tag": "field", "name": "pointer", "bit-offset": 128, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":unsigned-char" } } }, { "tag": "field", "name": "last", "bit-offset": 192, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":unsigned-char" } } }] } }, { "tag": "field", "name": "encoding", "bit-offset": 960, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "yaml_encoding_t" } }, { "tag": "field", "name": "canonical", "bit-offset": 992, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "best_indent", "bit-offset": 1024, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "best_width", "bit-offset": 1056, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "unicode", "bit-offset": 1088, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "line_break", "bit-offset": 1120, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "yaml_break_t" } }, { "tag": "field", "name": "states", "bit-offset": 1152, "bit-size": 192, "bit-alignment": 64, "type": { "tag": "struct", "name": "", "id": 64, "location": "/usr/include/yaml.h:1616:5", "bit-size": 192, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "start", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_emitter_state_t" } } }, { "tag": "field", "name": "end", "bit-offset": 64, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_emitter_state_t" } } }, { "tag": "field", "name": "top", "bit-offset": 128, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_emitter_state_t" } } }] } }, { "tag": "field", "name": "state", "bit-offset": 1344, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "yaml_emitter_state_t" } }, { "tag": "field", "name": "events", "bit-offset": 1408, "bit-size": 256, "bit-alignment": 64, "type": { "tag": "struct", "name": "", "id": 65, "location": "/usr/include/yaml.h:1629:5", "bit-size": 256, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "start", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_event_t" } } }, { "tag": "field", "name": "end", "bit-offset": 64, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_event_t" } } }, { "tag": "field", "name": "head", "bit-offset": 128, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_event_t" } } }, { "tag": "field", "name": "tail", "bit-offset": 192, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_event_t" } } }] } }, { "tag": "field", "name": "indents", "bit-offset": 1664, "bit-size": 192, "bit-alignment": 64, "type": { "tag": "struct", "name": "", "id": 66, "location": "/usr/include/yaml.h:1641:5", "bit-size": 192, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "start", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":int" } } }, { "tag": "field", "name": "end", "bit-offset": 64, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":int" } } }, { "tag": "field", "name": "top", "bit-offset": 128, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":int" } } }] } }, { "tag": "field", "name": "tag_directives", "bit-offset": 1856, "bit-size": 192, "bit-alignment": 64, "type": { "tag": "struct", "name": "", "id": 67, "location": "/usr/include/yaml.h:1651:5", "bit-size": 192, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "start", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_tag_directive_t" } } }, { "tag": "field", "name": "end", "bit-offset": 64, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_tag_directive_t" } } }, { "tag": "field", "name": "top", "bit-offset": 128, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_tag_directive_t" } } }] } }, { "tag": "field", "name": "indent", "bit-offset": 2048, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "flow_level", "bit-offset": 2080, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "root_context", "bit-offset": 2112, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "sequence_context", "bit-offset": 2144, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "mapping_context", "bit-offset": 2176, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "simple_key_context", "bit-offset": 2208, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "line", "bit-offset": 2240, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "column", "bit-offset": 2272, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "whitespace", "bit-offset": 2304, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "indention", "bit-offset": 2336, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "open_ended", "bit-offset": 2368, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "anchor_data", "bit-offset": 2432, "bit-size": 192, "bit-alignment": 64, "type": { "tag": "struct", "name": "", "id": 68, "location": "/usr/include/yaml.h:1687:5", "bit-size": 192, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "anchor", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "field", "name": "anchor_length", "bit-offset": 64, "bit-size": 64, "bit-alignment": 64, "type": { "tag": "size_t" } }, { "tag": "field", "name": "alias", "bit-offset": 128, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }] } }, { "tag": "field", "name": "tag_data", "bit-offset": 2624, "bit-size": 256, "bit-alignment": 64, "type": { "tag": "struct", "name": "", "id": 69, "location": "/usr/include/yaml.h:1697:5", "bit-size": 256, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "handle", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "field", "name": "handle_length", "bit-offset": 64, "bit-size": 64, "bit-alignment": 64, "type": { "tag": "size_t" } }, { "tag": "field", "name": "suffix", "bit-offset": 128, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "field", "name": "suffix_length", "bit-offset": 192, "bit-size": 64, "bit-alignment": 64, "type": { "tag": "size_t" } }] } }, { "tag": "field", "name": "scalar_data", "bit-offset": 2880, "bit-size": 320, "bit-alignment": 64, "type": { "tag": "struct", "name": "", "id": 70, "location": "/usr/include/yaml.h:1709:5", "bit-size": 320, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "value", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "field", "name": "length", "bit-offset": 64, "bit-size": 64, "bit-alignment": 64, "type": { "tag": "size_t" } }, { "tag": "field", "name": "multiline", "bit-offset": 128, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "flow_plain_allowed", "bit-offset": 160, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "block_plain_allowed", "bit-offset": 192, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "single_quoted_allowed", "bit-offset": 224, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "block_allowed", "bit-offset": 256, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "style", "bit-offset": 288, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "yaml_scalar_style_t" } }] } }, { "tag": "field", "name": "opened", "bit-offset": 3200, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "closed", "bit-offset": 3232, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "anchors", "bit-offset": 3264, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "struct", "name": "", "id": 71, "location": "/usr/include/yaml.h:1743:5", "bit-size": 96, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "references", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "anchor", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "serialized", "bit-offset": 64, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }] } } }, { "tag": "field", "name": "last_anchor_id", "bit-offset": 3328, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "document", "bit-offset": 3392, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_document_t" } } }] },
498
+{ "tag": "typedef", "name": "yaml_emitter_t", "location": "/usr/include/yaml.h:1762:3", "type": { "tag": ":struct", "name": "yaml_emitter_s", "id": 0 } },
499
+{ "tag": "function", "name": "yaml_emitter_initialize", "location": "/usr/include/yaml.h:1776:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "emitter", "type": { "tag": ":pointer", "type": { "tag": "yaml_emitter_t" } } }], "return-type": { "tag": ":int" } },
500
+{ "tag": "function", "name": "yaml_emitter_delete", "location": "/usr/include/yaml.h:1785:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "emitter", "type": { "tag": ":pointer", "type": { "tag": "yaml_emitter_t" } } }], "return-type": { "tag": ":void" } },
501
+{ "tag": "function", "name": "yaml_emitter_set_output_string", "location": "/usr/include/yaml.h:1803:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "emitter", "type": { "tag": ":pointer", "type": { "tag": "yaml_emitter_t" } } }, { "tag": "parameter", "name": "output", "type": { "tag": ":pointer", "type": { "tag": ":unsigned-char" } } }, { "tag": "parameter", "name": "size", "type": { "tag": "size_t" } }, { "tag": "parameter", "name": "size_written", "type": { "tag": ":pointer", "type": { "tag": "size_t" } } }], "return-type": { "tag": ":void" } },
502
+{ "tag": "function", "name": "yaml_emitter_set_output_file", "location": "/usr/include/yaml.h:1817:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "emitter", "type": { "tag": ":pointer", "type": { "tag": "yaml_emitter_t" } } }, { "tag": "parameter", "name": "file", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":void" } },
503
+{ "tag": "function", "name": "yaml_emitter_set_output", "location": "/usr/include/yaml.h:1829:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "emitter", "type": { "tag": ":pointer", "type": { "tag": "yaml_emitter_t" } } }, { "tag": "parameter", "name": "handler", "type": { "tag": ":function-pointer" } }, { "tag": "parameter", "name": "data", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": ":void" } },
504
+{ "tag": "function", "name": "yaml_emitter_set_encoding", "location": "/usr/include/yaml.h:1840:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "emitter", "type": { "tag": ":pointer", "type": { "tag": "yaml_emitter_t" } } }, { "tag": "parameter", "name": "encoding", "type": { "tag": "yaml_encoding_t" } }], "return-type": { "tag": ":void" } },
505
+{ "tag": "function", "name": "yaml_emitter_set_canonical", "location": "/usr/include/yaml.h:1851:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "emitter", "type": { "tag": ":pointer", "type": { "tag": "yaml_emitter_t" } } }, { "tag": "parameter", "name": "canonical", "type": { "tag": ":int" } }], "return-type": { "tag": ":void" } },
506
+{ "tag": "function", "name": "yaml_emitter_set_indent", "location": "/usr/include/yaml.h:1861:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "emitter", "type": { "tag": ":pointer", "type": { "tag": "yaml_emitter_t" } } }, { "tag": "parameter", "name": "indent", "type": { "tag": ":int" } }], "return-type": { "tag": ":void" } },
507
+{ "tag": "function", "name": "yaml_emitter_set_width", "location": "/usr/include/yaml.h:1871:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "emitter", "type": { "tag": ":pointer", "type": { "tag": "yaml_emitter_t" } } }, { "tag": "parameter", "name": "width", "type": { "tag": ":int" } }], "return-type": { "tag": ":void" } },
508
+{ "tag": "function", "name": "yaml_emitter_set_unicode", "location": "/usr/include/yaml.h:1881:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "emitter", "type": { "tag": ":pointer", "type": { "tag": "yaml_emitter_t" } } }, { "tag": "parameter", "name": "unicode", "type": { "tag": ":int" } }], "return-type": { "tag": ":void" } },
509
+{ "tag": "function", "name": "yaml_emitter_set_break", "location": "/usr/include/yaml.h:1891:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "emitter", "type": { "tag": ":pointer", "type": { "tag": "yaml_emitter_t" } } }, { "tag": "parameter", "name": "line_break", "type": { "tag": "yaml_break_t" } }], "return-type": { "tag": ":void" } },
510
+{ "tag": "function", "name": "yaml_emitter_emit", "location": "/usr/include/yaml.h:1908:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "emitter", "type": { "tag": ":pointer", "type": { "tag": "yaml_emitter_t" } } }, { "tag": "parameter", "name": "event", "type": { "tag": ":pointer", "type": { "tag": "yaml_event_t" } } }], "return-type": { "tag": ":int" } },
511
+{ "tag": "function", "name": "yaml_emitter_open", "location": "/usr/include/yaml.h:1921:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "emitter", "type": { "tag": ":pointer", "type": { "tag": "yaml_emitter_t" } } }], "return-type": { "tag": ":int" } },
512
+{ "tag": "function", "name": "yaml_emitter_close", "location": "/usr/include/yaml.h:1934:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "emitter", "type": { "tag": ":pointer", "type": { "tag": "yaml_emitter_t" } } }], "return-type": { "tag": ":int" } },
513
+{ "tag": "function", "name": "yaml_emitter_dump", "location": "/usr/include/yaml.h:1951:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "emitter", "type": { "tag": ":pointer", "type": { "tag": "yaml_emitter_t" } } }, { "tag": "parameter", "name": "document", "type": { "tag": ":pointer", "type": { "tag": "yaml_document_t" } } }], "return-type": { "tag": ":int" } },
514
+{ "tag": "function", "name": "yaml_emitter_flush", "location": "/usr/include/yaml.h:1962:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "emitter", "type": { "tag": ":pointer", "type": { "tag": "yaml_emitter_t" } } }], "return-type": { "tag": ":int" } }
515
+]
0 516
new file mode 100755
... ...
@@ -0,0 +1,676 @@
1
+/* /usr/include/bits/sigset.h:21:10 */
2
+#define _SIGSET_H_types 1
3
+
4
+/* /usr/include/bits/sigset.h:27:10 */
5
+#define _SIGSET_NWORDS (1024/(8*sizeof(unsignedlongint)))
6
+
7
+/* /usr/include/bits/typesizes.h:79:10 */
8
+#define __OFF_T_MATCHES_OFF64_T 1
9
+
10
+/* /usr/include/sys/select.h:59:9 */
11
+#define __NFDBITS (8*(int)sizeof(__fd_mask))
12
+
13
+/* /usr/include/bits/typesizes.h:82:10 */
14
+#define __INO_T_MATCHES_INO64_T 1
15
+
16
+/* /usr/include/bits/typesizes.h:86:9 */
17
+#define __FD_SETSIZE 1024
18
+
19
+/* /usr/include/stdio.h:121:9 */
20
+#define _IOLBF 1
21
+
22
+/* /usr/include/bits/time.h:25:11 */
23
+#define _STRUCT_TIMEVAL 1
24
+
25
+/* /usr/include/stdio.h:120:9 */
26
+#define _IOFBF 0
27
+
28
+/* /usr/include/sys/sysmacros.h:21:9 */
29
+#define _SYS_SYSMACROS_H 1
30
+
31
+/* /usr/include/bits/waitflags.h:37:9 */
32
+#define __WCLONE 0x80000000
33
+
34
+/* /usr/include/stdlib.h:37:9 */
35
+#define _STDLIB_H 1
36
+
37
+/* /usr/include/bits/waitflags.h:34:9 */
38
+#define __WNOTHREAD 0x20000000
39
+
40
+/* /usr/include/bits/waitflags.h:36:9 */
41
+#define __WALL 0x40000000
42
+
43
+/* /usr/include/bits/waitflags.h:32:9 */
44
+#define WNOWAIT 0x01000000
45
+
46
+/* /usr/include/bits/waitflags.h:31:9 */
47
+#define WCONTINUED 8
48
+
49
+/* /usr/include/features.h:19:9 */
50
+#define _FEATURES_H 1
51
+
52
+/* /usr/include/bits/waitstatus.h:59:9 */
53
+#define __WCOREFLAG 0x80
54
+
55
+/* /usr/include/bits/waitstatus.h:58:9 */
56
+#define __W_CONTINUED 0xffff
57
+
58
+/* /usr/include/bits/typesizes.h:24:9 */
59
+#define _BITS_TYPESIZES_H 1
60
+
61
+/* /usr/include/bits/pthreadtypes.h:19:9 */
62
+#define _BITS_PTHREADTYPES_H 1
63
+
64
+/* /usr/include/bits/waitflags.h:30:9 */
65
+#define WEXITED 4
66
+
67
+/* /usr/include/bits/waitflags.h:26:9 */
68
+#define WUNTRACED 2
69
+
70
+/* /usr/include/bits/waitflags.h:29:9 */
71
+#define WSTOPPED 2
72
+
73
+/* /usr/include/bits/waitflags.h:25:9 */
74
+#define WNOHANG 1
75
+
76
+/* /usr/include/features.h:189:10 */
77
+#define _SVID_SOURCE 1
78
+
79
+/* /usr/include/bits/pthreadtypes.h:26:11 */
80
+#define __SIZEOF_PTHREAD_MUTEX_T 40
81
+
82
+/* /usr/include/_G_config.h:49:9 */
83
+#define _G_HAVE_MREMAP 1
84
+
85
+/* /usr/include/features.h:231:11 */
86
+#define _POSIX_C_SOURCE 200809L
87
+
88
+/* /usr/include/features.h:223:10 */
89
+#define _POSIX_SOURCE 1
90
+
91
+/* /usr/include/bits/pthreadtypes.h:25:11 */
92
+#define __SIZEOF_PTHREAD_ATTR_T 56
93
+
94
+/* /usr/include/features.h:188:10 */
95
+#define _BSD_SOURCE 1
96
+
97
+/* /usr/include/bits/pthreadtypes.h:27:11 */
98
+#define __SIZEOF_PTHREAD_MUTEXATTR_T 4
99
+
100
+/* /usr/include/bits/types.h:24:9 */
101
+#define _BITS_TYPES_H 1
102
+
103
+/* /usr/include/bits/byteswap.h:24:9 */
104
+#define _BITS_BYTESWAP_H 1
105
+
106
+/* /usr/include/features.h:233:10 */
107
+#define __USE_POSIX_IMPLICITLY 1
108
+
109
+/* /usr/include/features.h:263:10 */
110
+#define _ATFILE_SOURCE 1
111
+
112
+/* /usr/include/stdc-predef.h:37:9 */
113
+#define __STDC_NO_THREADS__ 1
114
+
115
+/* /usr/include/stdc-predef.h:34:9 */
116
+#define __STDC_ISO_10646__ 201103L
117
+
118
+/* /usr/include/_G_config.h:56:9 */
119
+#define _G_BUFSIZ 8192
120
+
121
+/* /usr/include/bits/predefs.h:28:9 */
122
+#define __STDC_IEC_559_COMPLEX__ 1
123
+
124
+/* /usr/include/bits/predefs.h:27:9 */
125
+#define __STDC_IEC_559__ 1
126
+
127
+/* /usr/include/_G_config.h:51:9 */
128
+#define _G_IO_IO_FILE_VERSION 0x20001
129
+
130
+/* /usr/include/stdc-predef.h:19:9 */
131
+#define _STDC_PREDEF_H 1
132
+
133
+/* /usr/include/features.h:365:10 */
134
+#define __GLIBC_HAVE_LONG_LONG 1
135
+
136
+/* /usr/include/sys/types.h:211:9 */
137
+#define __BIT_TYPES_DEFINED__ 1
138
+
139
+/* /usr/include/_G_config.h:48:9 */
140
+#define _G_HAVE_MMAP 1
141
+
142
+/* /usr/include/features.h:355:9 */
143
+#define __GLIBC_MINOR__ 17
144
+
145
+/* /usr/include/features.h:354:9 */
146
+#define __GLIBC__ 2
147
+
148
+/* /usr/include/sys/select.h:22:9 */
149
+#define _SYS_SELECT_H 1
150
+
151
+/* /usr/include/features.h:350:9 */
152
+#define __GNU_LIBRARY__ 6
153
+
154
+/* /usr/include/time.h:86:10 */
155
+#define __clockid_t_defined 1
156
+
157
+/* /usr/include/bits/select.h:28:11 */
158
+#define __FD_ZERO_STOS "stosq"
159
+
160
+/* /usr/include/features.h:241:10 */
161
+#define __USE_POSIX2 1
162
+
163
+/* /usr/include/features.h:245:10 */
164
+#define __USE_POSIX199309 1
165
+
166
+/* /usr/include/features.h:255:10 */
167
+#define __USE_ISOC95 1
168
+
169
+/* /usr/include/bits/wordsize.h:12:10 */
170
+#define __SYSCALL_WORDSIZE 64
171
+
172
+/* /usr/include/bits/wordsize.h:10:10 */
173
+#define __WORDSIZE_TIME64_COMPAT32 1
174
+
175
+/* /usr/include/time.h:69:10 */
176
+#define __time_t_defined 1
177
+
178
+/* /usr/include/features.h:237:10 */
179
+#define __USE_POSIX 1
180
+
181
+/* /usr/include/features.h:257:10 */
182
+#define __USE_ISOC99 1
183
+
184
+/* /usr/include/time.h:114:10 */
185
+#define __timespec_defined 1
186
+
187
+/* /usr/include/bits/wordsize.h:4:10 */
188
+#define __WORDSIZE 64
189
+
190
+/* /usr/include/time.h:98:10 */
191
+#define __timer_t_defined 1
192
+
193
+/* /usr/include/features.h:261:10 */
194
+#define __USE_XOPEN2K8 1
195
+
196
+/* /usr/include/yaml.h:665:9 */
197
+#define YAML_NULL_TAG "tag:yaml.org,2002:null"
198
+
199
+/* /usr/include/features.h:253:10 */
200
+#define __USE_XOPEN2K 1
201
+
202
+/* /usr/include/stdio.h:26:10 */
203
+#define _STDIO_H 1
204
+
205
+/* /usr/include/yaml.h:667:9 */
206
+#define YAML_BOOL_TAG "tag:yaml.org,2002:bool"
207
+
208
+/* /usr/include/yaml.h:671:9 */
209
+#define YAML_INT_TAG "tag:yaml.org,2002:int"
210
+
211
+/* /usr/include/yaml.h:673:9 */
212
+#define YAML_FLOAT_TAG "tag:yaml.org,2002:float"
213
+
214
+/* /usr/include/yaml.h:669:9 */
215
+#define YAML_STR_TAG "tag:yaml.org,2002:str"
216
+
217
+/* /usr/include/features.h:249:10 */
218
+#define __USE_POSIX199506 1
219
+
220
+/* /usr/include/yaml.h:678:9 */
221
+#define YAML_SEQ_TAG "tag:yaml.org,2002:seq"
222
+
223
+/* /usr/include/features.h:305:10 */
224
+#define __USE_MISC 1
225
+
226
+/* /usr/include/features.h:317:10 */
227
+#define __USE_ATFILE 1
228
+
229
+/* /usr/include/stdio.h:56:10 */
230
+#define __FILE_defined 1
231
+
232
+/* /usr/include/stdio.h:66:10 */
233
+#define ____FILE_defined 1
234
+
235
+/* /usr/include/features.h:313:10 */
236
+#define __USE_SVID 1
237
+
238
+/* /usr/include/features.h:309:10 */
239
+#define __USE_BSD 1
240
+
241
+/* /usr/include/yaml.h:680:9 */
242
+#define YAML_MAP_TAG "tag:yaml.org,2002:map"
243
+
244
+/* /usr/include/xlocale.h:21:9 */
245
+#define _XLOCALE_H 1
246
+
247
+/* /usr/include/features.h:133:9 */
248
+#define __USE_ANSI 1
249
+
250
+/* /usr/include/wchar.h:80:10 */
251
+#define ____mbstate_t_defined 1
252
+
253
+/* /usr/include/time.h:53:10 */
254
+#define __clock_t_defined 1
255
+
256
+/* /usr/include/features.h:336:10 */
257
+#define __USE_FORTIFY_LEVEL 0
258
+
259
+/* /usr/include/_G_config.h:5:9 */
260
+#define _G_config_h 1
261
+
262
+/* /usr/include/libio.h:142:9 */
263
+#define _IO_BOOLALPHA 0200000
264
+
265
+/* /usr/include/string.h:23:9 */
266
+#define _STRING_H 1
267
+
268
+/* /usr/include/libio.h:140:9 */
269
+#define _IO_STDIO 040000
270
+
271
+/* /usr/include/libio.h:141:9 */
272
+#define _IO_DONT_CLOSE 0100000
273
+
274
+/* /usr/include/yaml.h:675:9 */
275
+#define YAML_TIMESTAMP_TAG "tag:yaml.org,2002:timestamp"
276
+
277
+/* /usr/include/sys/cdefs.h:20:9 */
278
+#define _SYS_CDEFS_H 1
279
+
280
+/* /usr/include/bits/pthreadtypes.h:106:10 */
281
+#define __PTHREAD_MUTEX_HAVE_PREV 1
282
+
283
+/* /usr/include/bits/pthreadtypes.h:182:10 */
284
+#define __PTHREAD_RWLOCK_INT_FLAGS_SHARED 1
285
+
286
+/* /usr/include/bits/pthreadtypes.h:70:10 */
287
+#define __have_pthread_attr_t 1
288
+
289
+/* /usr/include/stdio.h:122:9 */
290
+#define _IONBF 2
291
+
292
+/* /usr/include/stdio.h:140:9 */
293
+#define SEEK_SET 0
294
+
295
+/* /usr/include/stdio.h:141:9 */
296
+#define SEEK_CUR 1
297
+
298
+/* /usr/include/bits/pthreadtypes.h:32:11 */
299
+#define __SIZEOF_PTHREAD_BARRIER_T 32
300
+
301
+/* /usr/include/bits/pthreadtypes.h:33:11 */
302
+#define __SIZEOF_PTHREAD_BARRIERATTR_T 4
303
+
304
+/* /usr/include/stdio.h:142:9 */
305
+#define SEEK_END 2
306
+
307
+/* /usr/include/bits/pthreadtypes.h:28:11 */
308
+#define __SIZEOF_PTHREAD_COND_T 48
309
+
310
+/* /usr/include/bits/pthreadtypes.h:29:11 */
311
+#define __SIZEOF_PTHREAD_CONDATTR_T 4
312
+
313
+/* /usr/include/sys/types.h:23:9 */
314
+#define _SYS_TYPES_H 1
315
+
316
+/* /usr/include/bits/stdio_lim.h:24:10 */
317
+#define TMP_MAX 238328
318
+
319
+/* /usr/include/bits/pthreadtypes.h:30:11 */
320
+#define __SIZEOF_PTHREAD_RWLOCK_T 56
321
+
322
+/* /usr/include/bits/stdio_lim.h:23:10 */
323
+#define L_tmpnam 20
324
+
325
+/* /usr/include/bits/pthreadtypes.h:31:11 */
326
+#define __SIZEOF_PTHREAD_RWLOCKATTR_T 8
327
+
328
+/* /usr/include/stdlib.h:128:9 */
329
+#define RAND_MAX 2147483647
330
+
331
+/* /usr/include/bits/stdio_lim.h:25:10 */
332
+#define FILENAME_MAX 4096
333
+
334
+/* /usr/include/stdlib.h:133:9 */
335
+#define EXIT_FAILURE 1
336
+
337
+/* /usr/include/stdlib.h:122:10 */
338
+#define __lldiv_t_defined 1
339
+
340
+/* /usr/include/bits/stdio_lim.h:28:11 */
341
+#define L_ctermid 9
342
+
343
+/* /usr/include/alloca.h:19:9 */
344
+#define _ALLOCA_H 1
345
+
346
+/* /usr/include/stdio.h:151:10 */
347
+#define P_tmpdir "/tmp"
348
+
349
+/* /usr/include/bits/stdio_lim.h:37:10 */
350
+#define FOPEN_MAX 16
351
+
352
+/* /usr/include/stdlib.h:110:10 */
353
+#define __ldiv_t_defined 1
354
+
355
+/* /usr/include/libio.h:60:9 */
356
+#define _IO_UNIFIED_JUMPTABLES 1
357
+
358
+/* /usr/include/libio.h:63:10 */
359
+#define EOF (-1)
360
+
361
+/* /usr/include/endian.h:19:9 */
362
+#define _ENDIAN_H 1
363
+
364
+/* /usr/include/libio.h:78:9 */
365
+#define _IOS_INPUT 1
366
+
367
+/* /usr/include/endian.h:31:9 */
368
+#define __LITTLE_ENDIAN 1234
369
+
370
+/* /usr/include/endian.h:32:9 */
371
+#define __BIG_ENDIAN 4321
372
+
373
+/* /usr/include/libio.h:81:9 */
374
+#define _IOS_APPEND 8
375
+
376
+/* /usr/include/libio.h:79:9 */
377
+#define _IOS_OUTPUT 2
378
+
379
+/* /usr/include/endian.h:33:9 */
380
+#define __PDP_ENDIAN 3412
381
+
382
+/* /usr/include/libio.h:82:9 */
383
+#define _IOS_TRUNC 16
384
+
385
+/* /usr/include/libio.h:80:9 */
386
+#define _IOS_ATEND 4
387
+
388
+/* /usr/include/libio.h:83:9 */
389
+#define _IOS_NOCREATE 32
390
+
391
+/* /usr/include/stdlib.h:134:9 */
392
+#define EXIT_SUCCESS 0
393
+
394
+/* /usr/include/libio.h:84:9 */
395
+#define _IOS_NOREPLACE 64
396
+
397
+/* /usr/include/libio.h:85:9 */
398
+#define _IOS_BIN 128
399
+
400
+/* /usr/include/libio.h:94:9 */
401
+#define _OLD_STDIO_MAGIC 0xFABC0000
402
+
403
+/* /usr/include/libio.h:93:9 */
404
+#define _IO_MAGIC 0xFBAD0000
405
+
406
+/* /usr/include/libio.h:96:9 */
407
+#define _IO_USER_BUF 1
408
+
409
+/* /usr/include/libio.h:97:9 */
410
+#define _IO_UNBUFFERED 2
411
+
412
+/* /usr/include/libio.h:95:9 */
413
+#define _IO_MAGIC_MASK 0xFFFF0000
414
+
415
+/* /usr/include/libio.h:99:9 */
416
+#define _IO_NO_WRITES 8
417
+
418
+/* /usr/include/libio.h:98:9 */
419
+#define _IO_NO_READS 4
420
+
421
+/* /usr/include/libio.h:101:9 */
422
+#define _IO_ERR_SEEN 0x20
423
+
424
+/* /usr/include/libio.h:100:9 */
425
+#define _IO_EOF_SEEN 0x10
426
+
427
+/* /usr/include/libio.h:103:9 */
428
+#define _IO_LINKED 0x80
429
+
430
+/* /usr/include/libio.h:102:9 */
431
+#define _IO_DELETE_DONT_CLOSE 0x40
432
+
433
+/* /usr/include/libio.h:105:9 */
434
+#define _IO_LINE_BUF 0x200
435
+
436
+/* /usr/include/libio.h:104:9 */
437
+#define _IO_IN_BACKUP 0x100
438
+
439
+/* /usr/include/libio.h:106:9 */
440
+#define _IO_TIED_PUT_GET 0x400
441
+
442
+/* /usr/include/libio.h:107:9 */
443
+#define _IO_CURRENTLY_PUTTING 0x800
444
+
445
+/* /usr/include/libio.h:110:9 */
446
+#define _IO_BAD_SEEN 0x4000
447
+
448
+/* /usr/include/libio.h:109:9 */
449
+#define _IO_IS_FILEBUF 0x2000
450
+
451
+/* /usr/include/libio.h:108:9 */
452
+#define _IO_IS_APPENDING 0x1000
453
+
454
+/* /usr/include/libio.h:113:9 */
455
+#define _IO_FLAGS2_MMAP 1
456
+
457
+/* /usr/include/libio.h:111:9 */
458
+#define _IO_USER_LOCK 0x8000
459
+
460
+/* /usr/include/libio.h:118:9 */
461
+#define _IO_FLAGS2_USER_WBUF 8
462
+
463
+/* /usr/include/libio.h:114:9 */
464
+#define _IO_FLAGS2_NOTCANCEL 2
465
+
466
+/* /usr/include/libio.h:127:9 */
467
+#define _IO_LEFT 02
468
+
469
+/* /usr/include/libio.h:126:9 */
470
+#define _IO_SKIPWS 01
471
+
472
+/* /usr/include/libio.h:130:9 */
473
+#define _IO_DEC 020
474
+
475
+/* /usr/include/libio.h:129:9 */
476
+#define _IO_INTERNAL 010
477
+
478
+/* /usr/include/libio.h:128:9 */
479
+#define _IO_RIGHT 04
480
+
481
+/* /usr/include/libio.h:132:9 */
482
+#define _IO_HEX 0100
483
+
484
+/* /usr/include/libio.h:131:9 */
485
+#define _IO_OCT 040
486
+
487
+/* /usr/include/libio.h:135:9 */
488
+#define _IO_UPPERCASE 01000
489
+
490
+/* /usr/include/libio.h:134:9 */
491
+#define _IO_SHOWPOINT 0400
492
+
493
+/* /usr/include/libio.h:133:9 */
494
+#define _IO_SHOWBASE 0200
495
+
496
+/* /usr/include/libio.h:137:9 */
497
+#define _IO_SCIENTIFIC 04000
498
+
499
+/* /usr/include/libio.h:136:9 */
500
+#define _IO_SHOWPOS 02000
501
+
502
+/* /usr/include/libio.h:139:9 */
503
+#define _IO_UNITBUF 020000
504
+
505
+/* /usr/include/libio.h:138:9 */
506
+#define _IO_FIXED 010000
507
+
508
+const __int128_t __c2ffi__SIGSET_H_types = _SIGSET_H_types;
509
+const __int128_t __c2ffi__SIGSET_NWORDS = _SIGSET_NWORDS;
510
+const __int128_t __c2ffi___OFF_T_MATCHES_OFF64_T = __OFF_T_MATCHES_OFF64_T;
511
+const __int128_t __c2ffi___NFDBITS = __NFDBITS;
512
+const __int128_t __c2ffi___INO_T_MATCHES_INO64_T = __INO_T_MATCHES_INO64_T;
513
+const __int128_t __c2ffi___FD_SETSIZE = __FD_SETSIZE;
514
+const __int128_t __c2ffi__IOLBF = _IOLBF;
515
+const __int128_t __c2ffi__STRUCT_TIMEVAL = _STRUCT_TIMEVAL;
516
+const __int128_t __c2ffi__IOFBF = _IOFBF;
517
+const __int128_t __c2ffi__SYS_SYSMACROS_H = _SYS_SYSMACROS_H;
518
+const __int128_t __c2ffi___WCLONE = __WCLONE;
519
+const __int128_t __c2ffi__STDLIB_H = _STDLIB_H;
520
+const __int128_t __c2ffi___WNOTHREAD = __WNOTHREAD;
521
+const __int128_t __c2ffi___WALL = __WALL;
522
+const __int128_t __c2ffi_WNOWAIT = WNOWAIT;
523
+const __int128_t __c2ffi_WCONTINUED = WCONTINUED;
524
+const __int128_t __c2ffi__FEATURES_H = _FEATURES_H;
525
+const __int128_t __c2ffi___WCOREFLAG = __WCOREFLAG;
526
+const __int128_t __c2ffi___W_CONTINUED = __W_CONTINUED;
527
+const __int128_t __c2ffi__BITS_TYPESIZES_H = _BITS_TYPESIZES_H;
528
+const __int128_t __c2ffi__BITS_PTHREADTYPES_H = _BITS_PTHREADTYPES_H;
529
+const __int128_t __c2ffi_WEXITED = WEXITED;
530
+const __int128_t __c2ffi_WUNTRACED = WUNTRACED;
531
+const __int128_t __c2ffi_WSTOPPED = WSTOPPED;
532
+const __int128_t __c2ffi_WNOHANG = WNOHANG;
533
+const __int128_t __c2ffi__SVID_SOURCE = _SVID_SOURCE;
534
+const __int128_t __c2ffi___SIZEOF_PTHREAD_MUTEX_T = __SIZEOF_PTHREAD_MUTEX_T;
535
+const __int128_t __c2ffi__G_HAVE_MREMAP = _G_HAVE_MREMAP;
536
+const __int128_t __c2ffi__POSIX_C_SOURCE = _POSIX_C_SOURCE;
537
+const __int128_t __c2ffi__POSIX_SOURCE = _POSIX_SOURCE;
538
+const __int128_t __c2ffi___SIZEOF_PTHREAD_ATTR_T = __SIZEOF_PTHREAD_ATTR_T;
539
+const __int128_t __c2ffi__BSD_SOURCE = _BSD_SOURCE;
540
+const __int128_t __c2ffi___SIZEOF_PTHREAD_MUTEXATTR_T = __SIZEOF_PTHREAD_MUTEXATTR_T;
541
+const __int128_t __c2ffi__BITS_TYPES_H = _BITS_TYPES_H;
542
+const __int128_t __c2ffi__BITS_BYTESWAP_H = _BITS_BYTESWAP_H;
543
+const __int128_t __c2ffi___USE_POSIX_IMPLICITLY = __USE_POSIX_IMPLICITLY;
544
+const __int128_t __c2ffi__ATFILE_SOURCE = _ATFILE_SOURCE;
545
+const __int128_t __c2ffi___STDC_NO_THREADS__ = __STDC_NO_THREADS__;
546
+const __int128_t __c2ffi___STDC_ISO_10646__ = __STDC_ISO_10646__;
547
+const __int128_t __c2ffi__G_BUFSIZ = _G_BUFSIZ;
548
+const __int128_t __c2ffi___STDC_IEC_559_COMPLEX__ = __STDC_IEC_559_COMPLEX__;
549
+const __int128_t __c2ffi___STDC_IEC_559__ = __STDC_IEC_559__;
550
+const __int128_t __c2ffi__G_IO_IO_FILE_VERSION = _G_IO_IO_FILE_VERSION;
551
+const __int128_t __c2ffi__STDC_PREDEF_H = _STDC_PREDEF_H;
552
+const __int128_t __c2ffi___GLIBC_HAVE_LONG_LONG = __GLIBC_HAVE_LONG_LONG;
553
+const __int128_t __c2ffi___BIT_TYPES_DEFINED__ = __BIT_TYPES_DEFINED__;
554
+const __int128_t __c2ffi__G_HAVE_MMAP = _G_HAVE_MMAP;
555
+const __int128_t __c2ffi___GLIBC_MINOR__ = __GLIBC_MINOR__;
556
+const __int128_t __c2ffi___GLIBC__ = __GLIBC__;
557
+const __int128_t __c2ffi__SYS_SELECT_H = _SYS_SELECT_H;
558
+const __int128_t __c2ffi___GNU_LIBRARY__ = __GNU_LIBRARY__;
559
+const __int128_t __c2ffi___clockid_t_defined = __clockid_t_defined;
560
+const char* __c2ffi___FD_ZERO_STOS = __FD_ZERO_STOS;
561
+const __int128_t __c2ffi___USE_POSIX2 = __USE_POSIX2;
562
+const __int128_t __c2ffi___USE_POSIX199309 = __USE_POSIX199309;
563
+const __int128_t __c2ffi___USE_ISOC95 = __USE_ISOC95;
564
+const __int128_t __c2ffi___SYSCALL_WORDSIZE = __SYSCALL_WORDSIZE;
565
+const __int128_t __c2ffi___WORDSIZE_TIME64_COMPAT32 = __WORDSIZE_TIME64_COMPAT32;
566
+const __int128_t __c2ffi___time_t_defined = __time_t_defined;
567
+const __int128_t __c2ffi___USE_POSIX = __USE_POSIX;
568
+const __int128_t __c2ffi___USE_ISOC99 = __USE_ISOC99;
569
+const __int128_t __c2ffi___timespec_defined = __timespec_defined;
570
+const __int128_t __c2ffi___WORDSIZE = __WORDSIZE;
571
+const __int128_t __c2ffi___timer_t_defined = __timer_t_defined;
572
+const __int128_t __c2ffi___USE_XOPEN2K8 = __USE_XOPEN2K8;
573
+const char* __c2ffi_YAML_NULL_TAG = YAML_NULL_TAG;
574
+const __int128_t __c2ffi___USE_XOPEN2K = __USE_XOPEN2K;
575
+const __int128_t __c2ffi__STDIO_H = _STDIO_H;
576
+const char* __c2ffi_YAML_BOOL_TAG = YAML_BOOL_TAG;
577
+const char* __c2ffi_YAML_INT_TAG = YAML_INT_TAG;
578
+const char* __c2ffi_YAML_FLOAT_TAG = YAML_FLOAT_TAG;
579
+const char* __c2ffi_YAML_STR_TAG = YAML_STR_TAG;
580
+const __int128_t __c2ffi___USE_POSIX199506 = __USE_POSIX199506;
581
+const char* __c2ffi_YAML_SEQ_TAG = YAML_SEQ_TAG;
582
+const __int128_t __c2ffi___USE_MISC = __USE_MISC;
583
+const __int128_t __c2ffi___USE_ATFILE = __USE_ATFILE;
584
+const __int128_t __c2ffi___FILE_defined = __FILE_defined;
585
+const __int128_t __c2ffi_____FILE_defined = ____FILE_defined;
586
+const __int128_t __c2ffi___USE_SVID = __USE_SVID;
587
+const __int128_t __c2ffi___USE_BSD = __USE_BSD;
588
+const char* __c2ffi_YAML_MAP_TAG = YAML_MAP_TAG;
589
+const __int128_t __c2ffi__XLOCALE_H = _XLOCALE_H;
590
+const __int128_t __c2ffi___USE_ANSI = __USE_ANSI;
591
+const __int128_t __c2ffi_____mbstate_t_defined = ____mbstate_t_defined;
592
+const __int128_t __c2ffi___clock_t_defined = __clock_t_defined;
593
+const __int128_t __c2ffi___USE_FORTIFY_LEVEL = __USE_FORTIFY_LEVEL;
594
+const __int128_t __c2ffi__G_config_h = _G_config_h;
595
+const __int128_t __c2ffi__IO_BOOLALPHA = _IO_BOOLALPHA;
596
+const __int128_t __c2ffi__STRING_H = _STRING_H;
597
+const __int128_t __c2ffi__IO_STDIO = _IO_STDIO;
598
+const __int128_t __c2ffi__IO_DONT_CLOSE = _IO_DONT_CLOSE;
599
+const char* __c2ffi_YAML_TIMESTAMP_TAG = YAML_TIMESTAMP_TAG;
600
+const __int128_t __c2ffi__SYS_CDEFS_H = _SYS_CDEFS_H;
601
+const __int128_t __c2ffi___PTHREAD_MUTEX_HAVE_PREV = __PTHREAD_MUTEX_HAVE_PREV;
602
+const __int128_t __c2ffi___PTHREAD_RWLOCK_INT_FLAGS_SHARED = __PTHREAD_RWLOCK_INT_FLAGS_SHARED;
603
+const __int128_t __c2ffi___have_pthread_attr_t = __have_pthread_attr_t;
604
+const __int128_t __c2ffi__IONBF = _IONBF;
605
+const __int128_t __c2ffi_SEEK_SET = SEEK_SET;
606
+const __int128_t __c2ffi_SEEK_CUR = SEEK_CUR;
607
+const __int128_t __c2ffi___SIZEOF_PTHREAD_BARRIER_T = __SIZEOF_PTHREAD_BARRIER_T;
608
+const __int128_t __c2ffi___SIZEOF_PTHREAD_BARRIERATTR_T = __SIZEOF_PTHREAD_BARRIERATTR_T;
609
+const __int128_t __c2ffi_SEEK_END = SEEK_END;
610
+const __int128_t __c2ffi___SIZEOF_PTHREAD_COND_T = __SIZEOF_PTHREAD_COND_T;
611
+const __int128_t __c2ffi___SIZEOF_PTHREAD_CONDATTR_T = __SIZEOF_PTHREAD_CONDATTR_T;
612
+const __int128_t __c2ffi__SYS_TYPES_H = _SYS_TYPES_H;
613
+const __int128_t __c2ffi_TMP_MAX = TMP_MAX;
614
+const __int128_t __c2ffi___SIZEOF_PTHREAD_RWLOCK_T = __SIZEOF_PTHREAD_RWLOCK_T;
615
+const __int128_t __c2ffi_L_tmpnam = L_tmpnam;
616
+const __int128_t __c2ffi___SIZEOF_PTHREAD_RWLOCKATTR_T = __SIZEOF_PTHREAD_RWLOCKATTR_T;
617
+const __int128_t __c2ffi_RAND_MAX = RAND_MAX;
618
+const __int128_t __c2ffi_FILENAME_MAX = FILENAME_MAX;
619
+const __int128_t __c2ffi_EXIT_FAILURE = EXIT_FAILURE;
620
+const __int128_t __c2ffi___lldiv_t_defined = __lldiv_t_defined;
621
+const __int128_t __c2ffi_L_ctermid = L_ctermid;
622
+const __int128_t __c2ffi__ALLOCA_H = _ALLOCA_H;
623
+const char* __c2ffi_P_tmpdir = P_tmpdir;
624
+const __int128_t __c2ffi_FOPEN_MAX = FOPEN_MAX;
625
+const __int128_t __c2ffi___ldiv_t_defined = __ldiv_t_defined;
626
+const __int128_t __c2ffi__IO_UNIFIED_JUMPTABLES = _IO_UNIFIED_JUMPTABLES;
627
+const __int128_t __c2ffi_EOF = EOF;
628
+const __int128_t __c2ffi__ENDIAN_H = _ENDIAN_H;
629
+const __int128_t __c2ffi__IOS_INPUT = _IOS_INPUT;
630
+const __int128_t __c2ffi___LITTLE_ENDIAN = __LITTLE_ENDIAN;
631
+const __int128_t __c2ffi___BIG_ENDIAN = __BIG_ENDIAN;
632
+const __int128_t __c2ffi__IOS_APPEND = _IOS_APPEND;
633
+const __int128_t __c2ffi__IOS_OUTPUT = _IOS_OUTPUT;
634
+const __int128_t __c2ffi___PDP_ENDIAN = __PDP_ENDIAN;
635
+const __int128_t __c2ffi__IOS_TRUNC = _IOS_TRUNC;
636
+const __int128_t __c2ffi__IOS_ATEND = _IOS_ATEND;
637
+const __int128_t __c2ffi__IOS_NOCREATE = _IOS_NOCREATE;
638
+const __int128_t __c2ffi_EXIT_SUCCESS = EXIT_SUCCESS;
639
+const __int128_t __c2ffi__IOS_NOREPLACE = _IOS_NOREPLACE;
640
+const __int128_t __c2ffi__IOS_BIN = _IOS_BIN;
641
+const __int128_t __c2ffi__OLD_STDIO_MAGIC = _OLD_STDIO_MAGIC;
642
+const __int128_t __c2ffi__IO_MAGIC = _IO_MAGIC;
643
+const __int128_t __c2ffi__IO_USER_BUF = _IO_USER_BUF;
644
+const __int128_t __c2ffi__IO_UNBUFFERED = _IO_UNBUFFERED;
645
+const __int128_t __c2ffi__IO_MAGIC_MASK = _IO_MAGIC_MASK;
646
+const __int128_t __c2ffi__IO_NO_WRITES = _IO_NO_WRITES;
647
+const __int128_t __c2ffi__IO_NO_READS = _IO_NO_READS;
648
+const __int128_t __c2ffi__IO_ERR_SEEN = _IO_ERR_SEEN;
649
+const __int128_t __c2ffi__IO_EOF_SEEN = _IO_EOF_SEEN;
650
+const __int128_t __c2ffi__IO_LINKED = _IO_LINKED;
651
+const __int128_t __c2ffi__IO_DELETE_DONT_CLOSE = _IO_DELETE_DONT_CLOSE;
652
+const __int128_t __c2ffi__IO_LINE_BUF = _IO_LINE_BUF;
653
+const __int128_t __c2ffi__IO_IN_BACKUP = _IO_IN_BACKUP;
654
+const __int128_t __c2ffi__IO_TIED_PUT_GET = _IO_TIED_PUT_GET;
655
+const __int128_t __c2ffi__IO_CURRENTLY_PUTTING = _IO_CURRENTLY_PUTTING;
656
+const __int128_t __c2ffi__IO_BAD_SEEN = _IO_BAD_SEEN;
657
+const __int128_t __c2ffi__IO_IS_FILEBUF = _IO_IS_FILEBUF;
658
+const __int128_t __c2ffi__IO_IS_APPENDING = _IO_IS_APPENDING;
659
+const __int128_t __c2ffi__IO_FLAGS2_MMAP = _IO_FLAGS2_MMAP;
660
+const __int128_t __c2ffi__IO_USER_LOCK = _IO_USER_LOCK;
661
+const __int128_t __c2ffi__IO_FLAGS2_USER_WBUF = _IO_FLAGS2_USER_WBUF;
662
+const __int128_t __c2ffi__IO_FLAGS2_NOTCANCEL = _IO_FLAGS2_NOTCANCEL;
663
+const __int128_t __c2ffi__IO_LEFT = _IO_LEFT;
664
+const __int128_t __c2ffi__IO_SKIPWS = _IO_SKIPWS;
665
+const __int128_t __c2ffi__IO_DEC = _IO_DEC;
666
+const __int128_t __c2ffi__IO_INTERNAL = _IO_INTERNAL;
667
+const __int128_t __c2ffi__IO_RIGHT = _IO_RIGHT;
668
+const __int128_t __c2ffi__IO_HEX = _IO_HEX;
669
+const __int128_t __c2ffi__IO_OCT = _IO_OCT;
670
+const __int128_t __c2ffi__IO_UPPERCASE = _IO_UPPERCASE;
671
+const __int128_t __c2ffi__IO_SHOWPOINT = _IO_SHOWPOINT;
672
+const __int128_t __c2ffi__IO_SHOWBASE = _IO_SHOWBASE;
673
+const __int128_t __c2ffi__IO_SCIENTIFIC = _IO_SCIENTIFIC;
674
+const __int128_t __c2ffi__IO_SHOWPOS = _IO_SHOWPOS;
675
+const __int128_t __c2ffi__IO_UNITBUF = _IO_UNITBUF;
676
+const __int128_t __c2ffi__IO_FIXED = _IO_FIXED;
0 677
new file mode 100755
... ...
@@ -0,0 +1,171 @@
1
+[
2
+{ "tag": "const", "name": "_SIGSET_H_types", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-linux-gnu.h:508:18", "type": { "tag": "__int128_t" }, "value": 1 },
3
+{ "tag": "const", "name": "_SIGSET_NWORDS", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-linux-gnu.h:509:18", "type": { "tag": "__int128_t" } },
4
+{ "tag": "const", "name": "__OFF_T_MATCHES_OFF64_T", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-linux-gnu.h:510:18", "type": { "tag": "__int128_t" }, "value": 1 },
5
+{ "tag": "const", "name": "__NFDBITS", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-linux-gnu.h:511:18", "type": { "tag": "__int128_t" } },
6
+{ "tag": "const", "name": "__INO_T_MATCHES_INO64_T", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-linux-gnu.h:512:18", "type": { "tag": "__int128_t" }, "value": 1 },
7
+{ "tag": "const", "name": "__FD_SETSIZE", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-linux-gnu.h:513:18", "type": { "tag": "__int128_t" }, "value": 1024 },
8
+{ "tag": "const", "name": "_IOLBF", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-linux-gnu.h:514:18", "type": { "tag": "__int128_t" }, "value": 1 },
9
+{ "tag": "const", "name": "_STRUCT_TIMEVAL", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-linux-gnu.h:515:18", "type": { "tag": "__int128_t" }, "value": 1 },
10
+{ "tag": "const", "name": "_IOFBF", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-linux-gnu.h:516:18", "type": { "tag": "__int128_t" }, "value": 0 },
11
+{ "tag": "const", "name": "_SYS_SYSMACROS_H", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-linux-gnu.h:517:18", "type": { "tag": "__int128_t" }, "value": 1 },
12
+{ "tag": "const", "name": "__WCLONE", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-linux-gnu.h:518:18", "type": { "tag": "__int128_t" }, "value": 2147483648 },
13
+{ "tag": "const", "name": "_STDLIB_H", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-linux-gnu.h:519:18", "type": { "tag": "__int128_t" }, "value": 1 },
14
+{ "tag": "const", "name": "__WNOTHREAD", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-linux-gnu.h:520:18", "type": { "tag": "__int128_t" }, "value": 536870912 },
15
+{ "tag": "const", "name": "__WALL", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-linux-gnu.h:521:18", "type": { "tag": "__int128_t" }, "value": 1073741824 },
16
+{ "tag": "const", "name": "WNOWAIT", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-linux-gnu.h:522:18", "type": { "tag": "__int128_t" }, "value": 16777216 },
17
+{ "tag": "const", "name": "WCONTINUED", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-linux-gnu.h:523:18", "type": { "tag": "__int128_t" }, "value": 8 },
18
+{ "tag": "const", "name": "_FEATURES_H", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-linux-gnu.h:524:18", "type": { "tag": "__int128_t" }, "value": 1 },
19
+{ "tag": "const", "name": "__WCOREFLAG", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-linux-gnu.h:525:18", "type": { "tag": "__int128_t" }, "value": 128 },
20
+{ "tag": "const", "name": "__W_CONTINUED", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-linux-gnu.h:526:18", "type": { "tag": "__int128_t" }, "value": 65535 },
21
+{ "tag": "const", "name": "_BITS_TYPESIZES_H", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-linux-gnu.h:527:18", "type": { "tag": "__int128_t" }, "value": 1 },
22
+{ "tag": "const", "name": "_BITS_PTHREADTYPES_H", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-linux-gnu.h:528:18", "type": { "tag": "__int128_t" }, "value": 1 },
23
+{ "tag": "const", "name": "WEXITED", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-linux-gnu.h:529:18", "type": { "tag": "__int128_t" }, "value": 4 },
24
+{ "tag": "const", "name": "WUNTRACED", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-linux-gnu.h:530:18", "type": { "tag": "__int128_t" }, "value": 2 },
25
+{ "tag": "const", "name": "WSTOPPED", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-linux-gnu.h:531:18", "type": { "tag": "__int128_t" }, "value": 2 },
26
+{ "tag": "const", "name": "WNOHANG", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-linux-gnu.h:532:18", "type": { "tag": "__int128_t" }, "value": 1 },
27
+{ "tag": "const", "name": "_SVID_SOURCE", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-linux-gnu.h:533:18", "type": { "tag": "__int128_t" }, "value": 1 },
28
+{ "tag": "const", "name": "__SIZEOF_PTHREAD_MUTEX_T", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-linux-gnu.h:534:18", "type": { "tag": "__int128_t" }, "value": 40 },
29
+{ "tag": "const", "name": "_G_HAVE_MREMAP", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-linux-gnu.h:535:18", "type": { "tag": "__int128_t" }, "value": 1 },
30
+{ "tag": "const", "name": "_POSIX_C_SOURCE", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-linux-gnu.h:536:18", "type": { "tag": "__int128_t" }, "value": 200809 },
31
+{ "tag": "const", "name": "_POSIX_SOURCE", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-linux-gnu.h:537:18", "type": { "tag": "__int128_t" }, "value": 1 },
32
+{ "tag": "const", "name": "__SIZEOF_PTHREAD_ATTR_T", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-linux-gnu.h:538:18", "type": { "tag": "__int128_t" }, "value": 56 },
33
+{ "tag": "const", "name": "_BSD_SOURCE", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-linux-gnu.h:539:18", "type": { "tag": "__int128_t" }, "value": 1 },
34
+{ "tag": "const", "name": "__SIZEOF_PTHREAD_MUTEXATTR_T", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-linux-gnu.h:540:18", "type": { "tag": "__int128_t" }, "value": 4 },
35
+{ "tag": "const", "name": "_BITS_TYPES_H", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-linux-gnu.h:541:18", "type": { "tag": "__int128_t" }, "value": 1 },
36
+{ "tag": "const", "name": "_BITS_BYTESWAP_H", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-linux-gnu.h:542:18", "type": { "tag": "__int128_t" }, "value": 1 },
37
+{ "tag": "const", "name": "__USE_POSIX_IMPLICITLY", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-linux-gnu.h:543:18", "type": { "tag": "__int128_t" }, "value": 1 },
38
+{ "tag": "const", "name": "_ATFILE_SOURCE", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-linux-gnu.h:544:18", "type": { "tag": "__int128_t" }, "value": 1 },
39
+{ "tag": "const", "name": "__STDC_NO_THREADS__", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-linux-gnu.h:545:18", "type": { "tag": "__int128_t" }, "value": 1 },
40
+{ "tag": "const", "name": "__STDC_ISO_10646__", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-linux-gnu.h:546:18", "type": { "tag": "__int128_t" }, "value": 201103 },
41
+{ "tag": "const", "name": "_G_BUFSIZ", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-linux-gnu.h:547:18", "type": { "tag": "__int128_t" }, "value": 8192 },
42
+{ "tag": "const", "name": "__STDC_IEC_559_COMPLEX__", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-linux-gnu.h:548:18", "type": { "tag": "__int128_t" }, "value": 1 },
43
+{ "tag": "const", "name": "__STDC_IEC_559__", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-linux-gnu.h:549:18", "type": { "tag": "__int128_t" }, "value": 1 },
44
+{ "tag": "const", "name": "_G_IO_IO_FILE_VERSION", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-linux-gnu.h:550:18", "type": { "tag": "__int128_t" }, "value": 131073 },
45
+{ "tag": "const", "name": "_STDC_PREDEF_H", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-linux-gnu.h:551:18", "type": { "tag": "__int128_t" }, "value": 1 },
46
+{ "tag": "const", "name": "__GLIBC_HAVE_LONG_LONG", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-linux-gnu.h:552:18", "type": { "tag": "__int128_t" }, "value": 1 },
47
+{ "tag": "const", "name": "__BIT_TYPES_DEFINED__", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-linux-gnu.h:553:18", "type": { "tag": "__int128_t" }, "value": 1 },
48
+{ "tag": "const", "name": "_G_HAVE_MMAP", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-linux-gnu.h:554:18", "type": { "tag": "__int128_t" }, "value": 1 },
49
+{ "tag": "const", "name": "__GLIBC_MINOR__", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-linux-gnu.h:555:18", "type": { "tag": "__int128_t" }, "value": 17 },
50
+{ "tag": "const", "name": "__GLIBC__", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-linux-gnu.h:556:18", "type": { "tag": "__int128_t" }, "value": 2 },
51
+{ "tag": "const", "name": "_SYS_SELECT_H", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-linux-gnu.h:557:18", "type": { "tag": "__int128_t" }, "value": 1 },
52
+{ "tag": "const", "name": "__GNU_LIBRARY__", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-linux-gnu.h:558:18", "type": { "tag": "__int128_t" }, "value": 6 },
53
+{ "tag": "const", "name": "__clockid_t_defined", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-linux-gnu.h:559:18", "type": { "tag": "__int128_t" }, "value": 1 },
54
+{ "tag": "const", "name": "__FD_ZERO_STOS", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-linux-gnu.h:560:13", "type": { "tag": ":pointer", "type": { "tag": ":char" } }, "value": "stosq" },
55
+{ "tag": "const", "name": "__USE_POSIX2", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-linux-gnu.h:561:18", "type": { "tag": "__int128_t" }, "value": 1 },
56
+{ "tag": "const", "name": "__USE_POSIX199309", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-linux-gnu.h:562:18", "type": { "tag": "__int128_t" }, "value": 1 },
57
+{ "tag": "const", "name": "__USE_ISOC95", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-linux-gnu.h:563:18", "type": { "tag": "__int128_t" }, "value": 1 },
58
+{ "tag": "const", "name": "__SYSCALL_WORDSIZE", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-linux-gnu.h:564:18", "type": { "tag": "__int128_t" }, "value": 64 },
59
+{ "tag": "const", "name": "__WORDSIZE_TIME64_COMPAT32", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-linux-gnu.h:565:18", "type": { "tag": "__int128_t" }, "value": 1 },
60
+{ "tag": "const", "name": "__time_t_defined", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-linux-gnu.h:566:18", "type": { "tag": "__int128_t" }, "value": 1 },
61
+{ "tag": "const", "name": "__USE_POSIX", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-linux-gnu.h:567:18", "type": { "tag": "__int128_t" }, "value": 1 },
62
+{ "tag": "const", "name": "__USE_ISOC99", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-linux-gnu.h:568:18", "type": { "tag": "__int128_t" }, "value": 1 },
63
+{ "tag": "const", "name": "__timespec_defined", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-linux-gnu.h:569:18", "type": { "tag": "__int128_t" }, "value": 1 },
64
+{ "tag": "const", "name": "__WORDSIZE", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-linux-gnu.h:570:18", "type": { "tag": "__int128_t" }, "value": 64 },
65
+{ "tag": "const", "name": "__timer_t_defined", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-linux-gnu.h:571:18", "type": { "tag": "__int128_t" }, "value": 1 },
66
+{ "tag": "const", "name": "__USE_XOPEN2K8", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-linux-gnu.h:572:18", "type": { "tag": "__int128_t" }, "value": 1 },
67
+{ "tag": "const", "name": "YAML_NULL_TAG", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-linux-gnu.h:573:13", "type": { "tag": ":pointer", "type": { "tag": ":char" } }, "value": "tag:yaml.org,2002:null" },
68
+{ "tag": "const", "name": "__USE_XOPEN2K", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-linux-gnu.h:574:18", "type": { "tag": "__int128_t" }, "value": 1 },
69
+{ "tag": "const", "name": "_STDIO_H", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-linux-gnu.h:575:18", "type": { "tag": "__int128_t" }, "value": 1 },
70
+{ "tag": "const", "name": "YAML_BOOL_TAG", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-linux-gnu.h:576:13", "type": { "tag": ":pointer", "type": { "tag": ":char" } }, "value": "tag:yaml.org,2002:bool" },
71
+{ "tag": "const", "name": "YAML_INT_TAG", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-linux-gnu.h:577:13", "type": { "tag": ":pointer", "type": { "tag": ":char" } }, "value": "tag:yaml.org,2002:int" },
72
+{ "tag": "const", "name": "YAML_FLOAT_TAG", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-linux-gnu.h:578:13", "type": { "tag": ":pointer", "type": { "tag": ":char" } }, "value": "tag:yaml.org,2002:float" },
73
+{ "tag": "const", "name": "YAML_STR_TAG", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-linux-gnu.h:579:13", "type": { "tag": ":pointer", "type": { "tag": ":char" } }, "value": "tag:yaml.org,2002:str" },
74
+{ "tag": "const", "name": "__USE_POSIX199506", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-linux-gnu.h:580:18", "type": { "tag": "__int128_t" }, "value": 1 },
75
+{ "tag": "const", "name": "YAML_SEQ_TAG", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-linux-gnu.h:581:13", "type": { "tag": ":pointer", "type": { "tag": ":char" } }, "value": "tag:yaml.org,2002:seq" },
76
+{ "tag": "const", "name": "__USE_MISC", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-linux-gnu.h:582:18", "type": { "tag": "__int128_t" }, "value": 1 },
77
+{ "tag": "const", "name": "__USE_ATFILE", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-linux-gnu.h:583:18", "type": { "tag": "__int128_t" }, "value": 1 },
78
+{ "tag": "const", "name": "__FILE_defined", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-linux-gnu.h:584:18", "type": { "tag": "__int128_t" }, "value": 1 },
79
+{ "tag": "const", "name": "____FILE_defined", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-linux-gnu.h:585:18", "type": { "tag": "__int128_t" }, "value": 1 },
80
+{ "tag": "const", "name": "__USE_SVID", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-linux-gnu.h:586:18", "type": { "tag": "__int128_t" }, "value": 1 },
81
+{ "tag": "const", "name": "__USE_BSD", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-linux-gnu.h:587:18", "type": { "tag": "__int128_t" }, "value": 1 },
82
+{ "tag": "const", "name": "YAML_MAP_TAG", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-linux-gnu.h:588:13", "type": { "tag": ":pointer", "type": { "tag": ":char" } }, "value": "tag:yaml.org,2002:map" },
83
+{ "tag": "const", "name": "_XLOCALE_H", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-linux-gnu.h:589:18", "type": { "tag": "__int128_t" }, "value": 1 },
84
+{ "tag": "const", "name": "__USE_ANSI", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-linux-gnu.h:590:18", "type": { "tag": "__int128_t" }, "value": 1 },
85
+{ "tag": "const", "name": "____mbstate_t_defined", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-linux-gnu.h:591:18", "type": { "tag": "__int128_t" }, "value": 1 },
86
+{ "tag": "const", "name": "__clock_t_defined", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-linux-gnu.h:592:18", "type": { "tag": "__int128_t" }, "value": 1 },
87
+{ "tag": "const", "name": "__USE_FORTIFY_LEVEL", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-linux-gnu.h:593:18", "type": { "tag": "__int128_t" }, "value": 0 },
88
+{ "tag": "const", "name": "_G_config_h", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-linux-gnu.h:594:18", "type": { "tag": "__int128_t" }, "value": 1 },
89
+{ "tag": "const", "name": "_IO_BOOLALPHA", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-linux-gnu.h:595:18", "type": { "tag": "__int128_t" }, "value": 65536 },
90
+{ "tag": "const", "name": "_STRING_H", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-linux-gnu.h:596:18", "type": { "tag": "__int128_t" }, "value": 1 },
91
+{ "tag": "const", "name": "_IO_STDIO", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-linux-gnu.h:597:18", "type": { "tag": "__int128_t" }, "value": 16384 },
92
+{ "tag": "const", "name": "_IO_DONT_CLOSE", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-linux-gnu.h:598:18", "type": { "tag": "__int128_t" }, "value": 32768 },
93
+{ "tag": "const", "name": "YAML_TIMESTAMP_TAG", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-linux-gnu.h:599:13", "type": { "tag": ":pointer", "type": { "tag": ":char" } }, "value": "tag:yaml.org,2002:timestamp" },
94
+{ "tag": "const", "name": "_SYS_CDEFS_H", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-linux-gnu.h:600:18", "type": { "tag": "__int128_t" }, "value": 1 },
95
+{ "tag": "const", "name": "__PTHREAD_MUTEX_HAVE_PREV", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-linux-gnu.h:601:18", "type": { "tag": "__int128_t" }, "value": 1 },
96
+{ "tag": "const", "name": "__PTHREAD_RWLOCK_INT_FLAGS_SHARED", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-linux-gnu.h:602:18", "type": { "tag": "__int128_t" }, "value": 1 },
97
+{ "tag": "const", "name": "__have_pthread_attr_t", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-linux-gnu.h:603:18", "type": { "tag": "__int128_t" }, "value": 1 },
98
+{ "tag": "const", "name": "_IONBF", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-linux-gnu.h:604:18", "type": { "tag": "__int128_t" }, "value": 2 },
99
+{ "tag": "const", "name": "SEEK_SET", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-linux-gnu.h:605:18", "type": { "tag": "__int128_t" }, "value": 0 },
100
+{ "tag": "const", "name": "SEEK_CUR", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-linux-gnu.h:606:18", "type": { "tag": "__int128_t" }, "value": 1 },
101
+{ "tag": "const", "name": "__SIZEOF_PTHREAD_BARRIER_T", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-linux-gnu.h:607:18", "type": { "tag": "__int128_t" }, "value": 32 },
102
+{ "tag": "const", "name": "__SIZEOF_PTHREAD_BARRIERATTR_T", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-linux-gnu.h:608:18", "type": { "tag": "__int128_t" }, "value": 4 },
103
+{ "tag": "const", "name": "SEEK_END", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-linux-gnu.h:609:18", "type": { "tag": "__int128_t" }, "value": 2 },
104
+{ "tag": "const", "name": "__SIZEOF_PTHREAD_COND_T", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-linux-gnu.h:610:18", "type": { "tag": "__int128_t" }, "value": 48 },
105
+{ "tag": "const", "name": "__SIZEOF_PTHREAD_CONDATTR_T", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-linux-gnu.h:611:18", "type": { "tag": "__int128_t" }, "value": 4 },
106
+{ "tag": "const", "name": "_SYS_TYPES_H", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-linux-gnu.h:612:18", "type": { "tag": "__int128_t" }, "value": 1 },
107
+{ "tag": "const", "name": "TMP_MAX", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-linux-gnu.h:613:18", "type": { "tag": "__int128_t" }, "value": 238328 },
108
+{ "tag": "const", "name": "__SIZEOF_PTHREAD_RWLOCK_T", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-linux-gnu.h:614:18", "type": { "tag": "__int128_t" }, "value": 56 },
109
+{ "tag": "const", "name": "L_tmpnam", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-linux-gnu.h:615:18", "type": { "tag": "__int128_t" }, "value": 20 },
110
+{ "tag": "const", "name": "__SIZEOF_PTHREAD_RWLOCKATTR_T", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-linux-gnu.h:616:18", "type": { "tag": "__int128_t" }, "value": 8 },
111
+{ "tag": "const", "name": "RAND_MAX", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-linux-gnu.h:617:18", "type": { "tag": "__int128_t" }, "value": 2147483647 },
112
+{ "tag": "const", "name": "FILENAME_MAX", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-linux-gnu.h:618:18", "type": { "tag": "__int128_t" }, "value": 4096 },
113
+{ "tag": "const", "name": "EXIT_FAILURE", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-linux-gnu.h:619:18", "type": { "tag": "__int128_t" }, "value": 1 },
114
+{ "tag": "const", "name": "__lldiv_t_defined", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-linux-gnu.h:620:18", "type": { "tag": "__int128_t" }, "value": 1 },
115
+{ "tag": "const", "name": "L_ctermid", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-linux-gnu.h:621:18", "type": { "tag": "__int128_t" }, "value": 9 },
116
+{ "tag": "const", "name": "_ALLOCA_H", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-linux-gnu.h:622:18", "type": { "tag": "__int128_t" }, "value": 1 },
117
+{ "tag": "const", "name": "P_tmpdir", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-linux-gnu.h:623:13", "type": { "tag": ":pointer", "type": { "tag": ":char" } }, "value": "/tmp" },
118
+{ "tag": "const", "name": "FOPEN_MAX", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-linux-gnu.h:624:18", "type": { "tag": "__int128_t" }, "value": 16 },
119
+{ "tag": "const", "name": "__ldiv_t_defined", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-linux-gnu.h:625:18", "type": { "tag": "__int128_t" }, "value": 1 },
120
+{ "tag": "const", "name": "_IO_UNIFIED_JUMPTABLES", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-linux-gnu.h:626:18", "type": { "tag": "__int128_t" }, "value": 1 },
121
+{ "tag": "const", "name": "EOF", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-linux-gnu.h:627:18", "type": { "tag": "__int128_t" }, "value": -1 },
122
+{ "tag": "const", "name": "_ENDIAN_H", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-linux-gnu.h:628:18", "type": { "tag": "__int128_t" }, "value": 1 },
123
+{ "tag": "const", "name": "_IOS_INPUT", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-linux-gnu.h:629:18", "type": { "tag": "__int128_t" }, "value": 1 },
124
+{ "tag": "const", "name": "__LITTLE_ENDIAN", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-linux-gnu.h:630:18", "type": { "tag": "__int128_t" }, "value": 1234 },
125
+{ "tag": "const", "name": "__BIG_ENDIAN", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-linux-gnu.h:631:18", "type": { "tag": "__int128_t" }, "value": 4321 },
126
+{ "tag": "const", "name": "_IOS_APPEND", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-linux-gnu.h:632:18", "type": { "tag": "__int128_t" }, "value": 8 },
127
+{ "tag": "const", "name": "_IOS_OUTPUT", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-linux-gnu.h:633:18", "type": { "tag": "__int128_t" }, "value": 2 },
128
+{ "tag": "const", "name": "__PDP_ENDIAN", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-linux-gnu.h:634:18", "type": { "tag": "__int128_t" }, "value": 3412 },
129
+{ "tag": "const", "name": "_IOS_TRUNC", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-linux-gnu.h:635:18", "type": { "tag": "__int128_t" }, "value": 16 },
130
+{ "tag": "const", "name": "_IOS_ATEND", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-linux-gnu.h:636:18", "type": { "tag": "__int128_t" }, "value": 4 },
131
+{ "tag": "const", "name": "_IOS_NOCREATE", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-linux-gnu.h:637:18", "type": { "tag": "__int128_t" }, "value": 32 },
132
+{ "tag": "const", "name": "EXIT_SUCCESS", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-linux-gnu.h:638:18", "type": { "tag": "__int128_t" }, "value": 0 },
133
+{ "tag": "const", "name": "_IOS_NOREPLACE", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-linux-gnu.h:639:18", "type": { "tag": "__int128_t" }, "value": 64 },
134
+{ "tag": "const", "name": "_IOS_BIN", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-linux-gnu.h:640:18", "type": { "tag": "__int128_t" }, "value": 128 },
135
+{ "tag": "const", "name": "_OLD_STDIO_MAGIC", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-linux-gnu.h:641:18", "type": { "tag": "__int128_t" }, "value": 4206624768 },
136
+{ "tag": "const", "name": "_IO_MAGIC", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-linux-gnu.h:642:18", "type": { "tag": "__int128_t" }, "value": 4222418944 },
137
+{ "tag": "const", "name": "_IO_USER_BUF", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-linux-gnu.h:643:18", "type": { "tag": "__int128_t" }, "value": 1 },
138
+{ "tag": "const", "name": "_IO_UNBUFFERED", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-linux-gnu.h:644:18", "type": { "tag": "__int128_t" }, "value": 2 },
139
+{ "tag": "const", "name": "_IO_MAGIC_MASK", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-linux-gnu.h:645:18", "type": { "tag": "__int128_t" }, "value": 4294901760 },
140
+{ "tag": "const", "name": "_IO_NO_WRITES", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-linux-gnu.h:646:18", "type": { "tag": "__int128_t" }, "value": 8 },
141
+{ "tag": "const", "name": "_IO_NO_READS", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-linux-gnu.h:647:18", "type": { "tag": "__int128_t" }, "value": 4 },
142
+{ "tag": "const", "name": "_IO_ERR_SEEN", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-linux-gnu.h:648:18", "type": { "tag": "__int128_t" }, "value": 32 },
143
+{ "tag": "const", "name": "_IO_EOF_SEEN", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-linux-gnu.h:649:18", "type": { "tag": "__int128_t" }, "value": 16 },
144
+{ "tag": "const", "name": "_IO_LINKED", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-linux-gnu.h:650:18", "type": { "tag": "__int128_t" }, "value": 128 },
145
+{ "tag": "const", "name": "_IO_DELETE_DONT_CLOSE", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-linux-gnu.h:651:18", "type": { "tag": "__int128_t" }, "value": 64 },
146
+{ "tag": "const", "name": "_IO_LINE_BUF", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-linux-gnu.h:652:18", "type": { "tag": "__int128_t" }, "value": 512 },
147
+{ "tag": "const", "name": "_IO_IN_BACKUP", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-linux-gnu.h:653:18", "type": { "tag": "__int128_t" }, "value": 256 },
148
+{ "tag": "const", "name": "_IO_TIED_PUT_GET", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-linux-gnu.h:654:18", "type": { "tag": "__int128_t" }, "value": 1024 },
149
+{ "tag": "const", "name": "_IO_CURRENTLY_PUTTING", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-linux-gnu.h:655:18", "type": { "tag": "__int128_t" }, "value": 2048 },
150
+{ "tag": "const", "name": "_IO_BAD_SEEN", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-linux-gnu.h:656:18", "type": { "tag": "__int128_t" }, "value": 16384 },
151
+{ "tag": "const", "name": "_IO_IS_FILEBUF", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-linux-gnu.h:657:18", "type": { "tag": "__int128_t" }, "value": 8192 },
152
+{ "tag": "const", "name": "_IO_IS_APPENDING", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-linux-gnu.h:658:18", "type": { "tag": "__int128_t" }, "value": 4096 },
153
+{ "tag": "const", "name": "_IO_FLAGS2_MMAP", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-linux-gnu.h:659:18", "type": { "tag": "__int128_t" }, "value": 1 },
154
+{ "tag": "const", "name": "_IO_USER_LOCK", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-linux-gnu.h:660:18", "type": { "tag": "__int128_t" }, "value": 32768 },
155
+{ "tag": "const", "name": "_IO_FLAGS2_USER_WBUF", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-linux-gnu.h:661:18", "type": { "tag": "__int128_t" }, "value": 8 },
156
+{ "tag": "const", "name": "_IO_FLAGS2_NOTCANCEL", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-linux-gnu.h:662:18", "type": { "tag": "__int128_t" }, "value": 2 },
157
+{ "tag": "const", "name": "_IO_LEFT", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-linux-gnu.h:663:18", "type": { "tag": "__int128_t" }, "value": 2 },
158
+{ "tag": "const", "name": "_IO_SKIPWS", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-linux-gnu.h:664:18", "type": { "tag": "__int128_t" }, "value": 1 },
159
+{ "tag": "const", "name": "_IO_DEC", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-linux-gnu.h:665:18", "type": { "tag": "__int128_t" }, "value": 16 },
160
+{ "tag": "const", "name": "_IO_INTERNAL", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-linux-gnu.h:666:18", "type": { "tag": "__int128_t" }, "value": 8 },
161
+{ "tag": "const", "name": "_IO_RIGHT", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-linux-gnu.h:667:18", "type": { "tag": "__int128_t" }, "value": 4 },
162
+{ "tag": "const", "name": "_IO_HEX", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-linux-gnu.h:668:18", "type": { "tag": "__int128_t" }, "value": 64 },
163
+{ "tag": "const", "name": "_IO_OCT", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-linux-gnu.h:669:18", "type": { "tag": "__int128_t" }, "value": 32 },
164
+{ "tag": "const", "name": "_IO_UPPERCASE", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-linux-gnu.h:670:18", "type": { "tag": "__int128_t" }, "value": 512 },
165
+{ "tag": "const", "name": "_IO_SHOWPOINT", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-linux-gnu.h:671:18", "type": { "tag": "__int128_t" }, "value": 256 },
166
+{ "tag": "const", "name": "_IO_SHOWBASE", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-linux-gnu.h:672:18", "type": { "tag": "__int128_t" }, "value": 128 },
167
+{ "tag": "const", "name": "_IO_SCIENTIFIC", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-linux-gnu.h:673:18", "type": { "tag": "__int128_t" }, "value": 2048 },
168
+{ "tag": "const", "name": "_IO_SHOWPOS", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-linux-gnu.h:674:18", "type": { "tag": "__int128_t" }, "value": 1024 },
169
+{ "tag": "const", "name": "_IO_UNITBUF", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-linux-gnu.h:675:18", "type": { "tag": "__int128_t" }, "value": 8192 },
170
+{ "tag": "const", "name": "_IO_FIXED", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-linux-gnu.h:676:18", "type": { "tag": "__int128_t" }, "value": 4096 }
171
+]
0 172
new file mode 100755
... ...
@@ -0,0 +1,515 @@
1
+[
2
+{ "tag": "typedef", "name": "size_t", "location": "/usr/include/stddef.h:213:23", "type": { "tag": ":unsigned-long" } },
3
+{ "tag": "typedef", "name": "wchar_t", "location": "/usr/include/stddef.h:325:24", "type": { "tag": ":int" } },
4
+{ "tag": "typedef", "name": "__u_char", "location": "/usr/include/bits/types.h:30:23", "type": { "tag": ":unsigned-char" } },
5
+{ "tag": "typedef", "name": "__u_short", "location": "/usr/include/bits/types.h:31:28", "type": { "tag": ":unsigned-short" } },
6
+{ "tag": "typedef", "name": "__u_int", "location": "/usr/include/bits/types.h:32:22", "type": { "tag": ":unsigned-int" } },
7
+{ "tag": "typedef", "name": "__u_long", "location": "/usr/include/bits/types.h:33:27", "type": { "tag": ":unsigned-long" } },
8
+{ "tag": "typedef", "name": "__int8_t", "location": "/usr/include/bits/types.h:36:21", "type": { "tag": ":signed-char" } },
9
+{ "tag": "typedef", "name": "__uint8_t", "location": "/usr/include/bits/types.h:37:23", "type": { "tag": ":unsigned-char" } },
10
+{ "tag": "typedef", "name": "__int16_t", "location": "/usr/include/bits/types.h:38:26", "type": { "tag": ":short" } },
11
+{ "tag": "typedef", "name": "__uint16_t", "location": "/usr/include/bits/types.h:39:28", "type": { "tag": ":unsigned-short" } },
12
+{ "tag": "typedef", "name": "__int32_t", "location": "/usr/include/bits/types.h:40:20", "type": { "tag": ":int" } },
13
+{ "tag": "typedef", "name": "__uint32_t", "location": "/usr/include/bits/types.h:41:22", "type": { "tag": ":unsigned-int" } },
14
+{ "tag": "typedef", "name": "__int64_t", "location": "/usr/include/bits/types.h:43:25", "type": { "tag": ":long" } },
15
+{ "tag": "typedef", "name": "__uint64_t", "location": "/usr/include/bits/types.h:44:27", "type": { "tag": ":unsigned-long" } },
16
+{ "tag": "typedef", "name": "__quad_t", "location": "/usr/include/bits/types.h:52:18", "type": { "tag": ":long" } },
17
+{ "tag": "typedef", "name": "__u_quad_t", "location": "/usr/include/bits/types.h:53:27", "type": { "tag": ":unsigned-long" } },
18
+{ "tag": "typedef", "name": "__dev_t", "location": "/usr/include/bits/types.h:133:25", "type": { "tag": ":unsigned-long" } },
19
+{ "tag": "typedef", "name": "__uid_t", "location": "/usr/include/bits/types.h:134:25", "type": { "tag": ":unsigned-int" } },
20
+{ "tag": "typedef", "name": "__gid_t", "location": "/usr/include/bits/types.h:135:25", "type": { "tag": ":unsigned-int" } },
21
+{ "tag": "typedef", "name": "__ino_t", "location": "/usr/include/bits/types.h:136:25", "type": { "tag": ":unsigned-long" } },
22
+{ "tag": "typedef", "name": "__ino64_t", "location": "/usr/include/bits/types.h:137:27", "type": { "tag": ":unsigned-long" } },
23
+{ "tag": "typedef", "name": "__mode_t", "location": "/usr/include/bits/types.h:138:26", "type": { "tag": ":unsigned-int" } },
24
+{ "tag": "typedef", "name": "__nlink_t", "location": "/usr/include/bits/types.h:139:27", "type": { "tag": ":unsigned-long" } },
25
+{ "tag": "typedef", "name": "__off_t", "location": "/usr/include/bits/types.h:140:25", "type": { "tag": ":long" } },
26
+{ "tag": "typedef", "name": "__off64_t", "location": "/usr/include/bits/types.h:141:27", "type": { "tag": ":long" } },
27
+{ "tag": "typedef", "name": "__pid_t", "location": "/usr/include/bits/types.h:142:25", "type": { "tag": ":int" } },
28
+{ "tag": "typedef", "name": "__fsid_t", "location": "/usr/include/bits/types.h:143:26", "type": { "tag": "struct", "name": "", "id": 1, "location": "/usr/include/bits/types.h:143:12 <Spelling=/usr/include/bits/typesizes.h:72:24>", "bit-size": 64, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "__val", "bit-offset": 0, "bit-size": 64, "bit-alignment": 32, "type": { "tag": ":array", "type": { "tag": ":int" }, "size": 2 } }] } },
29
+{ "tag": "typedef", "name": "__clock_t", "location": "/usr/include/bits/types.h:144:27", "type": { "tag": ":long" } },
30
+{ "tag": "typedef", "name": "__rlim_t", "location": "/usr/include/bits/types.h:145:26", "type": { "tag": ":unsigned-long" } },
31
+{ "tag": "typedef", "name": "__rlim64_t", "location": "/usr/include/bits/types.h:146:28", "type": { "tag": ":unsigned-long" } },
32
+{ "tag": "typedef", "name": "__id_t", "location": "/usr/include/bits/types.h:147:24", "type": { "tag": ":unsigned-int" } },
33
+{ "tag": "typedef", "name": "__time_t", "location": "/usr/include/bits/types.h:148:26", "type": { "tag": ":long" } },
34
+{ "tag": "typedef", "name": "__useconds_t", "location": "/usr/include/bits/types.h:149:30", "type": { "tag": ":unsigned-int" } },
35
+{ "tag": "typedef", "name": "__suseconds_t", "location": "/usr/include/bits/types.h:150:31", "type": { "tag": ":long" } },
36
+{ "tag": "typedef", "name": "__daddr_t", "location": "/usr/include/bits/types.h:152:27", "type": { "tag": ":int" } },
37
+{ "tag": "typedef", "name": "__key_t", "location": "/usr/include/bits/types.h:153:25", "type": { "tag": ":int" } },
38
+{ "tag": "typedef", "name": "__clockid_t", "location": "/usr/include/bits/types.h:156:29", "type": { "tag": ":int" } },
39
+{ "tag": "typedef", "name": "__timer_t", "location": "/usr/include/bits/types.h:159:27", "type": { "tag": ":pointer", "type": { "tag": ":void" } } },
40
+{ "tag": "typedef", "name": "__blksize_t", "location": "/usr/include/bits/types.h:162:29", "type": { "tag": ":long" } },
41
+{ "tag": "typedef", "name": "__blkcnt_t", "location": "/usr/include/bits/types.h:167:28", "type": { "tag": ":long" } },
42
+{ "tag": "typedef", "name": "__blkcnt64_t", "location": "/usr/include/bits/types.h:168:30", "type": { "tag": ":long" } },
43
+{ "tag": "typedef", "name": "__fsblkcnt_t", "location": "/usr/include/bits/types.h:171:30", "type": { "tag": ":unsigned-long" } },
44
+{ "tag": "typedef", "name": "__fsblkcnt64_t", "location": "/usr/include/bits/types.h:172:32", "type": { "tag": ":unsigned-long" } },
45
+{ "tag": "typedef", "name": "__fsfilcnt_t", "location": "/usr/include/bits/types.h:175:30", "type": { "tag": ":unsigned-long" } },
46
+{ "tag": "typedef", "name": "__fsfilcnt64_t", "location": "/usr/include/bits/types.h:176:32", "type": { "tag": ":unsigned-long" } },
47
+{ "tag": "typedef", "name": "__fsword_t", "location": "/usr/include/bits/types.h:179:28", "type": { "tag": ":long" } },
48
+{ "tag": "typedef", "name": "__ssize_t", "location": "/usr/include/bits/types.h:181:27", "type": { "tag": ":long" } },
49
+{ "tag": "typedef", "name": "__syscall_slong_t", "location": "/usr/include/bits/types.h:184:33", "type": { "tag": ":long" } },
50
+{ "tag": "typedef", "name": "__syscall_ulong_t", "location": "/usr/include/bits/types.h:186:33", "type": { "tag": ":unsigned-long" } },
51
+{ "tag": "typedef", "name": "__loff_t", "location": "/usr/include/bits/types.h:190:19", "type": { "tag": "__off64_t" } },
52
+{ "tag": "typedef", "name": "__qaddr_t", "location": "/usr/include/bits/types.h:191:19", "type": { "tag": ":pointer", "type": { "tag": "__quad_t" } } },
53
+{ "tag": "typedef", "name": "__caddr_t", "location": "/usr/include/bits/types.h:192:15", "type": { "tag": ":pointer", "type": { "tag": ":char" } } },
54
+{ "tag": "typedef", "name": "__intptr_t", "location": "/usr/include/bits/types.h:195:25", "type": { "tag": ":long" } },
55
+{ "tag": "typedef", "name": "__socklen_t", "location": "/usr/include/bits/types.h:198:23", "type": { "tag": ":unsigned-int" } },
56
+{ "tag": "union", "name": "wait", "id": 0, "location": "/usr/include/bits/waitstatus.h:66:7", "bit-size": 32, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "w_status", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "__wait_terminated", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "struct", "name": "", "id": 2, "location": "/usr/include/bits/waitstatus.h:69:5", "bit-size": 32, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "__w_termsig", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":bitfield", "width": 7, "type": { "tag": ":unsigned-int" } } }, { "tag": "field", "name": "__w_coredump", "bit-offset": 7, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":bitfield", "width": 1, "type": { "tag": ":unsigned-int" } } }, { "tag": "field", "name": "__w_retcode", "bit-offset": 8, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":bitfield", "width": 8, "type": { "tag": ":unsigned-int" } } }, { "tag": "field", "name": "", "bit-offset": 16, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":bitfield", "width": 16, "type": { "tag": ":unsigned-int" } } }] } }, { "tag": "field", "name": "__wait_stopped", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "struct", "name": "", "id": 3, "location": "/usr/include/bits/waitstatus.h:84:5", "bit-size": 32, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "__w_stopval", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":bitfield", "width": 8, "type": { "tag": ":unsigned-int" } } }, { "tag": "field", "name": "__w_stopsig", "bit-offset": 8, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":bitfield", "width": 8, "type": { "tag": ":unsigned-int" } } }, { "tag": "field", "name": "", "bit-offset": 16, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":bitfield", "width": 16, "type": { "tag": ":unsigned-int" } } }] } }] },
57
+{ "tag": "typedef", "name": "__WAIT_STATUS", "location": "/usr/include/stdlib.h:71:5", "type": { "tag": "union", "name": "", "id": 4, "location": "/usr/include/stdlib.h:67:9", "bit-size": 64, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "__uptr", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":union", "name": "wait", "id": 0 } } }, { "tag": "field", "name": "__iptr", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":int" } } }] } },
58
+{ "tag": "typedef", "name": "div_t", "location": "/usr/include/stdlib.h:101:5", "type": { "tag": "struct", "name": "", "id": 5, "location": "/usr/include/stdlib.h:97:9", "bit-size": 64, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "quot", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "rem", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }] } },
59
+{ "tag": "typedef", "name": "ldiv_t", "location": "/usr/include/stdlib.h:109:5", "type": { "tag": "struct", "name": "", "id": 6, "location": "/usr/include/stdlib.h:105:9", "bit-size": 128, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "quot", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":long" } }, { "tag": "field", "name": "rem", "bit-offset": 64, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":long" } }] } },
60
+{ "tag": "typedef", "name": "lldiv_t", "location": "/usr/include/stdlib.h:121:5", "type": { "tag": "struct", "name": "", "id": 7, "location": "/usr/include/stdlib.h:117:23", "bit-size": 128, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "quot", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":long-long" } }, { "tag": "field", "name": "rem", "bit-offset": 64, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":long-long" } }] } },
61
+{ "tag": "function", "name": "__ctype_get_mb_cur_max", "location": "/usr/include/stdlib.h:139:15", "variadic": false, "parameters": [], "return-type": { "tag": "size_t" } },
62
+{ "tag": "function", "name": "atof", "location": "/usr/include/stdlib.h:144:15", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__nptr", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":double" } },
63
+{ "tag": "function", "name": "atoi", "location": "/usr/include/stdlib.h:147:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__nptr", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":int" } },
64
+{ "tag": "function", "name": "atol", "location": "/usr/include/stdlib.h:150:17", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__nptr", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":long" } },
65
+{ "tag": "function", "name": "atoll", "location": "/usr/include/stdlib.h:157:36", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__nptr", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":long-long" } },
66
+{ "tag": "function", "name": "strtod", "location": "/usr/include/stdlib.h:164:15", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__nptr", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__endptr", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char" } } } }], "return-type": { "tag": ":double" } },
67
+{ "tag": "function", "name": "strtof", "location": "/usr/include/stdlib.h:172:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__nptr", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__endptr", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char" } } } }], "return-type": { "tag": ":float" } },
68
+{ "tag": "function", "name": "strtold", "location": "/usr/include/stdlib.h:175:20", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__nptr", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__endptr", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char" } } } }], "return-type": { "tag": ":long-double" } },
69
+{ "tag": "function", "name": "strtol", "location": "/usr/include/stdlib.h:183:17", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__nptr", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__endptr", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char" } } } }, { "tag": "parameter", "name": "__base", "type": { "tag": ":int" } }], "return-type": { "tag": ":long" } },
70
+{ "tag": "function", "name": "strtoul", "location": "/usr/include/stdlib.h:187:26", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__nptr", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__endptr", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char" } } } }, { "tag": "parameter", "name": "__base", "type": { "tag": ":int" } }], "return-type": { "tag": ":unsigned-long" } },
71
+{ "tag": "function", "name": "strtoq", "location": "/usr/include/stdlib.h:195:22", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__nptr", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__endptr", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char" } } } }, { "tag": "parameter", "name": "__base", "type": { "tag": ":int" } }], "return-type": { "tag": ":long-long" } },
72
+{ "tag": "function", "name": "strtouq", "location": "/usr/include/stdlib.h:200:31", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__nptr", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__endptr", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char" } } } }, { "tag": "parameter", "name": "__base", "type": { "tag": ":int" } }], "return-type": { "tag": ":unsigned-long-long" } },
73
+{ "tag": "function", "name": "strtoll", "location": "/usr/include/stdlib.h:209:22", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__nptr", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__endptr", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char" } } } }, { "tag": "parameter", "name": "__base", "type": { "tag": ":int" } }], "return-type": { "tag": ":long-long" } },
74
+{ "tag": "function", "name": "strtoull", "location": "/usr/include/stdlib.h:214:31", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__nptr", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__endptr", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char" } } } }, { "tag": "parameter", "name": "__base", "type": { "tag": ":int" } }], "return-type": { "tag": ":unsigned-long-long" } },
75
+{ "tag": "function", "name": "l64a", "location": "/usr/include/stdlib.h:305:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__n", "type": { "tag": ":long" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
76
+{ "tag": "function", "name": "a64l", "location": "/usr/include/stdlib.h:308:17", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":long" } },
77
+{ "tag": "typedef", "name": "u_char", "location": "/usr/include/sys/types.h:33:18", "type": { "tag": "__u_char" } },
78
+{ "tag": "typedef", "name": "u_short", "location": "/usr/include/sys/types.h:34:19", "type": { "tag": "__u_short" } },
79
+{ "tag": "typedef", "name": "u_int", "location": "/usr/include/sys/types.h:35:17", "type": { "tag": "__u_int" } },
80
+{ "tag": "typedef", "name": "u_long", "location": "/usr/include/sys/types.h:36:18", "type": { "tag": "__u_long" } },
81
+{ "tag": "typedef", "name": "quad_t", "location": "/usr/include/sys/types.h:37:18", "type": { "tag": "__quad_t" } },
82
+{ "tag": "typedef", "name": "u_quad_t", "location": "/usr/include/sys/types.h:38:20", "type": { "tag": "__u_quad_t" } },
83
+{ "tag": "typedef", "name": "fsid_t", "location": "/usr/include/sys/types.h:39:18", "type": { "tag": "__fsid_t" } },
84
+{ "tag": "typedef", "name": "loff_t", "location": "/usr/include/sys/types.h:44:18", "type": { "tag": "__loff_t" } },
85
+{ "tag": "typedef", "name": "ino_t", "location": "/usr/include/sys/types.h:48:17", "type": { "tag": "__ino_t" } },
86
+{ "tag": "typedef", "name": "dev_t", "location": "/usr/include/sys/types.h:60:17", "type": { "tag": "__dev_t" } },
87
+{ "tag": "typedef", "name": "gid_t", "location": "/usr/include/sys/types.h:65:17", "type": { "tag": "__gid_t" } },
88
+{ "tag": "typedef", "name": "mode_t", "location": "/usr/include/sys/types.h:70:18", "type": { "tag": "__mode_t" } },
89
+{ "tag": "typedef", "name": "nlink_t", "location": "/usr/include/sys/types.h:75:19", "type": { "tag": "__nlink_t" } },
90
+{ "tag": "typedef", "name": "uid_t", "location": "/usr/include/sys/types.h:80:17", "type": { "tag": "__uid_t" } },
91
+{ "tag": "typedef", "name": "off_t", "location": "/usr/include/sys/types.h:86:17", "type": { "tag": "__off_t" } },
92
+{ "tag": "typedef", "name": "pid_t", "location": "/usr/include/sys/types.h:98:17", "type": { "tag": "__pid_t" } },
93
+{ "tag": "typedef", "name": "id_t", "location": "/usr/include/sys/types.h:104:16", "type": { "tag": "__id_t" } },
94
+{ "tag": "typedef", "name": "ssize_t", "location": "/usr/include/sys/types.h:109:19", "type": { "tag": "__ssize_t" } },
95
+{ "tag": "typedef", "name": "daddr_t", "location": "/usr/include/sys/types.h:115:19", "type": { "tag": "__daddr_t" } },
96
+{ "tag": "typedef", "name": "caddr_t", "location": "/usr/include/sys/types.h:116:19", "type": { "tag": "__caddr_t" } },
97
+{ "tag": "typedef", "name": "key_t", "location": "/usr/include/sys/types.h:122:17", "type": { "tag": "__key_t" } },
98
+{ "tag": "typedef", "name": "clock_t", "location": "/usr/include/time.h:59:19", "type": { "tag": "__clock_t" } },
99
+{ "tag": "typedef", "name": "time_t", "location": "/usr/include/time.h:75:18", "type": { "tag": "__time_t" } },
100
+{ "tag": "typedef", "name": "clockid_t", "location": "/usr/include/time.h:91:21", "type": { "tag": "__clockid_t" } },
101
+{ "tag": "typedef", "name": "timer_t", "location": "/usr/include/time.h:103:19", "type": { "tag": "__timer_t" } },
102
+{ "tag": "typedef", "name": "ulong", "location": "/usr/include/sys/types.h:150:27", "type": { "tag": ":unsigned-long" } },
103
+{ "tag": "typedef", "name": "ushort", "location": "/usr/include/sys/types.h:151:28", "type": { "tag": ":unsigned-short" } },
104
+{ "tag": "typedef", "name": "uint", "location": "/usr/include/sys/types.h:152:22", "type": { "tag": ":unsigned-int" } },
105
+{ "tag": "typedef", "name": "int8_t", "location": "/usr/include/sys/types.h:194:1 <Spelling=<scratch space>:3:1>", "type": { "tag": ":int" } },
106
+{ "tag": "typedef", "name": "int16_t", "location": "/usr/include/sys/types.h:195:1 <Spelling=<scratch space>:3:1>", "type": { "tag": ":int" } },
107
+{ "tag": "typedef", "name": "int32_t", "location": "/usr/include/sys/types.h:196:1 <Spelling=<scratch space>:3:1>", "type": { "tag": ":int" } },
108
+{ "tag": "typedef", "name": "int64_t", "location": "/usr/include/sys/types.h:197:1 <Spelling=<scratch space>:3:1>", "type": { "tag": ":int" } },
109
+{ "tag": "typedef", "name": "u_int8_t", "location": "/usr/include/sys/types.h:200:1 <Spelling=<scratch space>:3:1>", "type": { "tag": ":unsigned-int" } },
110
+{ "tag": "typedef", "name": "u_int16_t", "location": "/usr/include/sys/types.h:201:1 <Spelling=<scratch space>:3:1>", "type": { "tag": ":unsigned-int" } },
111
+{ "tag": "typedef", "name": "u_int32_t", "location": "/usr/include/sys/types.h:202:1 <Spelling=<scratch space>:3:1>", "type": { "tag": ":unsigned-int" } },
112
+{ "tag": "typedef", "name": "u_int64_t", "location": "/usr/include/sys/types.h:203:1 <Spelling=<scratch space>:3:1>", "type": { "tag": ":unsigned-int" } },
113
+{ "tag": "typedef", "name": "register_t", "location": "/usr/include/sys/types.h:205:13", "type": { "tag": ":int" } },
114
+{ "tag": "typedef", "name": "__sig_atomic_t", "location": "/usr/include/bits/sigset.h:23:13", "type": { "tag": ":int" } },
115
+{ "tag": "typedef", "name": "__sigset_t", "location": "/usr/include/bits/sigset.h:31:5", "type": { "tag": "struct", "name": "", "id": 8, "location": "/usr/include/bits/sigset.h:28:9", "bit-size": 1024, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "__val", "bit-offset": 0, "bit-size": 1024, "bit-alignment": 64, "type": { "tag": ":array", "type": { "tag": ":unsigned-long" }, "size": 16 } }] } },
116
+{ "tag": "typedef", "name": "sigset_t", "location": "/usr/include/sys/select.h:37:20", "type": { "tag": "__sigset_t" } },
117
+{ "tag": "struct", "name": "timespec", "id": 0, "location": "/usr/include/time.h:120:8", "bit-size": 128, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "tv_sec", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": "__time_t" } }, { "tag": "field", "name": "tv_nsec", "bit-offset": 64, "bit-size": 64, "bit-alignment": 64, "type": { "tag": "__syscall_slong_t" } }] },
118
+{ "tag": "struct", "name": "timeval", "id": 0, "location": "/usr/include/bits/time.h:30:8", "bit-size": 128, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "tv_sec", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": "__time_t" } }, { "tag": "field", "name": "tv_usec", "bit-offset": 64, "bit-size": 64, "bit-alignment": 64, "type": { "tag": "__suseconds_t" } }] },
119
+{ "tag": "typedef", "name": "suseconds_t", "location": "/usr/include/sys/select.h:48:23", "type": { "tag": "__suseconds_t" } },
120
+{ "tag": "typedef", "name": "__fd_mask", "location": "/usr/include/sys/select.h:54:18", "type": { "tag": ":long" } },
121
+{ "tag": "typedef", "name": "fd_set", "location": "/usr/include/sys/select.h:75:5", "type": { "tag": "struct", "name": "", "id": 9, "location": "/usr/include/sys/select.h:64:9", "bit-size": 1024, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "__fds_bits", "bit-offset": 0, "bit-size": 1024, "bit-alignment": 64, "type": { "tag": ":array", "type": { "tag": "__fd_mask" }, "size": 16 } }] } },
122
+{ "tag": "typedef", "name": "fd_mask", "location": "/usr/include/sys/select.h:82:19", "type": { "tag": "__fd_mask" } },
123
+{ "tag": "function", "name": "select", "location": "/usr/include/sys/select.h:106:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__nfds", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__readfds", "type": { "tag": ":pointer", "type": { "tag": "fd_set" } } }, { "tag": "parameter", "name": "__writefds", "type": { "tag": ":pointer", "type": { "tag": "fd_set" } } }, { "tag": "parameter", "name": "__exceptfds", "type": { "tag": ":pointer", "type": { "tag": "fd_set" } } }, { "tag": "parameter", "name": "__timeout", "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "timeval", "id": 0 } } }], "return-type": { "tag": ":int" } },
124
+{ "tag": "function", "name": "pselect", "location": "/usr/include/sys/select.h:118:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__nfds", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__readfds", "type": { "tag": ":pointer", "type": { "tag": "fd_set" } } }, { "tag": "parameter", "name": "__writefds", "type": { "tag": ":pointer", "type": { "tag": "fd_set" } } }, { "tag": "parameter", "name": "__exceptfds", "type": { "tag": ":pointer", "type": { "tag": "fd_set" } } }, { "tag": "parameter", "name": "__timeout", "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "timespec", "id": 0 } } }, { "tag": "parameter", "name": "__sigmask", "type": { "tag": ":pointer", "type": { "tag": "__sigset_t" } } }], "return-type": { "tag": ":int" } },
125
+{ "tag": "function", "name": "gnu_dev_major", "location": "/usr/include/sys/sysmacros.h:32:21", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__dev", "type": { "tag": ":unsigned-long-long" } }], "return-type": { "tag": ":unsigned-int" } },
126
+{ "tag": "function", "name": "gnu_dev_minor", "location": "/usr/include/sys/sysmacros.h:35:21", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__dev", "type": { "tag": ":unsigned-long-long" } }], "return-type": { "tag": ":unsigned-int" } },
127
+{ "tag": "function", "name": "gnu_dev_makedev", "location": "/usr/include/sys/sysmacros.h:38:31", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__major", "type": { "tag": ":unsigned-int" } }, { "tag": "parameter", "name": "__minor", "type": { "tag": ":unsigned-int" } }], "return-type": { "tag": ":unsigned-long-long" } },
128
+{ "tag": "typedef", "name": "blksize_t", "location": "/usr/include/sys/types.h:228:21", "type": { "tag": "__blksize_t" } },
129
+{ "tag": "typedef", "name": "blkcnt_t", "location": "/usr/include/sys/types.h:235:20", "type": { "tag": "__blkcnt_t" } },
130
+{ "tag": "typedef", "name": "fsblkcnt_t", "location": "/usr/include/sys/types.h:239:22", "type": { "tag": "__fsblkcnt_t" } },
131
+{ "tag": "typedef", "name": "fsfilcnt_t", "location": "/usr/include/sys/types.h:243:22", "type": { "tag": "__fsfilcnt_t" } },
132
+{ "tag": "typedef", "name": "pthread_t", "location": "/usr/include/bits/pthreadtypes.h:60:27", "type": { "tag": ":unsigned-long" } },
133
+{ "tag": "union", "name": "pthread_attr_t", "id": 0, "location": "/usr/include/bits/pthreadtypes.h:63:7", "bit-size": 448, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "__size", "bit-offset": 0, "bit-size": 448, "bit-alignment": 8, "type": { "tag": ":array", "type": { "tag": ":char" }, "size": 56 } }, { "tag": "field", "name": "__align", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":long" } }] },
134
+{ "tag": "typedef", "name": "pthread_attr_t", "location": "/usr/include/bits/pthreadtypes.h:69:30", "type": { "tag": ":union", "name": "pthread_attr_t", "id": 0 } },
135
+{ "tag": "struct", "name": "__pthread_internal_list", "id": 0, "location": "/usr/include/bits/pthreadtypes.h:75:16", "bit-size": 128, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "__prev", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "__pthread_internal_list", "id": 0 } } }, { "tag": "field", "name": "__next", "bit-offset": 64, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "__pthread_internal_list", "id": 0 } } }] },
136
+{ "tag": "typedef", "name": "__pthread_list_t", "location": "/usr/include/bits/pthreadtypes.h:79:3", "type": { "tag": ":struct", "name": "__pthread_internal_list", "id": 0 } },
137
+{ "tag": "typedef", "name": "pthread_mutex_t", "location": "/usr/include/bits/pthreadtypes.h:118:3", "type": { "tag": "union", "name": "", "id": 10, "location": "/usr/include/bits/pthreadtypes.h:90:9", "bit-size": 320, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "__data", "bit-offset": 0, "bit-size": 320, "bit-alignment": 64, "type": { "tag": "struct", "name": "__pthread_mutex_s", "id": 0, "location": "/usr/include/bits/pthreadtypes.h:92:10", "bit-size": 320, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "__lock", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "__count", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":unsigned-int" } }, { "tag": "field", "name": "__owner", "bit-offset": 64, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "__nusers", "bit-offset": 96, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":unsigned-int" } }, { "tag": "field", "name": "__kind", "bit-offset": 128, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "__spins", "bit-offset": 160, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "__list", "bit-offset": 192, "bit-size": 128, "bit-alignment": 64, "type": { "tag": "__pthread_list_t" } }] } }, { "tag": "field", "name": "__size", "bit-offset": 0, "bit-size": 320, "bit-alignment": 8, "type": { "tag": ":array", "type": { "tag": ":char" }, "size": 40 } }, { "tag": "field", "name": "__align", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":long" } }] } },
138
+{ "tag": "typedef", "name": "pthread_mutexattr_t", "location": "/usr/include/bits/pthreadtypes.h:124:3", "type": { "tag": "union", "name": "", "id": 11, "location": "/usr/include/bits/pthreadtypes.h:120:9", "bit-size": 32, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "__size", "bit-offset": 0, "bit-size": 32, "bit-alignment": 8, "type": { "tag": ":array", "type": { "tag": ":char" }, "size": 4 } }, { "tag": "field", "name": "__align", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }] } },
139
+{ "tag": "typedef", "name": "pthread_cond_t", "location": "/usr/include/bits/pthreadtypes.h:144:3", "type": { "tag": "union", "name": "", "id": 12, "location": "/usr/include/bits/pthreadtypes.h:129:9", "bit-size": 384, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "__data", "bit-offset": 0, "bit-size": 384, "bit-alignment": 64, "type": { "tag": "struct", "name": "", "id": 13, "location": "/usr/include/bits/pthreadtypes.h:131:3", "bit-size": 384, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "__lock", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "__futex", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":unsigned-int" } }, { "tag": "field", "name": "__total_seq", "bit-offset": 64, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":unsigned-long-long" } }, { "tag": "field", "name": "__wakeup_seq", "bit-offset": 128, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":unsigned-long-long" } }, { "tag": "field", "name": "__woken_seq", "bit-offset": 192, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":unsigned-long-long" } }, { "tag": "field", "name": "__mutex", "bit-offset": 256, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "field", "name": "__nwaiters", "bit-offset": 320, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":unsigned-int" } }, { "tag": "field", "name": "__broadcast_seq", "bit-offset": 352, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":unsigned-int" } }] } }, { "tag": "field", "name": "__size", "bit-offset": 0, "bit-size": 384, "bit-alignment": 8, "type": { "tag": ":array", "type": { "tag": ":char" }, "size": 48 } }, { "tag": "field", "name": "__align", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":long-long" } }] } },
140
+{ "tag": "typedef", "name": "pthread_condattr_t", "location": "/usr/include/bits/pthreadtypes.h:150:3", "type": { "tag": "union", "name": "", "id": 14, "location": "/usr/include/bits/pthreadtypes.h:146:9", "bit-size": 32, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "__size", "bit-offset": 0, "bit-size": 32, "bit-alignment": 8, "type": { "tag": ":array", "type": { "tag": ":char" }, "size": 4 } }, { "tag": "field", "name": "__align", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }] } },
141
+{ "tag": "typedef", "name": "pthread_key_t", "location": "/usr/include/bits/pthreadtypes.h:154:22", "type": { "tag": ":unsigned-int" } },
142
+{ "tag": "typedef", "name": "pthread_once_t", "location": "/usr/include/bits/pthreadtypes.h:158:13", "type": { "tag": ":int" } },
143
+{ "tag": "typedef", "name": "pthread_rwlock_t", "location": "/usr/include/bits/pthreadtypes.h:204:3", "type": { "tag": "union", "name": "", "id": 15, "location": "/usr/include/bits/pthreadtypes.h:164:9", "bit-size": 448, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "__data", "bit-offset": 0, "bit-size": 448, "bit-alignment": 64, "type": { "tag": "struct", "name": "", "id": 16, "location": "/usr/include/bits/pthreadtypes.h:167:3", "bit-size": 448, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "__lock", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "__nr_readers", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":unsigned-int" } }, { "tag": "field", "name": "__readers_wakeup", "bit-offset": 64, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":unsigned-int" } }, { "tag": "field", "name": "__writer_wakeup", "bit-offset": 96, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":unsigned-int" } }, { "tag": "field", "name": "__nr_readers_queued", "bit-offset": 128, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":unsigned-int" } }, { "tag": "field", "name": "__nr_writers_queued", "bit-offset": 160, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":unsigned-int" } }, { "tag": "field", "name": "__writer", "bit-offset": 192, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "__shared", "bit-offset": 224, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "__pad1", "bit-offset": 256, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":unsigned-long" } }, { "tag": "field", "name": "__pad2", "bit-offset": 320, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":unsigned-long" } }, { "tag": "field", "name": "__flags", "bit-offset": 384, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":unsigned-int" } }] } }, { "tag": "field", "name": "__size", "bit-offset": 0, "bit-size": 448, "bit-alignment": 8, "type": { "tag": ":array", "type": { "tag": ":char" }, "size": 56 } }, { "tag": "field", "name": "__align", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":long" } }] } },
144
+{ "tag": "typedef", "name": "pthread_rwlockattr_t", "location": "/usr/include/bits/pthreadtypes.h:210:3", "type": { "tag": "union", "name": "", "id": 17, "location": "/usr/include/bits/pthreadtypes.h:206:9", "bit-size": 64, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "__size", "bit-offset": 0, "bit-size": 64, "bit-alignment": 8, "type": { "tag": ":array", "type": { "tag": ":char" }, "size": 8 } }, { "tag": "field", "name": "__align", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":long" } }] } },
145
+{ "tag": "typedef", "name": "pthread_spinlock_t", "location": "/usr/include/bits/pthreadtypes.h:216:22", "type": { "tag": ":int" } },
146
+{ "tag": "typedef", "name": "pthread_barrier_t", "location": "/usr/include/bits/pthreadtypes.h:225:3", "type": { "tag": "union", "name": "", "id": 18, "location": "/usr/include/bits/pthreadtypes.h:221:9", "bit-size": 256, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "__size", "bit-offset": 0, "bit-size": 256, "bit-alignment": 8, "type": { "tag": ":array", "type": { "tag": ":char" }, "size": 32 } }, { "tag": "field", "name": "__align", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":long" } }] } },
147
+{ "tag": "typedef", "name": "pthread_barrierattr_t", "location": "/usr/include/bits/pthreadtypes.h:231:3", "type": { "tag": "union", "name": "", "id": 19, "location": "/usr/include/bits/pthreadtypes.h:227:9", "bit-size": 32, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "__size", "bit-offset": 0, "bit-size": 32, "bit-alignment": 8, "type": { "tag": ":array", "type": { "tag": ":char" }, "size": 4 } }, { "tag": "field", "name": "__align", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }] } },
148
+{ "tag": "function", "name": "random", "location": "/usr/include/stdlib.h:321:17", "variadic": false, "parameters": [], "return-type": { "tag": ":long" } },
149
+{ "tag": "function", "name": "srandom", "location": "/usr/include/stdlib.h:324:13", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__seed", "type": { "tag": ":unsigned-int" } }], "return-type": { "tag": ":void" } },
150
+{ "tag": "function", "name": "initstate", "location": "/usr/include/stdlib.h:330:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__seed", "type": { "tag": ":unsigned-int" } }, { "tag": "parameter", "name": "__statebuf", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__statelen", "type": { "tag": "size_t" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
151
+{ "tag": "function", "name": "setstate", "location": "/usr/include/stdlib.h:335:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__statebuf", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
152
+{ "tag": "struct", "name": "random_data", "id": 0, "location": "/usr/include/stdlib.h:343:8", "bit-size": 384, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "fptr", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "int32_t" } } }, { "tag": "field", "name": "rptr", "bit-offset": 64, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "int32_t" } } }, { "tag": "field", "name": "state", "bit-offset": 128, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "int32_t" } } }, { "tag": "field", "name": "rand_type", "bit-offset": 192, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "rand_deg", "bit-offset": 224, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "rand_sep", "bit-offset": 256, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "end_ptr", "bit-offset": 320, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "int32_t" } } }] },
153
+{ "tag": "function", "name": "random_r", "location": "/usr/include/stdlib.h:354:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__buf", "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "random_data", "id": 0 } } }, { "tag": "parameter", "name": "__result", "type": { "tag": ":pointer", "type": { "tag": "int32_t" } } }], "return-type": { "tag": ":int" } },
154
+{ "tag": "function", "name": "srandom_r", "location": "/usr/include/stdlib.h:357:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__seed", "type": { "tag": ":unsigned-int" } }, { "tag": "parameter", "name": "__buf", "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "random_data", "id": 0 } } }], "return-type": { "tag": ":int" } },
155
+{ "tag": "function", "name": "initstate_r", "location": "/usr/include/stdlib.h:360:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__seed", "type": { "tag": ":unsigned-int" } }, { "tag": "parameter", "name": "__statebuf", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__statelen", "type": { "tag": "size_t" } }, { "tag": "parameter", "name": "__buf", "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "random_data", "id": 0 } } }], "return-type": { "tag": ":int" } },
156
+{ "tag": "function", "name": "setstate_r", "location": "/usr/include/stdlib.h:365:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__statebuf", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__buf", "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "random_data", "id": 0 } } }], "return-type": { "tag": ":int" } },
157
+{ "tag": "function", "name": "rand", "location": "/usr/include/stdlib.h:374:12", "variadic": false, "parameters": [], "return-type": { "tag": ":int" } },
158
+{ "tag": "function", "name": "srand", "location": "/usr/include/stdlib.h:376:13", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__seed", "type": { "tag": ":unsigned-int" } }], "return-type": { "tag": ":void" } },
159
+{ "tag": "function", "name": "rand_r", "location": "/usr/include/stdlib.h:381:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__seed", "type": { "tag": ":pointer", "type": { "tag": ":unsigned-int" } } }], "return-type": { "tag": ":int" } },
160
+{ "tag": "function", "name": "drand48", "location": "/usr/include/stdlib.h:389:15", "variadic": false, "parameters": [], "return-type": { "tag": ":double" } },
161
+{ "tag": "function", "name": "erand48", "location": "/usr/include/stdlib.h:390:15", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__xsubi", "type": { "tag": ":array", "type": { "tag": ":unsigned-short" }, "size": 3 } }], "return-type": { "tag": ":double" } },
162
+{ "tag": "function", "name": "lrand48", "location": "/usr/include/stdlib.h:393:17", "variadic": false, "parameters": [], "return-type": { "tag": ":long" } },
163
+{ "tag": "function", "name": "nrand48", "location": "/usr/include/stdlib.h:394:17", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__xsubi", "type": { "tag": ":array", "type": { "tag": ":unsigned-short" }, "size": 3 } }], "return-type": { "tag": ":long" } },
164
+{ "tag": "function", "name": "mrand48", "location": "/usr/include/stdlib.h:398:17", "variadic": false, "parameters": [], "return-type": { "tag": ":long" } },
165
+{ "tag": "function", "name": "jrand48", "location": "/usr/include/stdlib.h:399:17", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__xsubi", "type": { "tag": ":array", "type": { "tag": ":unsigned-short" }, "size": 3 } }], "return-type": { "tag": ":long" } },
166
+{ "tag": "function", "name": "srand48", "location": "/usr/include/stdlib.h:403:13", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__seedval", "type": { "tag": ":long" } }], "return-type": { "tag": ":void" } },
167
+{ "tag": "function", "name": "seed48", "location": "/usr/include/stdlib.h:404:28", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__seed16v", "type": { "tag": ":array", "type": { "tag": ":unsigned-short" }, "size": 3 } }], "return-type": { "tag": ":pointer", "type": { "tag": ":unsigned-short" } } },
168
+{ "tag": "function", "name": "lcong48", "location": "/usr/include/stdlib.h:406:13", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__param", "type": { "tag": ":array", "type": { "tag": ":unsigned-short" }, "size": 7 } }], "return-type": { "tag": ":void" } },
169
+{ "tag": "struct", "name": "drand48_data", "id": 0, "location": "/usr/include/stdlib.h:412:8", "bit-size": 192, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "__x", "bit-offset": 0, "bit-size": 48, "bit-alignment": 16, "type": { "tag": ":array", "type": { "tag": ":unsigned-short" }, "size": 3 } }, { "tag": "field", "name": "__old_x", "bit-offset": 48, "bit-size": 48, "bit-alignment": 16, "type": { "tag": ":array", "type": { "tag": ":unsigned-short" }, "size": 3 } }, { "tag": "field", "name": "__c", "bit-offset": 96, "bit-size": 16, "bit-alignment": 16, "type": { "tag": ":unsigned-short" } }, { "tag": "field", "name": "__init", "bit-offset": 112, "bit-size": 16, "bit-alignment": 16, "type": { "tag": ":unsigned-short" } }, { "tag": "field", "name": "__a", "bit-offset": 128, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":unsigned-long-long" } }] },
170
+{ "tag": "function", "name": "drand48_r", "location": "/usr/include/stdlib.h:422:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__buffer", "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "drand48_data", "id": 0 } } }, { "tag": "parameter", "name": "__result", "type": { "tag": ":pointer", "type": { "tag": ":double" } } }], "return-type": { "tag": ":int" } },
171
+{ "tag": "function", "name": "erand48_r", "location": "/usr/include/stdlib.h:424:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__xsubi", "type": { "tag": ":array", "type": { "tag": ":unsigned-short" }, "size": 3 } }, { "tag": "parameter", "name": "__buffer", "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "drand48_data", "id": 0 } } }, { "tag": "parameter", "name": "__result", "type": { "tag": ":pointer", "type": { "tag": ":double" } } }], "return-type": { "tag": ":int" } },
172
+{ "tag": "function", "name": "lrand48_r", "location": "/usr/include/stdlib.h:429:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__buffer", "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "drand48_data", "id": 0 } } }, { "tag": "parameter", "name": "__result", "type": { "tag": ":pointer", "type": { "tag": ":long" } } }], "return-type": { "tag": ":int" } },
173
+{ "tag": "function", "name": "nrand48_r", "location": "/usr/include/stdlib.h:432:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__xsubi", "type": { "tag": ":array", "type": { "tag": ":unsigned-short" }, "size": 3 } }, { "tag": "parameter", "name": "__buffer", "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "drand48_data", "id": 0 } } }, { "tag": "parameter", "name": "__result", "type": { "tag": ":pointer", "type": { "tag": ":long" } } }], "return-type": { "tag": ":int" } },
174
+{ "tag": "function", "name": "mrand48_r", "location": "/usr/include/stdlib.h:438:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__buffer", "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "drand48_data", "id": 0 } } }, { "tag": "parameter", "name": "__result", "type": { "tag": ":pointer", "type": { "tag": ":long" } } }], "return-type": { "tag": ":int" } },
175
+{ "tag": "function", "name": "jrand48_r", "location": "/usr/include/stdlib.h:441:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__xsubi", "type": { "tag": ":array", "type": { "tag": ":unsigned-short" }, "size": 3 } }, { "tag": "parameter", "name": "__buffer", "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "drand48_data", "id": 0 } } }, { "tag": "parameter", "name": "__result", "type": { "tag": ":pointer", "type": { "tag": ":long" } } }], "return-type": { "tag": ":int" } },
176
+{ "tag": "function", "name": "srand48_r", "location": "/usr/include/stdlib.h:447:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__seedval", "type": { "tag": ":long" } }, { "tag": "parameter", "name": "__buffer", "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "drand48_data", "id": 0 } } }], "return-type": { "tag": ":int" } },
177
+{ "tag": "function", "name": "seed48_r", "location": "/usr/include/stdlib.h:450:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__seed16v", "type": { "tag": ":array", "type": { "tag": ":unsigned-short" }, "size": 3 } }, { "tag": "parameter", "name": "__buffer", "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "drand48_data", "id": 0 } } }], "return-type": { "tag": ":int" } },
178
+{ "tag": "function", "name": "lcong48_r", "location": "/usr/include/stdlib.h:453:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__param", "type": { "tag": ":array", "type": { "tag": ":unsigned-short" }, "size": 7 } }, { "tag": "parameter", "name": "__buffer", "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "drand48_data", "id": 0 } } }], "return-type": { "tag": ":int" } },
179
+{ "tag": "function", "name": "malloc", "location": "/usr/include/stdlib.h:465:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__size", "type": { "tag": "size_t" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":void" } } },
180
+{ "tag": "function", "name": "calloc", "location": "/usr/include/stdlib.h:467:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__nmemb", "type": { "tag": "size_t" } }, { "tag": "parameter", "name": "__size", "type": { "tag": "size_t" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":void" } } },
181
+{ "tag": "function", "name": "realloc", "location": "/usr/include/stdlib.h:479:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__ptr", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__size", "type": { "tag": "size_t" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":void" } } },
182
+{ "tag": "function", "name": "free", "location": "/usr/include/stdlib.h:482:13", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__ptr", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": ":void" } },
183
+{ "tag": "function", "name": "cfree", "location": "/usr/include/stdlib.h:487:13", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__ptr", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": ":void" } },
184
+{ "tag": "function", "name": "alloca", "location": "/usr/include/alloca.h:32:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__size", "type": { "tag": "size_t" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":void" } } },
185
+{ "tag": "function", "name": "valloc", "location": "/usr/include/stdlib.h:497:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__size", "type": { "tag": "size_t" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":void" } } },
186
+{ "tag": "function", "name": "posix_memalign", "location": "/usr/include/stdlib.h:502:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__memptr", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":void" } } } }, { "tag": "parameter", "name": "__alignment", "type": { "tag": "size_t" } }, { "tag": "parameter", "name": "__size", "type": { "tag": "size_t" } }], "return-type": { "tag": ":int" } },
187
+{ "tag": "function", "name": "abort", "location": "/usr/include/stdlib.h:514:13", "variadic": false, "parameters": [], "return-type": { "tag": ":void" } },
188
+{ "tag": "function", "name": "atexit", "location": "/usr/include/stdlib.h:518:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__func", "type": { "tag": ":function-pointer" } }], "return-type": { "tag": ":int" } },
189
+{ "tag": "function", "name": "on_exit", "location": "/usr/include/stdlib.h:534:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__func", "type": { "tag": ":function-pointer" } }, { "tag": "parameter", "name": "__arg", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": ":int" } },
190
+{ "tag": "function", "name": "exit", "location": "/usr/include/stdlib.h:542:13", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__status", "type": { "tag": ":int" } }], "return-type": { "tag": ":void" } },
191
+{ "tag": "function", "name": "_Exit", "location": "/usr/include/stdlib.h:556:13", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__status", "type": { "tag": ":int" } }], "return-type": { "tag": ":void" } },
192
+{ "tag": "function", "name": "getenv", "location": "/usr/include/stdlib.h:563:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__name", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
193
+{ "tag": "function", "name": "putenv", "location": "/usr/include/stdlib.h:577:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__string", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":int" } },
194
+{ "tag": "function", "name": "setenv", "location": "/usr/include/stdlib.h:583:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__name", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__value", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__replace", "type": { "tag": ":int" } }], "return-type": { "tag": ":int" } },
195
+{ "tag": "function", "name": "unsetenv", "location": "/usr/include/stdlib.h:587:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__name", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":int" } },
196
+{ "tag": "function", "name": "clearenv", "location": "/usr/include/stdlib.h:594:12", "variadic": false, "parameters": [], "return-type": { "tag": ":int" } },
197
+{ "tag": "function", "name": "mktemp", "location": "/usr/include/stdlib.h:605:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__template", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
198
+{ "tag": "function", "name": "mkstemp", "location": "/usr/include/stdlib.h:619:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__template", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":int" } },
199
+{ "tag": "function", "name": "mkstemps", "location": "/usr/include/stdlib.h:641:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__template", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__suffixlen", "type": { "tag": ":int" } }], "return-type": { "tag": ":int" } },
200
+{ "tag": "function", "name": "mkdtemp", "location": "/usr/include/stdlib.h:662:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__template", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
201
+{ "tag": "function", "name": "system", "location": "/usr/include/stdlib.h:716:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__command", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":int" } },
202
+{ "tag": "function", "name": "realpath", "location": "/usr/include/stdlib.h:733:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__name", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__resolved", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
203
+{ "tag": "typedef", "name": "__compar_fn_t", "location": "/usr/include/stdlib.h:741:15", "type": { "tag": ":function-pointer" } },
204
+{ "tag": "function", "name": "bsearch", "location": "/usr/include/stdlib.h:754:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__key", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__base", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__nmemb", "type": { "tag": "size_t" } }, { "tag": "parameter", "name": "__size", "type": { "tag": "size_t" } }, { "tag": "parameter", "name": "__compar", "type": { "tag": "__compar_fn_t" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":void" } } },
205
+{ "tag": "function", "name": "qsort", "location": "/usr/include/stdlib.h:760:13", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__base", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__nmemb", "type": { "tag": "size_t" } }, { "tag": "parameter", "name": "__size", "type": { "tag": "size_t" } }, { "tag": "parameter", "name": "__compar", "type": { "tag": "__compar_fn_t" } }], "return-type": { "tag": ":void" } },
206
+{ "tag": "function", "name": "abs", "location": "/usr/include/stdlib.h:770:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":int" } }], "return-type": { "tag": ":int" } },
207
+{ "tag": "function", "name": "labs", "location": "/usr/include/stdlib.h:771:17", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":long" } }], "return-type": { "tag": ":long" } },
208
+{ "tag": "function", "name": "llabs", "location": "/usr/include/stdlib.h:775:36", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":long-long" } }], "return-type": { "tag": ":long-long" } },
209
+{ "tag": "function", "name": "div", "location": "/usr/include/stdlib.h:784:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__numer", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__denom", "type": { "tag": ":int" } }], "return-type": { "tag": "div_t" } },
210
+{ "tag": "function", "name": "ldiv", "location": "/usr/include/stdlib.h:786:15", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__numer", "type": { "tag": ":long" } }, { "tag": "parameter", "name": "__denom", "type": { "tag": ":long" } }], "return-type": { "tag": "ldiv_t" } },
211
+{ "tag": "function", "name": "lldiv", "location": "/usr/include/stdlib.h:792:30", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__numer", "type": { "tag": ":long-long" } }, { "tag": "parameter", "name": "__denom", "type": { "tag": ":long-long" } }], "return-type": { "tag": "lldiv_t" } },
212
+{ "tag": "function", "name": "ecvt", "location": "/usr/include/stdlib.h:807:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__value", "type": { "tag": ":double" } }, { "tag": "parameter", "name": "__ndigit", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__decpt", "type": { "tag": ":pointer", "type": { "tag": ":int" } } }, { "tag": "parameter", "name": "__sign", "type": { "tag": ":pointer", "type": { "tag": ":int" } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
213
+{ "tag": "function", "name": "fcvt", "location": "/usr/include/stdlib.h:813:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__value", "type": { "tag": ":double" } }, { "tag": "parameter", "name": "__ndigit", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__decpt", "type": { "tag": ":pointer", "type": { "tag": ":int" } } }, { "tag": "parameter", "name": "__sign", "type": { "tag": ":pointer", "type": { "tag": ":int" } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
214
+{ "tag": "function", "name": "gcvt", "location": "/usr/include/stdlib.h:819:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__value", "type": { "tag": ":double" } }, { "tag": "parameter", "name": "__ndigit", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__buf", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
215
+{ "tag": "function", "name": "qecvt", "location": "/usr/include/stdlib.h:825:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__value", "type": { "tag": ":long-double" } }, { "tag": "parameter", "name": "__ndigit", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__decpt", "type": { "tag": ":pointer", "type": { "tag": ":int" } } }, { "tag": "parameter", "name": "__sign", "type": { "tag": ":pointer", "type": { "tag": ":int" } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
216
+{ "tag": "function", "name": "qfcvt", "location": "/usr/include/stdlib.h:828:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__value", "type": { "tag": ":long-double" } }, { "tag": "parameter", "name": "__ndigit", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__decpt", "type": { "tag": ":pointer", "type": { "tag": ":int" } } }, { "tag": "parameter", "name": "__sign", "type": { "tag": ":pointer", "type": { "tag": ":int" } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
217
+{ "tag": "function", "name": "qgcvt", "location": "/usr/include/stdlib.h:831:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__value", "type": { "tag": ":long-double" } }, { "tag": "parameter", "name": "__ndigit", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__buf", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
218
+{ "tag": "function", "name": "ecvt_r", "location": "/usr/include/stdlib.h:837:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__value", "type": { "tag": ":double" } }, { "tag": "parameter", "name": "__ndigit", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__decpt", "type": { "tag": ":pointer", "type": { "tag": ":int" } } }, { "tag": "parameter", "name": "__sign", "type": { "tag": ":pointer", "type": { "tag": ":int" } } }, { "tag": "parameter", "name": "__buf", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__len", "type": { "tag": "size_t" } }], "return-type": { "tag": ":int" } },
219
+{ "tag": "function", "name": "fcvt_r", "location": "/usr/include/stdlib.h:840:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__value", "type": { "tag": ":double" } }, { "tag": "parameter", "name": "__ndigit", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__decpt", "type": { "tag": ":pointer", "type": { "tag": ":int" } } }, { "tag": "parameter", "name": "__sign", "type": { "tag": ":pointer", "type": { "tag": ":int" } } }, { "tag": "parameter", "name": "__buf", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__len", "type": { "tag": "size_t" } }], "return-type": { "tag": ":int" } },
220
+{ "tag": "function", "name": "qecvt_r", "location": "/usr/include/stdlib.h:844:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__value", "type": { "tag": ":long-double" } }, { "tag": "parameter", "name": "__ndigit", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__decpt", "type": { "tag": ":pointer", "type": { "tag": ":int" } } }, { "tag": "parameter", "name": "__sign", "type": { "tag": ":pointer", "type": { "tag": ":int" } } }, { "tag": "parameter", "name": "__buf", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__len", "type": { "tag": "size_t" } }], "return-type": { "tag": ":int" } },
221
+{ "tag": "function", "name": "qfcvt_r", "location": "/usr/include/stdlib.h:848:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__value", "type": { "tag": ":long-double" } }, { "tag": "parameter", "name": "__ndigit", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__decpt", "type": { "tag": ":pointer", "type": { "tag": ":int" } } }, { "tag": "parameter", "name": "__sign", "type": { "tag": ":pointer", "type": { "tag": ":int" } } }, { "tag": "parameter", "name": "__buf", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__len", "type": { "tag": "size_t" } }], "return-type": { "tag": ":int" } },
222
+{ "tag": "function", "name": "mblen", "location": "/usr/include/stdlib.h:859:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }], "return-type": { "tag": ":int" } },
223
+{ "tag": "function", "name": "mbtowc", "location": "/usr/include/stdlib.h:862:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__pwc", "type": { "tag": ":pointer", "type": { "tag": "wchar_t" } } }, { "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }], "return-type": { "tag": ":int" } },
224
+{ "tag": "function", "name": "wctomb", "location": "/usr/include/stdlib.h:866:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__wchar", "type": { "tag": "wchar_t" } }], "return-type": { "tag": ":int" } },
225
+{ "tag": "function", "name": "mbstowcs", "location": "/usr/include/stdlib.h:870:15", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__pwcs", "type": { "tag": ":pointer", "type": { "tag": "wchar_t" } } }, { "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }], "return-type": { "tag": "size_t" } },
226
+{ "tag": "function", "name": "wcstombs", "location": "/usr/include/stdlib.h:873:15", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__pwcs", "type": { "tag": ":pointer", "type": { "tag": "wchar_t" } } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }], "return-type": { "tag": "size_t" } },
227
+{ "tag": "function", "name": "rpmatch", "location": "/usr/include/stdlib.h:884:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__response", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":int" } },
228
+{ "tag": "function", "name": "getsubopt", "location": "/usr/include/stdlib.h:895:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__optionp", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char" } } } }, { "tag": "parameter", "name": "__tokens", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char" } } } }, { "tag": "parameter", "name": "__valuep", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char" } } } }], "return-type": { "tag": ":int" } },
229
+{ "tag": "function", "name": "getloadavg", "location": "/usr/include/stdlib.h:947:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__loadavg", "type": { "tag": ":pointer", "type": { "tag": ":double" } } }, { "tag": "parameter", "name": "__nelem", "type": { "tag": ":int" } }], "return-type": { "tag": ":int" } },
230
+{ "tag": "struct", "name": "_IO_FILE", "id": 0, "location": "/usr/include/stdio.h:44:8", "bit-size": 0, "bit-alignment": 0, "fields": [] },
231
+{ "tag": "typedef", "name": "FILE", "location": "/usr/include/stdio.h:48:25", "type": { "tag": ":struct", "name": "_IO_FILE", "id": 0 } },
232
+{ "tag": "typedef", "name": "__FILE", "location": "/usr/include/stdio.h:64:25", "type": { "tag": ":struct", "name": "_IO_FILE", "id": 0 } },
233
+{ "tag": "typedef", "name": "__mbstate_t", "location": "/usr/include/wchar.h:94:3", "type": { "tag": "struct", "name": "", "id": 20, "location": "/usr/include/wchar.h:82:9", "bit-size": 64, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "__count", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "__value", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "union", "name": "", "id": 21, "location": "/usr/include/wchar.h:85:3", "bit-size": 32, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "__wch", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":unsigned-int" } }, { "tag": "field", "name": "__wchb", "bit-offset": 0, "bit-size": 32, "bit-alignment": 8, "type": { "tag": ":array", "type": { "tag": ":char" }, "size": 4 } }] } }] } },
234
+{ "tag": "typedef", "name": "_G_fpos_t", "location": "/usr/include/_G_config.h:25:3", "type": { "tag": "struct", "name": "", "id": 22, "location": "/usr/include/_G_config.h:21:9", "bit-size": 128, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "__pos", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": "__off_t" } }, { "tag": "field", "name": "__state", "bit-offset": 64, "bit-size": 64, "bit-alignment": 32, "type": { "tag": "__mbstate_t" } }] } },
235
+{ "tag": "typedef", "name": "_G_fpos64_t", "location": "/usr/include/_G_config.h:30:3", "type": { "tag": "struct", "name": "", "id": 23, "location": "/usr/include/_G_config.h:26:9", "bit-size": 128, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "__pos", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": "__off64_t" } }, { "tag": "field", "name": "__state", "bit-offset": 64, "bit-size": 64, "bit-alignment": 32, "type": { "tag": "__mbstate_t" } }] } },
236
+{ "tag": "typedef", "name": "__gnuc_va_list", "location": "/usr/include/stdarg.h:40:27", "type": { "tag": "__builtin_va_list" } },
237
+{ "tag": "struct", "name": "_IO_jump_t", "id": 0, "location": "/usr/include/libio.h:145:8", "bit-size": 0, "bit-alignment": 0, "fields": [] },
238
+{ "tag": "struct", "name": "_IO_FILE", "id": 0, "location": "/usr/include/libio.h:145:28", "bit-size": 0, "bit-alignment": 0, "fields": [] },
239
+{ "tag": "typedef", "name": "_IO_lock_t", "location": "/usr/include/libio.h:155:14", "type": { "tag": ":void" } },
240
+{ "tag": "struct", "name": "_IO_marker", "id": 0, "location": "/usr/include/libio.h:161:8", "bit-size": 192, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "_next", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "_IO_marker", "id": 0 } } }, { "tag": "field", "name": "_sbuf", "bit-offset": 64, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "_IO_FILE", "id": 0 } } }, { "tag": "field", "name": "_pos", "bit-offset": 128, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }] },
241
+{ "tag": "enum", "name": "__codecvt_result", "id": 0, "location": "/usr/include/libio.h:181:6", "fields": [{ "tag": "field", "name": "__codecvt_ok", "value": 0 }, { "tag": "field", "name": "__codecvt_partial", "value": 1 }, { "tag": "field", "name": "__codecvt_error", "value": 2 }, { "tag": "field", "name": "__codecvt_noconv", "value": 3 }] },
242
+{ "tag": "struct", "name": "_IO_FILE", "id": 0, "location": "/usr/include/libio.h:246:8", "bit-size": 1728, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "_flags", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "_IO_read_ptr", "bit-offset": 64, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "field", "name": "_IO_read_end", "bit-offset": 128, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "field", "name": "_IO_read_base", "bit-offset": 192, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "field", "name": "_IO_write_base", "bit-offset": 256, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "field", "name": "_IO_write_ptr", "bit-offset": 320, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "field", "name": "_IO_write_end", "bit-offset": 384, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "field", "name": "_IO_buf_base", "bit-offset": 448, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "field", "name": "_IO_buf_end", "bit-offset": 512, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "field", "name": "_IO_save_base", "bit-offset": 576, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "field", "name": "_IO_backup_base", "bit-offset": 640, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "field", "name": "_IO_save_end", "bit-offset": 704, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "field", "name": "_markers", "bit-offset": 768, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "_IO_marker", "id": 0 } } }, { "tag": "field", "name": "_chain", "bit-offset": 832, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "_IO_FILE", "id": 0 } } }, { "tag": "field", "name": "_fileno", "bit-offset": 896, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "_flags2", "bit-offset": 928, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "_old_offset", "bit-offset": 960, "bit-size": 64, "bit-alignment": 64, "type": { "tag": "__off_t" } }, { "tag": "field", "name": "_cur_column", "bit-offset": 1024, "bit-size": 16, "bit-alignment": 16, "type": { "tag": ":unsigned-short" } }, { "tag": "field", "name": "_vtable_offset", "bit-offset": 1040, "bit-size": 8, "bit-alignment": 8, "type": { "tag": ":signed-char" } }, { "tag": "field", "name": "_shortbuf", "bit-offset": 1048, "bit-size": 8, "bit-alignment": 8, "type": { "tag": ":array", "type": { "tag": ":char" }, "size": 1 } }, { "tag": "field", "name": "_lock", "bit-offset": 1088, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "field", "name": "_offset", "bit-offset": 1152, "bit-size": 64, "bit-alignment": 64, "type": { "tag": "__off64_t" } }, { "tag": "field", "name": "__pad1", "bit-offset": 1216, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "field", "name": "__pad2", "bit-offset": 1280, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "field", "name": "__pad3", "bit-offset": 1344, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "field", "name": "__pad4", "bit-offset": 1408, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "field", "name": "__pad5", "bit-offset": 1472, "bit-size": 64, "bit-alignment": 64, "type": { "tag": "size_t" } }, { "tag": "field", "name": "_mode", "bit-offset": 1536, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "_unused2", "bit-offset": 1568, "bit-size": 160, "bit-alignment": 8, "type": { "tag": ":array", "type": { "tag": ":char" }, "size": 20 } }] },
243
+{ "tag": "typedef", "name": "_IO_FILE", "location": "/usr/include/libio.h:316:25", "type": { "tag": ":struct", "name": "_IO_FILE", "id": 0 } },
244
+{ "tag": "struct", "name": "_IO_FILE_plus", "id": 0, "location": "/usr/include/libio.h:319:8", "bit-size": 0, "bit-alignment": 0, "fields": [] },
245
+{ "tag": "extern", "name": "_IO_2_1_stdin_", "location": "/usr/include/libio.h:321:29", "type": { "tag": ":struct", "name": "_IO_FILE_plus", "id": 0 } },
246
+{ "tag": "extern", "name": "_IO_2_1_stdout_", "location": "/usr/include/libio.h:322:29", "type": { "tag": ":struct", "name": "_IO_FILE_plus", "id": 0 } },
247
+{ "tag": "extern", "name": "_IO_2_1_stderr_", "location": "/usr/include/libio.h:323:29", "type": { "tag": ":struct", "name": "_IO_FILE_plus", "id": 0 } },
248
+{ "tag": "typedef", "name": "__io_read_fn", "location": "/usr/include/libio.h:339:19", "type": { "tag": ":function" } },
249
+{ "tag": "typedef", "name": "__io_write_fn", "location": "/usr/include/libio.h:347:19", "type": { "tag": ":function" } },
250
+{ "tag": "typedef", "name": "__io_seek_fn", "location": "/usr/include/libio.h:356:13", "type": { "tag": ":function" } },
251
+{ "tag": "typedef", "name": "__io_close_fn", "location": "/usr/include/libio.h:359:13", "type": { "tag": ":function" } },
252
+{ "tag": "function", "name": "__underflow", "location": "/usr/include/libio.h:391:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": "_IO_FILE" } } }], "return-type": { "tag": ":int" } },
253
+{ "tag": "function", "name": "__uflow", "location": "/usr/include/libio.h:392:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": "_IO_FILE" } } }], "return-type": { "tag": ":int" } },
254
+{ "tag": "function", "name": "__overflow", "location": "/usr/include/libio.h:393:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": "_IO_FILE" } } }, { "tag": "parameter", "name": "", "type": { "tag": ":int" } }], "return-type": { "tag": ":int" } },
255
+{ "tag": "function", "name": "_IO_getc", "location": "/usr/include/libio.h:435:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__fp", "type": { "tag": ":pointer", "type": { "tag": "_IO_FILE" } } }], "return-type": { "tag": ":int" } },
256
+{ "tag": "function", "name": "_IO_putc", "location": "/usr/include/libio.h:436:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__c", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__fp", "type": { "tag": ":pointer", "type": { "tag": "_IO_FILE" } } }], "return-type": { "tag": ":int" } },
257
+{ "tag": "function", "name": "_IO_feof", "location": "/usr/include/libio.h:437:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__fp", "type": { "tag": ":pointer", "type": { "tag": "_IO_FILE" } } }], "return-type": { "tag": ":int" } },
258
+{ "tag": "function", "name": "_IO_ferror", "location": "/usr/include/libio.h:438:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__fp", "type": { "tag": ":pointer", "type": { "tag": "_IO_FILE" } } }], "return-type": { "tag": ":int" } },
259
+{ "tag": "function", "name": "_IO_peekc_locked", "location": "/usr/include/libio.h:440:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__fp", "type": { "tag": ":pointer", "type": { "tag": "_IO_FILE" } } }], "return-type": { "tag": ":int" } },
260
+{ "tag": "function", "name": "_IO_flockfile", "location": "/usr/include/libio.h:446:13", "variadic": false, "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": "_IO_FILE" } } }], "return-type": { "tag": ":void" } },
261
+{ "tag": "function", "name": "_IO_funlockfile", "location": "/usr/include/libio.h:447:13", "variadic": false, "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": "_IO_FILE" } } }], "return-type": { "tag": ":void" } },
262
+{ "tag": "function", "name": "_IO_ftrylockfile", "location": "/usr/include/libio.h:448:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": "_IO_FILE" } } }], "return-type": { "tag": ":int" } },
263
+{ "tag": "function", "name": "_IO_vfscanf", "location": "/usr/include/libio.h:465:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": "_IO_FILE" } } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "", "type": { "tag": "__gnuc_va_list" } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":int" } } }], "return-type": { "tag": ":int" } },
264
+{ "tag": "function", "name": "_IO_vfprintf", "location": "/usr/include/libio.h:467:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": "_IO_FILE" } } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "", "type": { "tag": "__gnuc_va_list" } }], "return-type": { "tag": ":int" } },
265
+{ "tag": "function", "name": "_IO_padn", "location": "/usr/include/libio.h:469:20", "variadic": false, "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": "_IO_FILE" } } }, { "tag": "parameter", "name": "", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "", "type": { "tag": "__ssize_t" } }], "return-type": { "tag": "__ssize_t" } },
266
+{ "tag": "function", "name": "_IO_sgetn", "location": "/usr/include/libio.h:470:19", "variadic": false, "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": "_IO_FILE" } } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "", "type": { "tag": "size_t" } }], "return-type": { "tag": "size_t" } },
267
+{ "tag": "function", "name": "_IO_seekoff", "location": "/usr/include/libio.h:472:20", "variadic": false, "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": "_IO_FILE" } } }, { "tag": "parameter", "name": "", "type": { "tag": "__off64_t" } }, { "tag": "parameter", "name": "", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "", "type": { "tag": ":int" } }], "return-type": { "tag": "__off64_t" } },
268
+{ "tag": "function", "name": "_IO_seekpos", "location": "/usr/include/libio.h:473:20", "variadic": false, "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": "_IO_FILE" } } }, { "tag": "parameter", "name": "", "type": { "tag": "__off64_t" } }, { "tag": "parameter", "name": "", "type": { "tag": ":int" } }], "return-type": { "tag": "__off64_t" } },
269
+{ "tag": "function", "name": "_IO_free_backup_area", "location": "/usr/include/libio.h:475:13", "variadic": false, "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": "_IO_FILE" } } }], "return-type": { "tag": ":void" } },
270
+{ "tag": "typedef", "name": "va_list", "location": "/usr/include/stdio.h:79:20", "type": { "tag": "__gnuc_va_list" } },
271
+{ "tag": "typedef", "name": "fpos_t", "location": "/usr/include/stdio.h:110:19", "type": { "tag": "_G_fpos_t" } },
272
+{ "tag": "extern", "name": "stdin", "location": "/usr/include/stdio.h:168:25", "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "_IO_FILE", "id": 0 } } },
273
+{ "tag": "extern", "name": "stdout", "location": "/usr/include/stdio.h:169:25", "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "_IO_FILE", "id": 0 } } },
274
+{ "tag": "extern", "name": "stderr", "location": "/usr/include/stdio.h:170:25", "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "_IO_FILE", "id": 0 } } },
275
+{ "tag": "function", "name": "remove", "location": "/usr/include/stdio.h:178:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__filename", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":int" } },
276
+{ "tag": "function", "name": "rename", "location": "/usr/include/stdio.h:180:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__old", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__new", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":int" } },
277
+{ "tag": "function", "name": "renameat", "location": "/usr/include/stdio.h:185:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__oldfd", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__old", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__newfd", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__new", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":int" } },
278
+{ "tag": "function", "name": "tmpfile", "location": "/usr/include/stdio.h:195:14", "variadic": false, "parameters": [], "return-type": { "tag": ":pointer", "type": { "tag": "FILE" } } },
279
+{ "tag": "function", "name": "tmpnam", "location": "/usr/include/stdio.h:209:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
280
+{ "tag": "function", "name": "tmpnam_r", "location": "/usr/include/stdio.h:215:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
281
+{ "tag": "function", "name": "tempnam", "location": "/usr/include/stdio.h:227:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__dir", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__pfx", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
282
+{ "tag": "function", "name": "fclose", "location": "/usr/include/stdio.h:237:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":int" } },
283
+{ "tag": "function", "name": "fflush", "location": "/usr/include/stdio.h:242:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":int" } },
284
+{ "tag": "function", "name": "fflush_unlocked", "location": "/usr/include/stdio.h:252:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":int" } },
285
+{ "tag": "function", "name": "fopen", "location": "/usr/include/stdio.h:272:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__filename", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__modes", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":pointer", "type": { "tag": "FILE" } } },
286
+{ "tag": "function", "name": "freopen", "location": "/usr/include/stdio.h:278:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__filename", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__modes", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":pointer", "type": { "tag": "FILE" } } },
287
+{ "tag": "function", "name": "fdopen", "location": "/usr/include/stdio.h:306:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__fd", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__modes", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":pointer", "type": { "tag": "FILE" } } },
288
+{ "tag": "function", "name": "fmemopen", "location": "/usr/include/stdio.h:319:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__len", "type": { "tag": "size_t" } }, { "tag": "parameter", "name": "__modes", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":pointer", "type": { "tag": "FILE" } } },
289
+{ "tag": "function", "name": "open_memstream", "location": "/usr/include/stdio.h:325:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__bufloc", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char" } } } }, { "tag": "parameter", "name": "__sizeloc", "type": { "tag": ":pointer", "type": { "tag": "size_t" } } }], "return-type": { "tag": ":pointer", "type": { "tag": "FILE" } } },
290
+{ "tag": "function", "name": "setbuf", "location": "/usr/include/stdio.h:332:13", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }, { "tag": "parameter", "name": "__buf", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":void" } },
291
+{ "tag": "function", "name": "setvbuf", "location": "/usr/include/stdio.h:336:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }, { "tag": "parameter", "name": "__buf", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__modes", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }], "return-type": { "tag": ":int" } },
292
+{ "tag": "function", "name": "setbuffer", "location": "/usr/include/stdio.h:343:13", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }, { "tag": "parameter", "name": "__buf", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__size", "type": { "tag": "size_t" } }], "return-type": { "tag": ":void" } },
293
+{ "tag": "function", "name": "setlinebuf", "location": "/usr/include/stdio.h:347:13", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":void" } },
294
+{ "tag": "function", "name": "fprintf", "location": "/usr/include/stdio.h:356:12", "variadic": true, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }, { "tag": "parameter", "name": "__format", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":int" } },
295
+{ "tag": "function", "name": "printf", "location": "/usr/include/stdio.h:362:12", "variadic": true, "parameters": [{ "tag": "parameter", "name": "__format", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":int" } },
296
+{ "tag": "function", "name": "sprintf", "location": "/usr/include/stdio.h:364:12", "variadic": true, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__format", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":int" } },
297
+{ "tag": "function", "name": "vfprintf", "location": "/usr/include/stdio.h:371:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }, { "tag": "parameter", "name": "__format", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__arg", "type": { "tag": "__gnuc_va_list" } }], "return-type": { "tag": ":int" } },
298
+{ "tag": "function", "name": "vprintf", "location": "/usr/include/stdio.h:377:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__format", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__arg", "type": { "tag": "__gnuc_va_list" } }], "return-type": { "tag": ":int" } },
299
+{ "tag": "function", "name": "vsprintf", "location": "/usr/include/stdio.h:379:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__format", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__arg", "type": { "tag": "__gnuc_va_list" } }], "return-type": { "tag": ":int" } },
300
+{ "tag": "function", "name": "snprintf", "location": "/usr/include/stdio.h:386:12", "variadic": true, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__maxlen", "type": { "tag": "size_t" } }, { "tag": "parameter", "name": "__format", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":int" } },
301
+{ "tag": "function", "name": "vsnprintf", "location": "/usr/include/stdio.h:390:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__maxlen", "type": { "tag": "size_t" } }, { "tag": "parameter", "name": "__format", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__arg", "type": { "tag": "__gnuc_va_list" } }], "return-type": { "tag": ":int" } },
302
+{ "tag": "function", "name": "vdprintf", "location": "/usr/include/stdio.h:412:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__fd", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__fmt", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__arg", "type": { "tag": "__gnuc_va_list" } }], "return-type": { "tag": ":int" } },
303
+{ "tag": "function", "name": "dprintf", "location": "/usr/include/stdio.h:415:12", "variadic": true, "parameters": [{ "tag": "parameter", "name": "__fd", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__fmt", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":int" } },
304
+{ "tag": "function", "name": "fscanf", "location": "/usr/include/stdio.h:425:12", "variadic": true, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }, { "tag": "parameter", "name": "__format", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":int" } },
305
+{ "tag": "function", "name": "scanf", "location": "/usr/include/stdio.h:431:12", "variadic": true, "parameters": [{ "tag": "parameter", "name": "__format", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":int" } },
306
+{ "tag": "function", "name": "sscanf", "location": "/usr/include/stdio.h:433:12", "variadic": true, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__format", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":int" } },
307
+{ "tag": "function", "name": "fscanf", "location": "/usr/include/stdio.h:443:12 <Spelling=/usr/include/stdio.h:443:24>", "variadic": true, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }, { "tag": "parameter", "name": "__format", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":int" } },
308
+{ "tag": "function", "name": "scanf", "location": "/usr/include/stdio.h:446:12 <Spelling=/usr/include/stdio.h:446:24>", "variadic": true, "parameters": [{ "tag": "parameter", "name": "__format", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":int" } },
309
+{ "tag": "function", "name": "sscanf", "location": "/usr/include/stdio.h:448:12 <Spelling=/usr/include/stdio.h:448:28>", "variadic": true, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__format", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":int" } },
310
+{ "tag": "function", "name": "vfscanf", "location": "/usr/include/stdio.h:471:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }, { "tag": "parameter", "name": "__format", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__arg", "type": { "tag": "__gnuc_va_list" } }], "return-type": { "tag": ":int" } },
311
+{ "tag": "function", "name": "vscanf", "location": "/usr/include/stdio.h:479:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__format", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__arg", "type": { "tag": "__gnuc_va_list" } }], "return-type": { "tag": ":int" } },
312
+{ "tag": "function", "name": "vsscanf", "location": "/usr/include/stdio.h:483:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__format", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__arg", "type": { "tag": "__gnuc_va_list" } }], "return-type": { "tag": ":int" } },
313
+{ "tag": "function", "name": "vfscanf", "location": "/usr/include/stdio.h:494:12 <Spelling=/usr/include/stdio.h:494:24>", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }, { "tag": "parameter", "name": "__format", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__arg", "type": { "tag": "__gnuc_va_list" } }], "return-type": { "tag": ":int" } },
314
+{ "tag": "function", "name": "vscanf", "location": "/usr/include/stdio.h:499:12 <Spelling=/usr/include/stdio.h:499:24>", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__format", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__arg", "type": { "tag": "__gnuc_va_list" } }], "return-type": { "tag": ":int" } },
315
+{ "tag": "function", "name": "vsscanf", "location": "/usr/include/stdio.h:502:12 <Spelling=/usr/include/stdio.h:502:28>", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__format", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__arg", "type": { "tag": "__gnuc_va_list" } }], "return-type": { "tag": ":int" } },
316
+{ "tag": "function", "name": "fgetc", "location": "/usr/include/stdio.h:531:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":int" } },
317
+{ "tag": "function", "name": "getc", "location": "/usr/include/stdio.h:532:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":int" } },
318
+{ "tag": "function", "name": "getchar", "location": "/usr/include/stdio.h:538:12", "variadic": false, "parameters": [], "return-type": { "tag": ":int" } },
319
+{ "tag": "function", "name": "getc_unlocked", "location": "/usr/include/stdio.h:550:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":int" } },
320
+{ "tag": "function", "name": "getchar_unlocked", "location": "/usr/include/stdio.h:551:12", "variadic": false, "parameters": [], "return-type": { "tag": ":int" } },
321
+{ "tag": "function", "name": "fgetc_unlocked", "location": "/usr/include/stdio.h:561:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":int" } },
322
+{ "tag": "function", "name": "fputc", "location": "/usr/include/stdio.h:573:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__c", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":int" } },
323
+{ "tag": "function", "name": "putc", "location": "/usr/include/stdio.h:574:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__c", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":int" } },
324
+{ "tag": "function", "name": "putchar", "location": "/usr/include/stdio.h:580:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__c", "type": { "tag": ":int" } }], "return-type": { "tag": ":int" } },
325
+{ "tag": "function", "name": "fputc_unlocked", "location": "/usr/include/stdio.h:594:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__c", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":int" } },
326
+{ "tag": "function", "name": "putc_unlocked", "location": "/usr/include/stdio.h:602:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__c", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":int" } },
327
+{ "tag": "function", "name": "putchar_unlocked", "location": "/usr/include/stdio.h:603:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__c", "type": { "tag": ":int" } }], "return-type": { "tag": ":int" } },
328
+{ "tag": "function", "name": "getw", "location": "/usr/include/stdio.h:610:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":int" } },
329
+{ "tag": "function", "name": "putw", "location": "/usr/include/stdio.h:613:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__w", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":int" } },
330
+{ "tag": "function", "name": "fgets", "location": "/usr/include/stdio.h:622:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__n", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
331
+{ "tag": "function", "name": "gets", "location": "/usr/include/stdio.h:638:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
332
+{ "tag": "function", "name": "__getdelim", "location": "/usr/include/stdio.h:665:20", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__lineptr", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char" } } } }, { "tag": "parameter", "name": "__n", "type": { "tag": ":pointer", "type": { "tag": "size_t" } } }, { "tag": "parameter", "name": "__delimiter", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": "__ssize_t" } },
333
+{ "tag": "function", "name": "getdelim", "location": "/usr/include/stdio.h:668:20", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__lineptr", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char" } } } }, { "tag": "parameter", "name": "__n", "type": { "tag": ":pointer", "type": { "tag": "size_t" } } }, { "tag": "parameter", "name": "__delimiter", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": "__ssize_t" } },
334
+{ "tag": "function", "name": "getline", "location": "/usr/include/stdio.h:678:20", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__lineptr", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char" } } } }, { "tag": "parameter", "name": "__n", "type": { "tag": ":pointer", "type": { "tag": "size_t" } } }, { "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": "__ssize_t" } },
335
+{ "tag": "function", "name": "fputs", "location": "/usr/include/stdio.h:689:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":int" } },
336
+{ "tag": "function", "name": "puts", "location": "/usr/include/stdio.h:695:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":int" } },
337
+{ "tag": "function", "name": "ungetc", "location": "/usr/include/stdio.h:702:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__c", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":int" } },
338
+{ "tag": "function", "name": "fread", "location": "/usr/include/stdio.h:709:15", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__ptr", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__size", "type": { "tag": "size_t" } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }, { "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": "size_t" } },
339
+{ "tag": "function", "name": "fwrite", "location": "/usr/include/stdio.h:715:15", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__ptr", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__size", "type": { "tag": "size_t" } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }, { "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": "size_t" } },
340
+{ "tag": "function", "name": "fread_unlocked", "location": "/usr/include/stdio.h:737:15", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__ptr", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__size", "type": { "tag": "size_t" } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }, { "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": "size_t" } },
341
+{ "tag": "function", "name": "fwrite_unlocked", "location": "/usr/include/stdio.h:739:15", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__ptr", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__size", "type": { "tag": "size_t" } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }, { "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": "size_t" } },
342
+{ "tag": "function", "name": "fseek", "location": "/usr/include/stdio.h:749:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }, { "tag": "parameter", "name": "__off", "type": { "tag": ":long" } }, { "tag": "parameter", "name": "__whence", "type": { "tag": ":int" } }], "return-type": { "tag": ":int" } },
343
+{ "tag": "function", "name": "ftell", "location": "/usr/include/stdio.h:754:17", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":long" } },
344
+{ "tag": "function", "name": "rewind", "location": "/usr/include/stdio.h:759:13", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":void" } },
345
+{ "tag": "function", "name": "fseeko", "location": "/usr/include/stdio.h:773:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }, { "tag": "parameter", "name": "__off", "type": { "tag": "__off_t" } }, { "tag": "parameter", "name": "__whence", "type": { "tag": ":int" } }], "return-type": { "tag": ":int" } },
346
+{ "tag": "function", "name": "ftello", "location": "/usr/include/stdio.h:778:16", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": "__off_t" } },
347
+{ "tag": "function", "name": "fgetpos", "location": "/usr/include/stdio.h:798:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }, { "tag": "parameter", "name": "__pos", "type": { "tag": ":pointer", "type": { "tag": "fpos_t" } } }], "return-type": { "tag": ":int" } },
348
+{ "tag": "function", "name": "fsetpos", "location": "/usr/include/stdio.h:803:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }, { "tag": "parameter", "name": "__pos", "type": { "tag": ":pointer", "type": { "tag": "fpos_t" } } }], "return-type": { "tag": ":int" } },
349
+{ "tag": "function", "name": "clearerr", "location": "/usr/include/stdio.h:826:13", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":void" } },
350
+{ "tag": "function", "name": "feof", "location": "/usr/include/stdio.h:828:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":int" } },
351
+{ "tag": "function", "name": "ferror", "location": "/usr/include/stdio.h:830:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":int" } },
352
+{ "tag": "function", "name": "clearerr_unlocked", "location": "/usr/include/stdio.h:835:13", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":void" } },
353
+{ "tag": "function", "name": "feof_unlocked", "location": "/usr/include/stdio.h:836:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":int" } },
354
+{ "tag": "function", "name": "ferror_unlocked", "location": "/usr/include/stdio.h:837:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":int" } },
355
+{ "tag": "function", "name": "perror", "location": "/usr/include/stdio.h:846:13", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":void" } },
356
+{ "tag": "extern", "name": "sys_nerr", "location": "/usr/include/bits/sys_errlist.h:26:12", "type": { "tag": ":int" } },
357
+{ "tag": "extern", "name": "sys_errlist", "location": "/usr/include/bits/sys_errlist.h:27:26", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char" } } } },
358
+{ "tag": "function", "name": "fileno", "location": "/usr/include/stdio.h:858:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":int" } },
359
+{ "tag": "function", "name": "fileno_unlocked", "location": "/usr/include/stdio.h:863:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":int" } },
360
+{ "tag": "function", "name": "popen", "location": "/usr/include/stdio.h:873:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__command", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__modes", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":pointer", "type": { "tag": "FILE" } } },
361
+{ "tag": "function", "name": "pclose", "location": "/usr/include/stdio.h:879:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":int" } },
362
+{ "tag": "function", "name": "ctermid", "location": "/usr/include/stdio.h:885:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
363
+{ "tag": "function", "name": "flockfile", "location": "/usr/include/stdio.h:913:13", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":void" } },
364
+{ "tag": "function", "name": "ftrylockfile", "location": "/usr/include/stdio.h:917:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":int" } },
365
+{ "tag": "function", "name": "funlockfile", "location": "/usr/include/stdio.h:920:13", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":void" } },
366
+{ "tag": "function", "name": "memcpy", "location": "/usr/include/string.h:42:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__dest", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__src", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":void" } } },
367
+{ "tag": "function", "name": "memmove", "location": "/usr/include/string.h:46:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__dest", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__src", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":void" } } },
368
+{ "tag": "function", "name": "memccpy", "location": "/usr/include/string.h:54:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__dest", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__src", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__c", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":void" } } },
369
+{ "tag": "function", "name": "memset", "location": "/usr/include/string.h:62:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__c", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":void" } } },
370
+{ "tag": "function", "name": "memcmp", "location": "/usr/include/string.h:65:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s1", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__s2", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }], "return-type": { "tag": ":int" } },
371
+{ "tag": "function", "name": "memchr", "location": "/usr/include/string.h:92:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__c", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":void" } } },
372
+{ "tag": "function", "name": "strcpy", "location": "/usr/include/string.h:125:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__dest", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__src", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
373
+{ "tag": "function", "name": "strncpy", "location": "/usr/include/string.h:128:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__dest", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__src", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
374
+{ "tag": "function", "name": "strcat", "location": "/usr/include/string.h:133:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__dest", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__src", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
375
+{ "tag": "function", "name": "strncat", "location": "/usr/include/string.h:136:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__dest", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__src", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
376
+{ "tag": "function", "name": "strcmp", "location": "/usr/include/string.h:140:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s1", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__s2", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":int" } },
377
+{ "tag": "function", "name": "strncmp", "location": "/usr/include/string.h:143:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s1", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__s2", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }], "return-type": { "tag": ":int" } },
378
+{ "tag": "function", "name": "strcoll", "location": "/usr/include/string.h:147:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s1", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__s2", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":int" } },
379
+{ "tag": "function", "name": "strxfrm", "location": "/usr/include/string.h:150:15", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__dest", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__src", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }], "return-type": { "tag": "size_t" } },
380
+{ "tag": "struct", "name": "__locale_struct", "id": 0, "location": "/usr/include/xlocale.h:27:16", "bit-size": 1856, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "__locales", "bit-offset": 0, "bit-size": 832, "bit-alignment": 64, "type": { "tag": ":array", "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "__locale_data", "id": 0 } }, "size": 13 } }, { "tag": "field", "name": "__ctype_b", "bit-offset": 832, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":unsigned-short" } } }, { "tag": "field", "name": "__ctype_tolower", "bit-offset": 896, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":int" } } }, { "tag": "field", "name": "__ctype_toupper", "bit-offset": 960, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":int" } } }, { "tag": "field", "name": "__names", "bit-offset": 1024, "bit-size": 832, "bit-alignment": 64, "type": { "tag": ":array", "type": { "tag": ":pointer", "type": { "tag": ":char" } }, "size": 13 } }] },
381
+{ "tag": "typedef", "name": "__locale_t", "location": "/usr/include/xlocale.h:39:4", "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "__locale_struct", "id": 0 } } },
382
+{ "tag": "typedef", "name": "locale_t", "location": "/usr/include/xlocale.h:42:20", "type": { "tag": "__locale_t" } },
383
+{ "tag": "function", "name": "strcoll_l", "location": "/usr/include/string.h:162:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s1", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__s2", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__l", "type": { "tag": "__locale_t" } }], "return-type": { "tag": ":int" } },
384
+{ "tag": "function", "name": "strxfrm_l", "location": "/usr/include/string.h:165:15", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__dest", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__src", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }, { "tag": "parameter", "name": "__l", "type": { "tag": "__locale_t" } }], "return-type": { "tag": "size_t" } },
385
+{ "tag": "function", "name": "strdup", "location": "/usr/include/string.h:172:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
386
+{ "tag": "function", "name": "strndup", "location": "/usr/include/string.h:180:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__string", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
387
+{ "tag": "function", "name": "strchr", "location": "/usr/include/string.h:232:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__c", "type": { "tag": ":int" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
388
+{ "tag": "function", "name": "strrchr", "location": "/usr/include/string.h:259:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__c", "type": { "tag": ":int" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
389
+{ "tag": "function", "name": "strcspn", "location": "/usr/include/string.h:281:15", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__reject", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": "size_t" } },
390
+{ "tag": "function", "name": "strspn", "location": "/usr/include/string.h:285:15", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__accept", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": "size_t" } },
391
+{ "tag": "function", "name": "strpbrk", "location": "/usr/include/string.h:311:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__accept", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
392
+{ "tag": "function", "name": "strstr", "location": "/usr/include/string.h:338:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__haystack", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__needle", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
393
+{ "tag": "function", "name": "strtok", "location": "/usr/include/string.h:344:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__delim", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
394
+{ "tag": "function", "name": "__strtok_r", "location": "/usr/include/string.h:350:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__delim", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__save_ptr", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char" } } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
395
+{ "tag": "function", "name": "strtok_r", "location": "/usr/include/string.h:355:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__delim", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__save_ptr", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char" } } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
396
+{ "tag": "function", "name": "strlen", "location": "/usr/include/string.h:395:15", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": "size_t" } },
397
+{ "tag": "function", "name": "strnlen", "location": "/usr/include/string.h:402:15", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__string", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__maxlen", "type": { "tag": "size_t" } }], "return-type": { "tag": "size_t" } },
398
+{ "tag": "function", "name": "strerror", "location": "/usr/include/string.h:409:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__errnum", "type": { "tag": ":int" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
399
+{ "tag": "function", "name": "strerror_r", "location": "/usr/include/string.h:423:12 <Spelling=/usr/include/string.h:423:28>", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__errnum", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__buf", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__buflen", "type": { "tag": "size_t" } }], "return-type": { "tag": ":int" } },
400
+{ "tag": "function", "name": "strerror_l", "location": "/usr/include/string.h:441:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__errnum", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__l", "type": { "tag": "__locale_t" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
401
+{ "tag": "function", "name": "__bzero", "location": "/usr/include/string.h:447:13", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }], "return-type": { "tag": ":void" } },
402
+{ "tag": "function", "name": "bcopy", "location": "/usr/include/string.h:451:13", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__src", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__dest", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }], "return-type": { "tag": ":void" } },
403
+{ "tag": "function", "name": "bzero", "location": "/usr/include/string.h:455:13", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }], "return-type": { "tag": ":void" } },
404
+{ "tag": "function", "name": "bcmp", "location": "/usr/include/string.h:458:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s1", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__s2", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }], "return-type": { "tag": ":int" } },
405
+{ "tag": "function", "name": "index", "location": "/usr/include/string.h:485:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__c", "type": { "tag": ":int" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
406
+{ "tag": "function", "name": "rindex", "location": "/usr/include/string.h:513:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__c", "type": { "tag": ":int" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
407
+{ "tag": "function", "name": "ffs", "location": "/usr/include/string.h:519:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__i", "type": { "tag": ":int" } }], "return-type": { "tag": ":int" } },
408
+{ "tag": "function", "name": "strcasecmp", "location": "/usr/include/string.h:532:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s1", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__s2", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":int" } },
409
+{ "tag": "function", "name": "strncasecmp", "location": "/usr/include/string.h:536:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s1", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__s2", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }], "return-type": { "tag": ":int" } },
410
+{ "tag": "function", "name": "strsep", "location": "/usr/include/string.h:555:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stringp", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char" } } } }, { "tag": "parameter", "name": "__delim", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
411
+{ "tag": "function", "name": "strsignal", "location": "/usr/include/string.h:562:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__sig", "type": { "tag": ":int" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
412
+{ "tag": "function", "name": "__stpcpy", "location": "/usr/include/string.h:565:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__dest", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__src", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
413
+{ "tag": "function", "name": "stpcpy", "location": "/usr/include/string.h:567:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__dest", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__src", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
414
+{ "tag": "function", "name": "__stpncpy", "location": "/usr/include/string.h:572:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__dest", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__src", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
415
+{ "tag": "function", "name": "stpncpy", "location": "/usr/include/string.h:575:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__dest", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__src", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
416
+{ "tag": "function", "name": "yaml_get_version_string", "location": "/usr/include/yaml.h:57:1", "variadic": false, "parameters": [], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
417
+{ "tag": "function", "name": "yaml_get_version", "location": "/usr/include/yaml.h:68:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "major", "type": { "tag": ":pointer", "type": { "tag": ":int" } } }, { "tag": "parameter", "name": "minor", "type": { "tag": ":pointer", "type": { "tag": ":int" } } }, { "tag": "parameter", "name": "patch", "type": { "tag": ":pointer", "type": { "tag": ":int" } } }], "return-type": { "tag": ":void" } },
418
+{ "tag": "typedef", "name": "yaml_char_t", "location": "/usr/include/yaml.h:78:23", "type": { "tag": ":unsigned-char" } },
419
+{ "tag": "struct", "name": "yaml_version_directive_s", "id": 0, "location": "/usr/include/yaml.h:81:16", "bit-size": 64, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "major", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "minor", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }] },
420
+{ "tag": "typedef", "name": "yaml_version_directive_t", "location": "/usr/include/yaml.h:86:3", "type": { "tag": ":struct", "name": "yaml_version_directive_s", "id": 0 } },
421
+{ "tag": "struct", "name": "yaml_tag_directive_s", "id": 0, "location": "/usr/include/yaml.h:89:16", "bit-size": 128, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "handle", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "field", "name": "prefix", "bit-offset": 64, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }] },
422
+{ "tag": "typedef", "name": "yaml_tag_directive_t", "location": "/usr/include/yaml.h:94:3", "type": { "tag": ":struct", "name": "yaml_tag_directive_s", "id": 0 } },
423
+{ "tag": "enum", "name": "yaml_encoding_e", "id": 0, "location": "/usr/include/yaml.h:97:14", "fields": [{ "tag": "field", "name": "YAML_ANY_ENCODING", "value": 0 }, { "tag": "field", "name": "YAML_UTF8_ENCODING", "value": 1 }, { "tag": "field", "name": "YAML_UTF16LE_ENCODING", "value": 2 }, { "tag": "field", "name": "YAML_UTF16BE_ENCODING", "value": 3 }] },
424
+{ "tag": "typedef", "name": "yaml_encoding_t", "location": "/usr/include/yaml.h:106:3", "type": { "tag": ":enum", "name": "yaml_encoding_e", "id": 0 } },
425
+{ "tag": "enum", "name": "yaml_break_e", "id": 0, "location": "/usr/include/yaml.h:110:14", "fields": [{ "tag": "field", "name": "YAML_ANY_BREAK", "value": 0 }, { "tag": "field", "name": "YAML_CR_BREAK", "value": 1 }, { "tag": "field", "name": "YAML_LN_BREAK", "value": 2 }, { "tag": "field", "name": "YAML_CRLN_BREAK", "value": 3 }] },
426
+{ "tag": "typedef", "name": "yaml_break_t", "location": "/usr/include/yaml.h:119:3", "type": { "tag": ":enum", "name": "yaml_break_e", "id": 0 } },
427
+{ "tag": "enum", "name": "yaml_error_type_e", "id": 0, "location": "/usr/include/yaml.h:122:14", "fields": [{ "tag": "field", "name": "YAML_NO_ERROR", "value": 0 }, { "tag": "field", "name": "YAML_MEMORY_ERROR", "value": 1 }, { "tag": "field", "name": "YAML_READER_ERROR", "value": 2 }, { "tag": "field", "name": "YAML_SCANNER_ERROR", "value": 3 }, { "tag": "field", "name": "YAML_PARSER_ERROR", "value": 4 }, { "tag": "field", "name": "YAML_COMPOSER_ERROR", "value": 5 }, { "tag": "field", "name": "YAML_WRITER_ERROR", "value": 6 }, { "tag": "field", "name": "YAML_EMITTER_ERROR", "value": 7 }] },
428
+{ "tag": "typedef", "name": "yaml_error_type_t", "location": "/usr/include/yaml.h:142:3", "type": { "tag": ":enum", "name": "yaml_error_type_e", "id": 0 } },
429
+{ "tag": "struct", "name": "yaml_mark_s", "id": 0, "location": "/usr/include/yaml.h:145:16", "bit-size": 192, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "index", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": "size_t" } }, { "tag": "field", "name": "line", "bit-offset": 64, "bit-size": 64, "bit-alignment": 64, "type": { "tag": "size_t" } }, { "tag": "field", "name": "column", "bit-offset": 128, "bit-size": 64, "bit-alignment": 64, "type": { "tag": "size_t" } }] },
430
+{ "tag": "typedef", "name": "yaml_mark_t", "location": "/usr/include/yaml.h:154:3", "type": { "tag": ":struct", "name": "yaml_mark_s", "id": 0 } },
431
+{ "tag": "enum", "name": "yaml_scalar_style_e", "id": 0, "location": "/usr/include/yaml.h:164:14", "fields": [{ "tag": "field", "name": "YAML_ANY_SCALAR_STYLE", "value": 0 }, { "tag": "field", "name": "YAML_PLAIN_SCALAR_STYLE", "value": 1 }, { "tag": "field", "name": "YAML_SINGLE_QUOTED_SCALAR_STYLE", "value": 2 }, { "tag": "field", "name": "YAML_DOUBLE_QUOTED_SCALAR_STYLE", "value": 3 }, { "tag": "field", "name": "YAML_LITERAL_SCALAR_STYLE", "value": 4 }, { "tag": "field", "name": "YAML_FOLDED_SCALAR_STYLE", "value": 5 }] },
432
+{ "tag": "typedef", "name": "yaml_scalar_style_t", "location": "/usr/include/yaml.h:180:3", "type": { "tag": ":enum", "name": "yaml_scalar_style_e", "id": 0 } },
433
+{ "tag": "enum", "name": "yaml_sequence_style_e", "id": 0, "location": "/usr/include/yaml.h:183:14", "fields": [{ "tag": "field", "name": "YAML_ANY_SEQUENCE_STYLE", "value": 0 }, { "tag": "field", "name": "YAML_BLOCK_SEQUENCE_STYLE", "value": 1 }, { "tag": "field", "name": "YAML_FLOW_SEQUENCE_STYLE", "value": 2 }] },
434
+{ "tag": "typedef", "name": "yaml_sequence_style_t", "location": "/usr/include/yaml.h:191:3", "type": { "tag": ":enum", "name": "yaml_sequence_style_e", "id": 0 } },
435
+{ "tag": "enum", "name": "yaml_mapping_style_e", "id": 0, "location": "/usr/include/yaml.h:194:14", "fields": [{ "tag": "field", "name": "YAML_ANY_MAPPING_STYLE", "value": 0 }, { "tag": "field", "name": "YAML_BLOCK_MAPPING_STYLE", "value": 1 }, { "tag": "field", "name": "YAML_FLOW_MAPPING_STYLE", "value": 2 }] },
436
+{ "tag": "typedef", "name": "yaml_mapping_style_t", "location": "/usr/include/yaml.h:203:3", "type": { "tag": ":enum", "name": "yaml_mapping_style_e", "id": 0 } },
437
+{ "tag": "enum", "name": "yaml_token_type_e", "id": 0, "location": "/usr/include/yaml.h:213:14", "fields": [{ "tag": "field", "name": "YAML_NO_TOKEN", "value": 0 }, { "tag": "field", "name": "YAML_STREAM_START_TOKEN", "value": 1 }, { "tag": "field", "name": "YAML_STREAM_END_TOKEN", "value": 2 }, { "tag": "field", "name": "YAML_VERSION_DIRECTIVE_TOKEN", "value": 3 }, { "tag": "field", "name": "YAML_TAG_DIRECTIVE_TOKEN", "value": 4 }, { "tag": "field", "name": "YAML_DOCUMENT_START_TOKEN", "value": 5 }, { "tag": "field", "name": "YAML_DOCUMENT_END_TOKEN", "value": 6 }, { "tag": "field", "name": "YAML_BLOCK_SEQUENCE_START_TOKEN", "value": 7 }, { "tag": "field", "name": "YAML_BLOCK_MAPPING_START_TOKEN", "value": 8 }, { "tag": "field", "name": "YAML_BLOCK_END_TOKEN", "value": 9 }, { "tag": "field", "name": "YAML_FLOW_SEQUENCE_START_TOKEN", "value": 10 }, { "tag": "field", "name": "YAML_FLOW_SEQUENCE_END_TOKEN", "value": 11 }, { "tag": "field", "name": "YAML_FLOW_MAPPING_START_TOKEN", "value": 12 }, { "tag": "field", "name": "YAML_FLOW_MAPPING_END_TOKEN", "value": 13 }, { "tag": "field", "name": "YAML_BLOCK_ENTRY_TOKEN", "value": 14 }, { "tag": "field", "name": "YAML_FLOW_ENTRY_TOKEN", "value": 15 }, { "tag": "field", "name": "YAML_KEY_TOKEN", "value": 16 }, { "tag": "field", "name": "YAML_VALUE_TOKEN", "value": 17 }, { "tag": "field", "name": "YAML_ALIAS_TOKEN", "value": 18 }, { "tag": "field", "name": "YAML_ANCHOR_TOKEN", "value": 19 }, { "tag": "field", "name": "YAML_TAG_TOKEN", "value": 20 }, { "tag": "field", "name": "YAML_SCALAR_TOKEN", "value": 21 }] },
438
+{ "tag": "typedef", "name": "yaml_token_type_t", "location": "/usr/include/yaml.h:264:3", "type": { "tag": ":enum", "name": "yaml_token_type_e", "id": 0 } },
439
+{ "tag": "struct", "name": "yaml_token_s", "id": 0, "location": "/usr/include/yaml.h:267:16", "bit-size": 640, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "type", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "yaml_token_type_t" } }, { "tag": "field", "name": "data", "bit-offset": 64, "bit-size": 192, "bit-alignment": 64, "type": { "tag": "union", "name": "", "id": 24, "location": "/usr/include/yaml.h:273:5", "bit-size": 192, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "stream_start", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "struct", "name": "", "id": 25, "location": "/usr/include/yaml.h:276:9", "bit-size": 32, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "encoding", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "yaml_encoding_t" } }] } }, { "tag": "field", "name": "alias", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": "struct", "name": "", "id": 26, "location": "/usr/include/yaml.h:282:9", "bit-size": 64, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "value", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }] } }, { "tag": "field", "name": "anchor", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": "struct", "name": "", "id": 27, "location": "/usr/include/yaml.h:288:9", "bit-size": 64, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "value", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }] } }, { "tag": "field", "name": "tag", "bit-offset": 0, "bit-size": 128, "bit-alignment": 64, "type": { "tag": "struct", "name": "", "id": 28, "location": "/usr/include/yaml.h:294:9", "bit-size": 128, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "handle", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "field", "name": "suffix", "bit-offset": 64, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }] } }, { "tag": "field", "name": "scalar", "bit-offset": 0, "bit-size": 192, "bit-alignment": 64, "type": { "tag": "struct", "name": "", "id": 29, "location": "/usr/include/yaml.h:302:9", "bit-size": 192, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "value", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "field", "name": "length", "bit-offset": 64, "bit-size": 64, "bit-alignment": 64, "type": { "tag": "size_t" } }, { "tag": "field", "name": "style", "bit-offset": 128, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "yaml_scalar_style_t" } }] } }, { "tag": "field", "name": "version_directive", "bit-offset": 0, "bit-size": 64, "bit-alignment": 32, "type": { "tag": "struct", "name": "", "id": 30, "location": "/usr/include/yaml.h:312:9", "bit-size": 64, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "major", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "minor", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }] } }, { "tag": "field", "name": "tag_directive", "bit-offset": 0, "bit-size": 128, "bit-alignment": 64, "type": { "tag": "struct", "name": "", "id": 31, "location": "/usr/include/yaml.h:320:9", "bit-size": 128, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "handle", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "field", "name": "prefix", "bit-offset": 64, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }] } }] } }, { "tag": "field", "name": "start_mark", "bit-offset": 256, "bit-size": 192, "bit-alignment": 64, "type": { "tag": "yaml_mark_t" } }, { "tag": "field", "name": "end_mark", "bit-offset": 448, "bit-size": 192, "bit-alignment": 64, "type": { "tag": "yaml_mark_t" } }] },
440
+{ "tag": "typedef", "name": "yaml_token_t", "location": "/usr/include/yaml.h:334:3", "type": { "tag": ":struct", "name": "yaml_token_s", "id": 0 } },
441
+{ "tag": "function", "name": "yaml_token_delete", "location": "/usr/include/yaml.h:343:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "token", "type": { "tag": ":pointer", "type": { "tag": "yaml_token_t" } } }], "return-type": { "tag": ":void" } },
442
+{ "tag": "enum", "name": "yaml_event_type_e", "id": 0, "location": "/usr/include/yaml.h:353:14", "fields": [{ "tag": "field", "name": "YAML_NO_EVENT", "value": 0 }, { "tag": "field", "name": "YAML_STREAM_START_EVENT", "value": 1 }, { "tag": "field", "name": "YAML_STREAM_END_EVENT", "value": 2 }, { "tag": "field", "name": "YAML_DOCUMENT_START_EVENT", "value": 3 }, { "tag": "field", "name": "YAML_DOCUMENT_END_EVENT", "value": 4 }, { "tag": "field", "name": "YAML_ALIAS_EVENT", "value": 5 }, { "tag": "field", "name": "YAML_SCALAR_EVENT", "value": 6 }, { "tag": "field", "name": "YAML_SEQUENCE_START_EVENT", "value": 7 }, { "tag": "field", "name": "YAML_SEQUENCE_END_EVENT", "value": 8 }, { "tag": "field", "name": "YAML_MAPPING_START_EVENT", "value": 9 }, { "tag": "field", "name": "YAML_MAPPING_END_EVENT", "value": 10 }] },
443
+{ "tag": "typedef", "name": "yaml_event_type_t", "location": "/usr/include/yaml.h:381:3", "type": { "tag": ":enum", "name": "yaml_event_type_e", "id": 0 } },
444
+{ "tag": "struct", "name": "yaml_event_s", "id": 0, "location": "/usr/include/yaml.h:384:16", "bit-size": 832, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "type", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "yaml_event_type_t" } }, { "tag": "field", "name": "data", "bit-offset": 64, "bit-size": 384, "bit-alignment": 64, "type": { "tag": "union", "name": "", "id": 32, "location": "/usr/include/yaml.h:390:5", "bit-size": 384, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "stream_start", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "struct", "name": "", "id": 33, "location": "/usr/include/yaml.h:393:9", "bit-size": 32, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "encoding", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "yaml_encoding_t" } }] } }, { "tag": "field", "name": "document_start", "bit-offset": 0, "bit-size": 256, "bit-alignment": 64, "type": { "tag": "struct", "name": "", "id": 34, "location": "/usr/include/yaml.h:399:9", "bit-size": 256, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "version_directive", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_version_directive_t" } } }, { "tag": "field", "name": "tag_directives", "bit-offset": 64, "bit-size": 128, "bit-alignment": 64, "type": { "tag": "struct", "name": "", "id": 35, "location": "/usr/include/yaml.h:404:13", "bit-size": 128, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "start", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_tag_directive_t" } } }, { "tag": "field", "name": "end", "bit-offset": 64, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_tag_directive_t" } } }] } }, { "tag": "field", "name": "implicit", "bit-offset": 192, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }] } }, { "tag": "field", "name": "document_end", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "struct", "name": "", "id": 36, "location": "/usr/include/yaml.h:416:9", "bit-size": 32, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "implicit", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }] } }, { "tag": "field", "name": "alias", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": "struct", "name": "", "id": 37, "location": "/usr/include/yaml.h:422:9", "bit-size": 64, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "anchor", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }] } }, { "tag": "field", "name": "scalar", "bit-offset": 0, "bit-size": 384, "bit-alignment": 64, "type": { "tag": "struct", "name": "", "id": 38, "location": "/usr/include/yaml.h:428:9", "bit-size": 384, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "anchor", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "field", "name": "tag", "bit-offset": 64, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "field", "name": "value", "bit-offset": 128, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "field", "name": "length", "bit-offset": 192, "bit-size": 64, "bit-alignment": 64, "type": { "tag": "size_t" } }, { "tag": "field", "name": "plain_implicit", "bit-offset": 256, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "quoted_implicit", "bit-offset": 288, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "style", "bit-offset": 320, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "yaml_scalar_style_t" } }] } }, { "tag": "field", "name": "sequence_start", "bit-offset": 0, "bit-size": 192, "bit-alignment": 64, "type": { "tag": "struct", "name": "", "id": 39, "location": "/usr/include/yaml.h:446:9", "bit-size": 192, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "anchor", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "field", "name": "tag", "bit-offset": 64, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "field", "name": "implicit", "bit-offset": 128, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "style", "bit-offset": 160, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "yaml_sequence_style_t" } }] } }, { "tag": "field", "name": "mapping_start", "bit-offset": 0, "bit-size": 192, "bit-alignment": 64, "type": { "tag": "struct", "name": "", "id": 40, "location": "/usr/include/yaml.h:458:9", "bit-size": 192, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "anchor", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "field", "name": "tag", "bit-offset": 64, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "field", "name": "implicit", "bit-offset": 128, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "style", "bit-offset": 160, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "yaml_mapping_style_t" } }] } }] } }, { "tag": "field", "name": "start_mark", "bit-offset": 448, "bit-size": 192, "bit-alignment": 64, "type": { "tag": "yaml_mark_t" } }, { "tag": "field", "name": "end_mark", "bit-offset": 640, "bit-size": 192, "bit-alignment": 64, "type": { "tag": "yaml_mark_t" } }] },
445
+{ "tag": "typedef", "name": "yaml_event_t", "location": "/usr/include/yaml.h:476:3", "type": { "tag": ":struct", "name": "yaml_event_s", "id": 0 } },
446
+{ "tag": "function", "name": "yaml_stream_start_event_initialize", "location": "/usr/include/yaml.h:488:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "event", "type": { "tag": ":pointer", "type": { "tag": "yaml_event_t" } } }, { "tag": "parameter", "name": "encoding", "type": { "tag": "yaml_encoding_t" } }], "return-type": { "tag": ":int" } },
447
+{ "tag": "function", "name": "yaml_stream_end_event_initialize", "location": "/usr/include/yaml.h:500:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "event", "type": { "tag": ":pointer", "type": { "tag": "yaml_event_t" } } }], "return-type": { "tag": ":int" } },
448
+{ "tag": "function", "name": "yaml_document_start_event_initialize", "location": "/usr/include/yaml.h:522:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "event", "type": { "tag": ":pointer", "type": { "tag": "yaml_event_t" } } }, { "tag": "parameter", "name": "version_directive", "type": { "tag": ":pointer", "type": { "tag": "yaml_version_directive_t" } } }, { "tag": "parameter", "name": "tag_directives_start", "type": { "tag": ":pointer", "type": { "tag": "yaml_tag_directive_t" } } }, { "tag": "parameter", "name": "tag_directives_end", "type": { "tag": ":pointer", "type": { "tag": "yaml_tag_directive_t" } } }, { "tag": "parameter", "name": "implicit", "type": { "tag": ":int" } }], "return-type": { "tag": ":int" } },
449
+{ "tag": "function", "name": "yaml_document_end_event_initialize", "location": "/usr/include/yaml.h:541:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "event", "type": { "tag": ":pointer", "type": { "tag": "yaml_event_t" } } }, { "tag": "parameter", "name": "implicit", "type": { "tag": ":int" } }], "return-type": { "tag": ":int" } },
450
+{ "tag": "function", "name": "yaml_alias_event_initialize", "location": "/usr/include/yaml.h:553:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "event", "type": { "tag": ":pointer", "type": { "tag": "yaml_event_t" } } }, { "tag": "parameter", "name": "anchor", "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }], "return-type": { "tag": ":int" } },
451
+{ "tag": "function", "name": "yaml_scalar_event_initialize", "location": "/usr/include/yaml.h:578:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "event", "type": { "tag": ":pointer", "type": { "tag": "yaml_event_t" } } }, { "tag": "parameter", "name": "anchor", "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "parameter", "name": "tag", "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "parameter", "name": "value", "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "parameter", "name": "length", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "plain_implicit", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "quoted_implicit", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "style", "type": { "tag": "yaml_scalar_style_t" } }], "return-type": { "tag": ":int" } },
452
+{ "tag": "function", "name": "yaml_sequence_start_event_initialize", "location": "/usr/include/yaml.h:601:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "event", "type": { "tag": ":pointer", "type": { "tag": "yaml_event_t" } } }, { "tag": "parameter", "name": "anchor", "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "parameter", "name": "tag", "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "parameter", "name": "implicit", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "style", "type": { "tag": "yaml_sequence_style_t" } }], "return-type": { "tag": ":int" } },
453
+{ "tag": "function", "name": "yaml_sequence_end_event_initialize", "location": "/usr/include/yaml.h:614:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "event", "type": { "tag": ":pointer", "type": { "tag": "yaml_event_t" } } }], "return-type": { "tag": ":int" } },
454
+{ "tag": "function", "name": "yaml_mapping_start_event_initialize", "location": "/usr/include/yaml.h:633:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "event", "type": { "tag": ":pointer", "type": { "tag": "yaml_event_t" } } }, { "tag": "parameter", "name": "anchor", "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "parameter", "name": "tag", "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "parameter", "name": "implicit", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "style", "type": { "tag": "yaml_mapping_style_t" } }], "return-type": { "tag": ":int" } },
455
+{ "tag": "function", "name": "yaml_mapping_end_event_initialize", "location": "/usr/include/yaml.h:646:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "event", "type": { "tag": ":pointer", "type": { "tag": "yaml_event_t" } } }], "return-type": { "tag": ":int" } },
456
+{ "tag": "function", "name": "yaml_event_delete", "location": "/usr/include/yaml.h:655:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "event", "type": { "tag": ":pointer", "type": { "tag": "yaml_event_t" } } }], "return-type": { "tag": ":void" } },
457
+{ "tag": "enum", "name": "yaml_node_type_e", "id": 0, "location": "/usr/include/yaml.h:690:14", "fields": [{ "tag": "field", "name": "YAML_NO_NODE", "value": 0 }, { "tag": "field", "name": "YAML_SCALAR_NODE", "value": 1 }, { "tag": "field", "name": "YAML_SEQUENCE_NODE", "value": 2 }, { "tag": "field", "name": "YAML_MAPPING_NODE", "value": 3 }] },
458
+{ "tag": "typedef", "name": "yaml_node_type_t", "location": "/usr/include/yaml.h:700:3", "type": { "tag": ":enum", "name": "yaml_node_type_e", "id": 0 } },
459
+{ "tag": "struct", "name": "yaml_node_s", "id": 0, "location": "/usr/include/yaml.h:703:16", "bit-size": 0, "bit-alignment": 0, "fields": [] },
460
+{ "tag": "typedef", "name": "yaml_node_t", "location": "/usr/include/yaml.h:703:28", "type": { "tag": ":struct", "name": "yaml_node_s", "id": 0 } },
461
+{ "tag": "typedef", "name": "yaml_node_item_t", "location": "/usr/include/yaml.h:706:13", "type": { "tag": ":int" } },
462
+{ "tag": "struct", "name": "yaml_node_pair_s", "id": 0, "location": "/usr/include/yaml.h:709:16", "bit-size": 64, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "key", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "value", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }] },
463
+{ "tag": "typedef", "name": "yaml_node_pair_t", "location": "/usr/include/yaml.h:714:3", "type": { "tag": ":struct", "name": "yaml_node_pair_s", "id": 0 } },
464
+{ "tag": "struct", "name": "yaml_node_s", "id": 0, "location": "/usr/include/yaml.h:717:8", "bit-size": 768, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "type", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "yaml_node_type_t" } }, { "tag": "field", "name": "tag", "bit-offset": 64, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "field", "name": "data", "bit-offset": 128, "bit-size": 256, "bit-alignment": 64, "type": { "tag": "union", "name": "", "id": 41, "location": "/usr/include/yaml.h:726:5", "bit-size": 256, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "scalar", "bit-offset": 0, "bit-size": 192, "bit-alignment": 64, "type": { "tag": "struct", "name": "", "id": 42, "location": "/usr/include/yaml.h:729:9", "bit-size": 192, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "value", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "field", "name": "length", "bit-offset": 64, "bit-size": 64, "bit-alignment": 64, "type": { "tag": "size_t" } }, { "tag": "field", "name": "style", "bit-offset": 128, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "yaml_scalar_style_t" } }] } }, { "tag": "field", "name": "sequence", "bit-offset": 0, "bit-size": 256, "bit-alignment": 64, "type": { "tag": "struct", "name": "", "id": 43, "location": "/usr/include/yaml.h:739:9", "bit-size": 256, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "items", "bit-offset": 0, "bit-size": 192, "bit-alignment": 64, "type": { "tag": "struct", "name": "", "id": 44, "location": "/usr/include/yaml.h:741:13", "bit-size": 192, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "start", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_node_item_t" } } }, { "tag": "field", "name": "end", "bit-offset": 64, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_node_item_t" } } }, { "tag": "field", "name": "top", "bit-offset": 128, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_node_item_t" } } }] } }, { "tag": "field", "name": "style", "bit-offset": 192, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "yaml_sequence_style_t" } }] } }, { "tag": "field", "name": "mapping", "bit-offset": 0, "bit-size": 256, "bit-alignment": 64, "type": { "tag": "struct", "name": "", "id": 45, "location": "/usr/include/yaml.h:754:9", "bit-size": 256, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "pairs", "bit-offset": 0, "bit-size": 192, "bit-alignment": 64, "type": { "tag": "struct", "name": "", "id": 46, "location": "/usr/include/yaml.h:756:13", "bit-size": 192, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "start", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_node_pair_t" } } }, { "tag": "field", "name": "end", "bit-offset": 64, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_node_pair_t" } } }, { "tag": "field", "name": "top", "bit-offset": 128, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_node_pair_t" } } }] } }, { "tag": "field", "name": "style", "bit-offset": 192, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "yaml_mapping_style_t" } }] } }] } }, { "tag": "field", "name": "start_mark", "bit-offset": 384, "bit-size": 192, "bit-alignment": 64, "type": { "tag": "yaml_mark_t" } }, { "tag": "field", "name": "end_mark", "bit-offset": 576, "bit-size": 192, "bit-alignment": 64, "type": { "tag": "yaml_mark_t" } }] },
465
+{ "tag": "struct", "name": "yaml_document_s", "id": 0, "location": "/usr/include/yaml.h:778:16", "bit-size": 832, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "nodes", "bit-offset": 0, "bit-size": 192, "bit-alignment": 64, "type": { "tag": "struct", "name": "", "id": 47, "location": "/usr/include/yaml.h:781:5", "bit-size": 192, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "start", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_node_t" } } }, { "tag": "field", "name": "end", "bit-offset": 64, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_node_t" } } }, { "tag": "field", "name": "top", "bit-offset": 128, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_node_t" } } }] } }, { "tag": "field", "name": "version_directive", "bit-offset": 192, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_version_directive_t" } } }, { "tag": "field", "name": "tag_directives", "bit-offset": 256, "bit-size": 128, "bit-alignment": 64, "type": { "tag": "struct", "name": "", "id": 48, "location": "/usr/include/yaml.h:794:5", "bit-size": 128, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "start", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_tag_directive_t" } } }, { "tag": "field", "name": "end", "bit-offset": 64, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_tag_directive_t" } } }] } }, { "tag": "field", "name": "start_implicit", "bit-offset": 384, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "end_implicit", "bit-offset": 416, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "start_mark", "bit-offset": 448, "bit-size": 192, "bit-alignment": 64, "type": { "tag": "yaml_mark_t" } }, { "tag": "field", "name": "end_mark", "bit-offset": 640, "bit-size": 192, "bit-alignment": 64, "type": { "tag": "yaml_mark_t" } }] },
466
+{ "tag": "typedef", "name": "yaml_document_t", "location": "/usr/include/yaml.h:811:3", "type": { "tag": ":struct", "name": "yaml_document_s", "id": 0 } },
467
+{ "tag": "function", "name": "yaml_document_initialize", "location": "/usr/include/yaml.h:832:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "document", "type": { "tag": ":pointer", "type": { "tag": "yaml_document_t" } } }, { "tag": "parameter", "name": "version_directive", "type": { "tag": ":pointer", "type": { "tag": "yaml_version_directive_t" } } }, { "tag": "parameter", "name": "tag_directives_start", "type": { "tag": ":pointer", "type": { "tag": "yaml_tag_directive_t" } } }, { "tag": "parameter", "name": "tag_directives_end", "type": { "tag": ":pointer", "type": { "tag": "yaml_tag_directive_t" } } }, { "tag": "parameter", "name": "start_implicit", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "end_implicit", "type": { "tag": ":int" } }], "return-type": { "tag": ":int" } },
468
+{ "tag": "function", "name": "yaml_document_delete", "location": "/usr/include/yaml.h:845:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "document", "type": { "tag": ":pointer", "type": { "tag": "yaml_document_t" } } }], "return-type": { "tag": ":void" } },
469
+{ "tag": "function", "name": "yaml_document_get_node", "location": "/usr/include/yaml.h:860:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "document", "type": { "tag": ":pointer", "type": { "tag": "yaml_document_t" } } }, { "tag": "parameter", "name": "index", "type": { "tag": ":int" } }], "return-type": { "tag": ":pointer", "type": { "tag": "yaml_node_t" } } },
470
+{ "tag": "function", "name": "yaml_document_get_root_node", "location": "/usr/include/yaml.h:879:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "document", "type": { "tag": ":pointer", "type": { "tag": "yaml_document_t" } } }], "return-type": { "tag": ":pointer", "type": { "tag": "yaml_node_t" } } },
471
+{ "tag": "function", "name": "yaml_document_add_scalar", "location": "/usr/include/yaml.h:896:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "document", "type": { "tag": ":pointer", "type": { "tag": "yaml_document_t" } } }, { "tag": "parameter", "name": "tag", "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "parameter", "name": "value", "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "parameter", "name": "length", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "style", "type": { "tag": "yaml_scalar_style_t" } }], "return-type": { "tag": ":int" } },
472
+{ "tag": "function", "name": "yaml_document_add_sequence", "location": "/usr/include/yaml.h:913:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "document", "type": { "tag": ":pointer", "type": { "tag": "yaml_document_t" } } }, { "tag": "parameter", "name": "tag", "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "parameter", "name": "style", "type": { "tag": "yaml_sequence_style_t" } }], "return-type": { "tag": ":int" } },
473
+{ "tag": "function", "name": "yaml_document_add_mapping", "location": "/usr/include/yaml.h:929:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "document", "type": { "tag": ":pointer", "type": { "tag": "yaml_document_t" } } }, { "tag": "parameter", "name": "tag", "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "parameter", "name": "style", "type": { "tag": "yaml_mapping_style_t" } }], "return-type": { "tag": ":int" } },
474
+{ "tag": "function", "name": "yaml_document_append_sequence_item", "location": "/usr/include/yaml.h:943:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "document", "type": { "tag": ":pointer", "type": { "tag": "yaml_document_t" } } }, { "tag": "parameter", "name": "sequence", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "item", "type": { "tag": ":int" } }], "return-type": { "tag": ":int" } },
475
+{ "tag": "function", "name": "yaml_document_append_mapping_pair", "location": "/usr/include/yaml.h:958:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "document", "type": { "tag": ":pointer", "type": { "tag": "yaml_document_t" } } }, { "tag": "parameter", "name": "mapping", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "key", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "value", "type": { "tag": ":int" } }], "return-type": { "tag": ":int" } },
476
+{ "tag": "typedef", "name": "yaml_read_handler_t", "location": "/usr/include/yaml.h:986:13", "type": { "tag": ":function" } },
477
+{ "tag": "struct", "name": "yaml_simple_key_s", "id": 0, "location": "/usr/include/yaml.h:993:16", "bit-size": 320, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "possible", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "required", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "token_number", "bit-offset": 64, "bit-size": 64, "bit-alignment": 64, "type": { "tag": "size_t" } }, { "tag": "field", "name": "mark", "bit-offset": 128, "bit-size": 192, "bit-alignment": 64, "type": { "tag": "yaml_mark_t" } }] },
478
+{ "tag": "typedef", "name": "yaml_simple_key_t", "location": "/usr/include/yaml.h:1005:3", "type": { "tag": ":struct", "name": "yaml_simple_key_s", "id": 0 } },
479
+{ "tag": "enum", "name": "yaml_parser_state_e", "id": 0, "location": "/usr/include/yaml.h:1010:14", "fields": [{ "tag": "field", "name": "YAML_PARSE_STREAM_START_STATE", "value": 0 }, { "tag": "field", "name": "YAML_PARSE_IMPLICIT_DOCUMENT_START_STATE", "value": 1 }, { "tag": "field", "name": "YAML_PARSE_DOCUMENT_START_STATE", "value": 2 }, { "tag": "field", "name": "YAML_PARSE_DOCUMENT_CONTENT_STATE", "value": 3 }, { "tag": "field", "name": "YAML_PARSE_DOCUMENT_END_STATE", "value": 4 }, { "tag": "field", "name": "YAML_PARSE_BLOCK_NODE_STATE", "value": 5 }, { "tag": "field", "name": "YAML_PARSE_BLOCK_NODE_OR_INDENTLESS_SEQUENCE_STATE", "value": 6 }, { "tag": "field", "name": "YAML_PARSE_FLOW_NODE_STATE", "value": 7 }, { "tag": "field", "name": "YAML_PARSE_BLOCK_SEQUENCE_FIRST_ENTRY_STATE", "value": 8 }, { "tag": "field", "name": "YAML_PARSE_BLOCK_SEQUENCE_ENTRY_STATE", "value": 9 }, { "tag": "field", "name": "YAML_PARSE_INDENTLESS_SEQUENCE_ENTRY_STATE", "value": 10 }, { "tag": "field", "name": "YAML_PARSE_BLOCK_MAPPING_FIRST_KEY_STATE", "value": 11 }, { "tag": "field", "name": "YAML_PARSE_BLOCK_MAPPING_KEY_STATE", "value": 12 }, { "tag": "field", "name": "YAML_PARSE_BLOCK_MAPPING_VALUE_STATE", "value": 13 }, { "tag": "field", "name": "YAML_PARSE_FLOW_SEQUENCE_FIRST_ENTRY_STATE", "value": 14 }, { "tag": "field", "name": "YAML_PARSE_FLOW_SEQUENCE_ENTRY_STATE", "value": 15 }, { "tag": "field", "name": "YAML_PARSE_FLOW_SEQUENCE_ENTRY_MAPPING_KEY_STATE", "value": 16 }, { "tag": "field", "name": "YAML_PARSE_FLOW_SEQUENCE_ENTRY_MAPPING_VALUE_STATE", "value": 17 }, { "tag": "field", "name": "YAML_PARSE_FLOW_SEQUENCE_ENTRY_MAPPING_END_STATE", "value": 18 }, { "tag": "field", "name": "YAML_PARSE_FLOW_MAPPING_FIRST_KEY_STATE", "value": 19 }, { "tag": "field", "name": "YAML_PARSE_FLOW_MAPPING_KEY_STATE", "value": 20 }, { "tag": "field", "name": "YAML_PARSE_FLOW_MAPPING_VALUE_STATE", "value": 21 }, { "tag": "field", "name": "YAML_PARSE_FLOW_MAPPING_EMPTY_VALUE_STATE", "value": 22 }, { "tag": "field", "name": "YAML_PARSE_END_STATE", "value": 23 }] },
480
+{ "tag": "typedef", "name": "yaml_parser_state_t", "location": "/usr/include/yaml.h:1059:3", "type": { "tag": ":enum", "name": "yaml_parser_state_e", "id": 0 } },
481
+{ "tag": "struct", "name": "yaml_alias_data_s", "id": 0, "location": "/usr/include/yaml.h:1065:16", "bit-size": 320, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "anchor", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "field", "name": "index", "bit-offset": 64, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "mark", "bit-offset": 128, "bit-size": 192, "bit-alignment": 64, "type": { "tag": "yaml_mark_t" } }] },
482
+{ "tag": "typedef", "name": "yaml_alias_data_t", "location": "/usr/include/yaml.h:1072:3", "type": { "tag": ":struct", "name": "yaml_alias_data_s", "id": 0 } },
483
+{ "tag": "struct", "name": "yaml_parser_s", "id": 0, "location": "/usr/include/yaml.h:1081:16", "bit-size": 3840, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "error", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "yaml_error_type_t" } }, { "tag": "field", "name": "problem", "bit-offset": 64, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "field", "name": "problem_offset", "bit-offset": 128, "bit-size": 64, "bit-alignment": 64, "type": { "tag": "size_t" } }, { "tag": "field", "name": "problem_value", "bit-offset": 192, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "problem_mark", "bit-offset": 256, "bit-size": 192, "bit-alignment": 64, "type": { "tag": "yaml_mark_t" } }, { "tag": "field", "name": "context", "bit-offset": 448, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "field", "name": "context_mark", "bit-offset": 512, "bit-size": 192, "bit-alignment": 64, "type": { "tag": "yaml_mark_t" } }, { "tag": "field", "name": "read_handler", "bit-offset": 704, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":function-pointer" } }, { "tag": "field", "name": "read_handler_data", "bit-offset": 768, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "field", "name": "input", "bit-offset": 832, "bit-size": 192, "bit-alignment": 64, "type": { "tag": "union", "name": "", "id": 49, "location": "/usr/include/yaml.h:1119:5", "bit-size": 192, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "string", "bit-offset": 0, "bit-size": 192, "bit-alignment": 64, "type": { "tag": "struct", "name": "", "id": 50, "location": "/usr/include/yaml.h:1121:9", "bit-size": 192, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "start", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":unsigned-char" } } }, { "tag": "field", "name": "end", "bit-offset": 64, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":unsigned-char" } } }, { "tag": "field", "name": "current", "bit-offset": 128, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":unsigned-char" } } }] } }, { "tag": "field", "name": "file", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }] } }, { "tag": "field", "name": "eof", "bit-offset": 1024, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "buffer", "bit-offset": 1088, "bit-size": 256, "bit-alignment": 64, "type": { "tag": "struct", "name": "", "id": 51, "location": "/usr/include/yaml.h:1138:5", "bit-size": 256, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "start", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "field", "name": "end", "bit-offset": 64, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "field", "name": "pointer", "bit-offset": 128, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "field", "name": "last", "bit-offset": 192, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }] } }, { "tag": "field", "name": "unread", "bit-offset": 1344, "bit-size": 64, "bit-alignment": 64, "type": { "tag": "size_t" } }, { "tag": "field", "name": "raw_buffer", "bit-offset": 1408, "bit-size": 256, "bit-alignment": 64, "type": { "tag": "struct", "name": "", "id": 52, "location": "/usr/include/yaml.h:1153:5", "bit-size": 256, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "start", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":unsigned-char" } } }, { "tag": "field", "name": "end", "bit-offset": 64, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":unsigned-char" } } }, { "tag": "field", "name": "pointer", "bit-offset": 128, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":unsigned-char" } } }, { "tag": "field", "name": "last", "bit-offset": 192, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":unsigned-char" } } }] } }, { "tag": "field", "name": "encoding", "bit-offset": 1664, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "yaml_encoding_t" } }, { "tag": "field", "name": "offset", "bit-offset": 1728, "bit-size": 64, "bit-alignment": 64, "type": { "tag": "size_t" } }, { "tag": "field", "name": "mark", "bit-offset": 1792, "bit-size": 192, "bit-alignment": 64, "type": { "tag": "yaml_mark_t" } }, { "tag": "field", "name": "stream_start_produced", "bit-offset": 1984, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "stream_end_produced", "bit-offset": 2016, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "flow_level", "bit-offset": 2048, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "tokens", "bit-offset": 2112, "bit-size": 256, "bit-alignment": 64, "type": { "tag": "struct", "name": "", "id": 53, "location": "/usr/include/yaml.h:1192:5", "bit-size": 256, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "start", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_token_t" } } }, { "tag": "field", "name": "end", "bit-offset": 64, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_token_t" } } }, { "tag": "field", "name": "head", "bit-offset": 128, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_token_t" } } }, { "tag": "field", "name": "tail", "bit-offset": 192, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_token_t" } } }] } }, { "tag": "field", "name": "tokens_parsed", "bit-offset": 2368, "bit-size": 64, "bit-alignment": 64, "type": { "tag": "size_t" } }, { "tag": "field", "name": "token_available", "bit-offset": 2432, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "indents", "bit-offset": 2496, "bit-size": 192, "bit-alignment": 64, "type": { "tag": "struct", "name": "", "id": 54, "location": "/usr/include/yaml.h:1210:5", "bit-size": 192, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "start", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":int" } } }, { "tag": "field", "name": "end", "bit-offset": 64, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":int" } } }, { "tag": "field", "name": "top", "bit-offset": 128, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":int" } } }] } }, { "tag": "field", "name": "indent", "bit-offset": 2688, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "simple_key_allowed", "bit-offset": 2720, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "simple_keys", "bit-offset": 2752, "bit-size": 192, "bit-alignment": 64, "type": { "tag": "struct", "name": "", "id": 55, "location": "/usr/include/yaml.h:1226:5", "bit-size": 192, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "start", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_simple_key_t" } } }, { "tag": "field", "name": "end", "bit-offset": 64, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_simple_key_t" } } }, { "tag": "field", "name": "top", "bit-offset": 128, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_simple_key_t" } } }] } }, { "tag": "field", "name": "states", "bit-offset": 2944, "bit-size": 192, "bit-alignment": 64, "type": { "tag": "struct", "name": "", "id": 56, "location": "/usr/include/yaml.h:1245:5", "bit-size": 192, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "start", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_parser_state_t" } } }, { "tag": "field", "name": "end", "bit-offset": 64, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_parser_state_t" } } }, { "tag": "field", "name": "top", "bit-offset": 128, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_parser_state_t" } } }] } }, { "tag": "field", "name": "state", "bit-offset": 3136, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "yaml_parser_state_t" } }, { "tag": "field", "name": "marks", "bit-offset": 3200, "bit-size": 192, "bit-alignment": 64, "type": { "tag": "struct", "name": "", "id": 57, "location": "/usr/include/yaml.h:1258:5", "bit-size": 192, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "start", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_mark_t" } } }, { "tag": "field", "name": "end", "bit-offset": 64, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_mark_t" } } }, { "tag": "field", "name": "top", "bit-offset": 128, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_mark_t" } } }] } }, { "tag": "field", "name": "tag_directives", "bit-offset": 3392, "bit-size": 192, "bit-alignment": 64, "type": { "tag": "struct", "name": "", "id": 58, "location": "/usr/include/yaml.h:1268:5", "bit-size": 192, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "start", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_tag_directive_t" } } }, { "tag": "field", "name": "end", "bit-offset": 64, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_tag_directive_t" } } }, { "tag": "field", "name": "top", "bit-offset": 128, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_tag_directive_t" } } }] } }, { "tag": "field", "name": "aliases", "bit-offset": 3584, "bit-size": 192, "bit-alignment": 64, "type": { "tag": "struct", "name": "", "id": 59, "location": "/usr/include/yaml.h:1287:5", "bit-size": 192, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "start", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_alias_data_t" } } }, { "tag": "field", "name": "end", "bit-offset": 64, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_alias_data_t" } } }, { "tag": "field", "name": "top", "bit-offset": 128, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_alias_data_t" } } }] } }, { "tag": "field", "name": "document", "bit-offset": 3776, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_document_t" } } }] },
484
+{ "tag": "typedef", "name": "yaml_parser_t", "location": "/usr/include/yaml.h:1303:3", "type": { "tag": ":struct", "name": "yaml_parser_s", "id": 0 } },
485
+{ "tag": "function", "name": "yaml_parser_initialize", "location": "/usr/include/yaml.h:1317:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "parser", "type": { "tag": ":pointer", "type": { "tag": "yaml_parser_t" } } }], "return-type": { "tag": ":int" } },
486
+{ "tag": "function", "name": "yaml_parser_delete", "location": "/usr/include/yaml.h:1326:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "parser", "type": { "tag": ":pointer", "type": { "tag": "yaml_parser_t" } } }], "return-type": { "tag": ":void" } },
487
+{ "tag": "function", "name": "yaml_parser_set_input_string", "location": "/usr/include/yaml.h:1341:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "parser", "type": { "tag": ":pointer", "type": { "tag": "yaml_parser_t" } } }, { "tag": "parameter", "name": "input", "type": { "tag": ":pointer", "type": { "tag": ":unsigned-char" } } }, { "tag": "parameter", "name": "size", "type": { "tag": "size_t" } }], "return-type": { "tag": ":void" } },
488
+{ "tag": "function", "name": "yaml_parser_set_input_file", "location": "/usr/include/yaml.h:1355:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "parser", "type": { "tag": ":pointer", "type": { "tag": "yaml_parser_t" } } }, { "tag": "parameter", "name": "file", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":void" } },
489
+{ "tag": "function", "name": "yaml_parser_set_input", "location": "/usr/include/yaml.h:1367:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "parser", "type": { "tag": ":pointer", "type": { "tag": "yaml_parser_t" } } }, { "tag": "parameter", "name": "handler", "type": { "tag": ":function-pointer" } }, { "tag": "parameter", "name": "data", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": ":void" } },
490
+{ "tag": "function", "name": "yaml_parser_set_encoding", "location": "/usr/include/yaml.h:1378:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "parser", "type": { "tag": ":pointer", "type": { "tag": "yaml_parser_t" } } }, { "tag": "parameter", "name": "encoding", "type": { "tag": "yaml_encoding_t" } }], "return-type": { "tag": ":void" } },
491
+{ "tag": "function", "name": "yaml_parser_scan", "location": "/usr/include/yaml.h:1402:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "parser", "type": { "tag": ":pointer", "type": { "tag": "yaml_parser_t" } } }, { "tag": "parameter", "name": "token", "type": { "tag": ":pointer", "type": { "tag": "yaml_token_t" } } }], "return-type": { "tag": ":int" } },
492
+{ "tag": "function", "name": "yaml_parser_parse", "location": "/usr/include/yaml.h:1426:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "parser", "type": { "tag": ":pointer", "type": { "tag": "yaml_parser_t" } } }, { "tag": "parameter", "name": "event", "type": { "tag": ":pointer", "type": { "tag": "yaml_event_t" } } }], "return-type": { "tag": ":int" } },
493
+{ "tag": "function", "name": "yaml_parser_load", "location": "/usr/include/yaml.h:1451:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "parser", "type": { "tag": ":pointer", "type": { "tag": "yaml_parser_t" } } }, { "tag": "parameter", "name": "document", "type": { "tag": ":pointer", "type": { "tag": "yaml_document_t" } } }], "return-type": { "tag": ":int" } },
494
+{ "tag": "typedef", "name": "yaml_write_handler_t", "location": "/usr/include/yaml.h:1476:13", "type": { "tag": ":function" } },
495
+{ "tag": "enum", "name": "yaml_emitter_state_e", "id": 0, "location": "/usr/include/yaml.h:1479:14", "fields": [{ "tag": "field", "name": "YAML_EMIT_STREAM_START_STATE", "value": 0 }, { "tag": "field", "name": "YAML_EMIT_FIRST_DOCUMENT_START_STATE", "value": 1 }, { "tag": "field", "name": "YAML_EMIT_DOCUMENT_START_STATE", "value": 2 }, { "tag": "field", "name": "YAML_EMIT_DOCUMENT_CONTENT_STATE", "value": 3 }, { "tag": "field", "name": "YAML_EMIT_DOCUMENT_END_STATE", "value": 4 }, { "tag": "field", "name": "YAML_EMIT_FLOW_SEQUENCE_FIRST_ITEM_STATE", "value": 5 }, { "tag": "field", "name": "YAML_EMIT_FLOW_SEQUENCE_ITEM_STATE", "value": 6 }, { "tag": "field", "name": "YAML_EMIT_FLOW_MAPPING_FIRST_KEY_STATE", "value": 7 }, { "tag": "field", "name": "YAML_EMIT_FLOW_MAPPING_KEY_STATE", "value": 8 }, { "tag": "field", "name": "YAML_EMIT_FLOW_MAPPING_SIMPLE_VALUE_STATE", "value": 9 }, { "tag": "field", "name": "YAML_EMIT_FLOW_MAPPING_VALUE_STATE", "value": 10 }, { "tag": "field", "name": "YAML_EMIT_BLOCK_SEQUENCE_FIRST_ITEM_STATE", "value": 11 }, { "tag": "field", "name": "YAML_EMIT_BLOCK_SEQUENCE_ITEM_STATE", "value": 12 }, { "tag": "field", "name": "YAML_EMIT_BLOCK_MAPPING_FIRST_KEY_STATE", "value": 13 }, { "tag": "field", "name": "YAML_EMIT_BLOCK_MAPPING_KEY_STATE", "value": 14 }, { "tag": "field", "name": "YAML_EMIT_BLOCK_MAPPING_SIMPLE_VALUE_STATE", "value": 15 }, { "tag": "field", "name": "YAML_EMIT_BLOCK_MAPPING_VALUE_STATE", "value": 16 }, { "tag": "field", "name": "YAML_EMIT_END_STATE", "value": 17 }] },
496
+{ "tag": "typedef", "name": "yaml_emitter_state_t", "location": "/usr/include/yaml.h:1516:3", "type": { "tag": ":enum", "name": "yaml_emitter_state_e", "id": 0 } },
497
+{ "tag": "struct", "name": "yaml_emitter_s", "id": 0, "location": "/usr/include/yaml.h:1525:16", "bit-size": 3456, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "error", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "yaml_error_type_t" } }, { "tag": "field", "name": "problem", "bit-offset": 64, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "field", "name": "write_handler", "bit-offset": 128, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":function-pointer" } }, { "tag": "field", "name": "write_handler_data", "bit-offset": 192, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "field", "name": "output", "bit-offset": 256, "bit-size": 192, "bit-alignment": 64, "type": { "tag": "union", "name": "", "id": 60, "location": "/usr/include/yaml.h:1553:5", "bit-size": 192, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "string", "bit-offset": 0, "bit-size": 192, "bit-alignment": 64, "type": { "tag": "struct", "name": "", "id": 61, "location": "/usr/include/yaml.h:1555:9", "bit-size": 192, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "buffer", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":unsigned-char" } } }, { "tag": "field", "name": "size", "bit-offset": 64, "bit-size": 64, "bit-alignment": 64, "type": { "tag": "size_t" } }, { "tag": "field", "name": "size_written", "bit-offset": 128, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "size_t" } } }] } }, { "tag": "field", "name": "file", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }] } }, { "tag": "field", "name": "buffer", "bit-offset": 448, "bit-size": 256, "bit-alignment": 64, "type": { "tag": "struct", "name": "", "id": 62, "location": "/usr/include/yaml.h:1569:5", "bit-size": 256, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "start", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "field", "name": "end", "bit-offset": 64, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "field", "name": "pointer", "bit-offset": 128, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "field", "name": "last", "bit-offset": 192, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }] } }, { "tag": "field", "name": "raw_buffer", "bit-offset": 704, "bit-size": 256, "bit-alignment": 64, "type": { "tag": "struct", "name": "", "id": 63, "location": "/usr/include/yaml.h:1581:5", "bit-size": 256, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "start", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":unsigned-char" } } }, { "tag": "field", "name": "end", "bit-offset": 64, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":unsigned-char" } } }, { "tag": "field", "name": "pointer", "bit-offset": 128, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":unsigned-char" } } }, { "tag": "field", "name": "last", "bit-offset": 192, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":unsigned-char" } } }] } }, { "tag": "field", "name": "encoding", "bit-offset": 960, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "yaml_encoding_t" } }, { "tag": "field", "name": "canonical", "bit-offset": 992, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "best_indent", "bit-offset": 1024, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "best_width", "bit-offset": 1056, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "unicode", "bit-offset": 1088, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "line_break", "bit-offset": 1120, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "yaml_break_t" } }, { "tag": "field", "name": "states", "bit-offset": 1152, "bit-size": 192, "bit-alignment": 64, "type": { "tag": "struct", "name": "", "id": 64, "location": "/usr/include/yaml.h:1616:5", "bit-size": 192, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "start", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_emitter_state_t" } } }, { "tag": "field", "name": "end", "bit-offset": 64, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_emitter_state_t" } } }, { "tag": "field", "name": "top", "bit-offset": 128, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_emitter_state_t" } } }] } }, { "tag": "field", "name": "state", "bit-offset": 1344, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "yaml_emitter_state_t" } }, { "tag": "field", "name": "events", "bit-offset": 1408, "bit-size": 256, "bit-alignment": 64, "type": { "tag": "struct", "name": "", "id": 65, "location": "/usr/include/yaml.h:1629:5", "bit-size": 256, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "start", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_event_t" } } }, { "tag": "field", "name": "end", "bit-offset": 64, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_event_t" } } }, { "tag": "field", "name": "head", "bit-offset": 128, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_event_t" } } }, { "tag": "field", "name": "tail", "bit-offset": 192, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_event_t" } } }] } }, { "tag": "field", "name": "indents", "bit-offset": 1664, "bit-size": 192, "bit-alignment": 64, "type": { "tag": "struct", "name": "", "id": 66, "location": "/usr/include/yaml.h:1641:5", "bit-size": 192, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "start", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":int" } } }, { "tag": "field", "name": "end", "bit-offset": 64, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":int" } } }, { "tag": "field", "name": "top", "bit-offset": 128, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":int" } } }] } }, { "tag": "field", "name": "tag_directives", "bit-offset": 1856, "bit-size": 192, "bit-alignment": 64, "type": { "tag": "struct", "name": "", "id": 67, "location": "/usr/include/yaml.h:1651:5", "bit-size": 192, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "start", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_tag_directive_t" } } }, { "tag": "field", "name": "end", "bit-offset": 64, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_tag_directive_t" } } }, { "tag": "field", "name": "top", "bit-offset": 128, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_tag_directive_t" } } }] } }, { "tag": "field", "name": "indent", "bit-offset": 2048, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "flow_level", "bit-offset": 2080, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "root_context", "bit-offset": 2112, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "sequence_context", "bit-offset": 2144, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "mapping_context", "bit-offset": 2176, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "simple_key_context", "bit-offset": 2208, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "line", "bit-offset": 2240, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "column", "bit-offset": 2272, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "whitespace", "bit-offset": 2304, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "indention", "bit-offset": 2336, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "open_ended", "bit-offset": 2368, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "anchor_data", "bit-offset": 2432, "bit-size": 192, "bit-alignment": 64, "type": { "tag": "struct", "name": "", "id": 68, "location": "/usr/include/yaml.h:1687:5", "bit-size": 192, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "anchor", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "field", "name": "anchor_length", "bit-offset": 64, "bit-size": 64, "bit-alignment": 64, "type": { "tag": "size_t" } }, { "tag": "field", "name": "alias", "bit-offset": 128, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }] } }, { "tag": "field", "name": "tag_data", "bit-offset": 2624, "bit-size": 256, "bit-alignment": 64, "type": { "tag": "struct", "name": "", "id": 69, "location": "/usr/include/yaml.h:1697:5", "bit-size": 256, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "handle", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "field", "name": "handle_length", "bit-offset": 64, "bit-size": 64, "bit-alignment": 64, "type": { "tag": "size_t" } }, { "tag": "field", "name": "suffix", "bit-offset": 128, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "field", "name": "suffix_length", "bit-offset": 192, "bit-size": 64, "bit-alignment": 64, "type": { "tag": "size_t" } }] } }, { "tag": "field", "name": "scalar_data", "bit-offset": 2880, "bit-size": 320, "bit-alignment": 64, "type": { "tag": "struct", "name": "", "id": 70, "location": "/usr/include/yaml.h:1709:5", "bit-size": 320, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "value", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "field", "name": "length", "bit-offset": 64, "bit-size": 64, "bit-alignment": 64, "type": { "tag": "size_t" } }, { "tag": "field", "name": "multiline", "bit-offset": 128, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "flow_plain_allowed", "bit-offset": 160, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "block_plain_allowed", "bit-offset": 192, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "single_quoted_allowed", "bit-offset": 224, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "block_allowed", "bit-offset": 256, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "style", "bit-offset": 288, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "yaml_scalar_style_t" } }] } }, { "tag": "field", "name": "opened", "bit-offset": 3200, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "closed", "bit-offset": 3232, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "anchors", "bit-offset": 3264, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "struct", "name": "", "id": 71, "location": "/usr/include/yaml.h:1743:5", "bit-size": 96, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "references", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "anchor", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "serialized", "bit-offset": 64, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }] } } }, { "tag": "field", "name": "last_anchor_id", "bit-offset": 3328, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "document", "bit-offset": 3392, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_document_t" } } }] },
498
+{ "tag": "typedef", "name": "yaml_emitter_t", "location": "/usr/include/yaml.h:1762:3", "type": { "tag": ":struct", "name": "yaml_emitter_s", "id": 0 } },
499
+{ "tag": "function", "name": "yaml_emitter_initialize", "location": "/usr/include/yaml.h:1776:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "emitter", "type": { "tag": ":pointer", "type": { "tag": "yaml_emitter_t" } } }], "return-type": { "tag": ":int" } },
500
+{ "tag": "function", "name": "yaml_emitter_delete", "location": "/usr/include/yaml.h:1785:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "emitter", "type": { "tag": ":pointer", "type": { "tag": "yaml_emitter_t" } } }], "return-type": { "tag": ":void" } },
501
+{ "tag": "function", "name": "yaml_emitter_set_output_string", "location": "/usr/include/yaml.h:1803:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "emitter", "type": { "tag": ":pointer", "type": { "tag": "yaml_emitter_t" } } }, { "tag": "parameter", "name": "output", "type": { "tag": ":pointer", "type": { "tag": ":unsigned-char" } } }, { "tag": "parameter", "name": "size", "type": { "tag": "size_t" } }, { "tag": "parameter", "name": "size_written", "type": { "tag": ":pointer", "type": { "tag": "size_t" } } }], "return-type": { "tag": ":void" } },
502
+{ "tag": "function", "name": "yaml_emitter_set_output_file", "location": "/usr/include/yaml.h:1817:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "emitter", "type": { "tag": ":pointer", "type": { "tag": "yaml_emitter_t" } } }, { "tag": "parameter", "name": "file", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":void" } },
503
+{ "tag": "function", "name": "yaml_emitter_set_output", "location": "/usr/include/yaml.h:1829:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "emitter", "type": { "tag": ":pointer", "type": { "tag": "yaml_emitter_t" } } }, { "tag": "parameter", "name": "handler", "type": { "tag": ":function-pointer" } }, { "tag": "parameter", "name": "data", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": ":void" } },
504
+{ "tag": "function", "name": "yaml_emitter_set_encoding", "location": "/usr/include/yaml.h:1840:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "emitter", "type": { "tag": ":pointer", "type": { "tag": "yaml_emitter_t" } } }, { "tag": "parameter", "name": "encoding", "type": { "tag": "yaml_encoding_t" } }], "return-type": { "tag": ":void" } },
505
+{ "tag": "function", "name": "yaml_emitter_set_canonical", "location": "/usr/include/yaml.h:1851:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "emitter", "type": { "tag": ":pointer", "type": { "tag": "yaml_emitter_t" } } }, { "tag": "parameter", "name": "canonical", "type": { "tag": ":int" } }], "return-type": { "tag": ":void" } },
506
+{ "tag": "function", "name": "yaml_emitter_set_indent", "location": "/usr/include/yaml.h:1861:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "emitter", "type": { "tag": ":pointer", "type": { "tag": "yaml_emitter_t" } } }, { "tag": "parameter", "name": "indent", "type": { "tag": ":int" } }], "return-type": { "tag": ":void" } },
507
+{ "tag": "function", "name": "yaml_emitter_set_width", "location": "/usr/include/yaml.h:1871:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "emitter", "type": { "tag": ":pointer", "type": { "tag": "yaml_emitter_t" } } }, { "tag": "parameter", "name": "width", "type": { "tag": ":int" } }], "return-type": { "tag": ":void" } },
508
+{ "tag": "function", "name": "yaml_emitter_set_unicode", "location": "/usr/include/yaml.h:1881:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "emitter", "type": { "tag": ":pointer", "type": { "tag": "yaml_emitter_t" } } }, { "tag": "parameter", "name": "unicode", "type": { "tag": ":int" } }], "return-type": { "tag": ":void" } },
509
+{ "tag": "function", "name": "yaml_emitter_set_break", "location": "/usr/include/yaml.h:1891:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "emitter", "type": { "tag": ":pointer", "type": { "tag": "yaml_emitter_t" } } }, { "tag": "parameter", "name": "line_break", "type": { "tag": "yaml_break_t" } }], "return-type": { "tag": ":void" } },
510
+{ "tag": "function", "name": "yaml_emitter_emit", "location": "/usr/include/yaml.h:1908:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "emitter", "type": { "tag": ":pointer", "type": { "tag": "yaml_emitter_t" } } }, { "tag": "parameter", "name": "event", "type": { "tag": ":pointer", "type": { "tag": "yaml_event_t" } } }], "return-type": { "tag": ":int" } },
511
+{ "tag": "function", "name": "yaml_emitter_open", "location": "/usr/include/yaml.h:1921:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "emitter", "type": { "tag": ":pointer", "type": { "tag": "yaml_emitter_t" } } }], "return-type": { "tag": ":int" } },
512
+{ "tag": "function", "name": "yaml_emitter_close", "location": "/usr/include/yaml.h:1934:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "emitter", "type": { "tag": ":pointer", "type": { "tag": "yaml_emitter_t" } } }], "return-type": { "tag": ":int" } },
513
+{ "tag": "function", "name": "yaml_emitter_dump", "location": "/usr/include/yaml.h:1951:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "emitter", "type": { "tag": ":pointer", "type": { "tag": "yaml_emitter_t" } } }, { "tag": "parameter", "name": "document", "type": { "tag": ":pointer", "type": { "tag": "yaml_document_t" } } }], "return-type": { "tag": ":int" } },
514
+{ "tag": "function", "name": "yaml_emitter_flush", "location": "/usr/include/yaml.h:1962:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "emitter", "type": { "tag": ":pointer", "type": { "tag": "yaml_emitter_t" } } }], "return-type": { "tag": ":int" } }
515
+]
0 516
new file mode 100755
... ...
@@ -0,0 +1,676 @@
1
+/* /usr/include/endian.h:32:9 */
2
+#define __BIG_ENDIAN 4321
3
+
4
+/* /usr/include/endian.h:31:9 */
5
+#define __LITTLE_ENDIAN 1234
6
+
7
+/* /usr/include/endian.h:33:9 */
8
+#define __PDP_ENDIAN 3412
9
+
10
+/* /usr/include/bits/byteswap.h:24:9 */
11
+#define _BITS_BYTESWAP_H 1
12
+
13
+/* /usr/include/bits/types.h:24:9 */
14
+#define _BITS_TYPES_H 1
15
+
16
+/* /usr/include/time.h:53:10 */
17
+#define __clock_t_defined 1
18
+
19
+/* /usr/include/bits/waitflags.h:36:9 */
20
+#define __WALL 0x40000000
21
+
22
+/* /usr/include/time.h:69:10 */
23
+#define __time_t_defined 1
24
+
25
+/* /usr/include/bits/waitflags.h:37:9 */
26
+#define __WCLONE 0x80000000
27
+
28
+/* /usr/include/bits/waitstatus.h:58:9 */
29
+#define __W_CONTINUED 0xffff
30
+
31
+/* /usr/include/endian.h:19:9 */
32
+#define _ENDIAN_H 1
33
+
34
+/* /usr/include/bits/typesizes.h:86:9 */
35
+#define __FD_SETSIZE 1024
36
+
37
+/* /usr/include/features.h:249:10 */
38
+#define __USE_POSIX199506 1
39
+
40
+/* /usr/include/bits/typesizes.h:82:10 */
41
+#define __INO_T_MATCHES_INO64_T 1
42
+
43
+/* /usr/include/features.h:245:10 */
44
+#define __USE_POSIX199309 1
45
+
46
+/* /usr/include/bits/waitstatus.h:59:9 */
47
+#define __WCOREFLAG 0x80
48
+
49
+/* /usr/include/bits/typesizes.h:79:10 */
50
+#define __OFF_T_MATCHES_OFF64_T 1
51
+
52
+/* /usr/include/_G_config.h:48:9 */
53
+#define _G_HAVE_MMAP 1
54
+
55
+/* /usr/include/_G_config.h:51:9 */
56
+#define _G_IO_IO_FILE_VERSION 0x20001
57
+
58
+/* /usr/include/libio.h:63:10 */
59
+#define EOF (-1)
60
+
61
+/* /usr/include/_G_config.h:49:9 */
62
+#define _G_HAVE_MREMAP 1
63
+
64
+/* /usr/include/features.h:255:10 */
65
+#define __USE_ISOC95 1
66
+
67
+/* /usr/include/features.h:257:10 */
68
+#define __USE_ISOC99 1
69
+
70
+/* /usr/include/features.h:237:10 */
71
+#define __USE_POSIX 1
72
+
73
+/* /usr/include/features.h:241:10 */
74
+#define __USE_POSIX2 1
75
+
76
+/* /usr/include/stdlib.h:37:9 */
77
+#define _STDLIB_H 1
78
+
79
+/* /usr/include/features.h:19:9 */
80
+#define _FEATURES_H 1
81
+
82
+/* /usr/include/alloca.h:19:9 */
83
+#define _ALLOCA_H 1
84
+
85
+/* /usr/include/features.h:263:10 */
86
+#define _ATFILE_SOURCE 1
87
+
88
+/* /usr/include/features.h:233:10 */
89
+#define __USE_POSIX_IMPLICITLY 1
90
+
91
+/* /usr/include/bits/typesizes.h:24:9 */
92
+#define _BITS_TYPESIZES_H 1
93
+
94
+/* /usr/include/bits/stdio_lim.h:24:10 */
95
+#define TMP_MAX 238328
96
+
97
+/* /usr/include/features.h:350:9 */
98
+#define __GNU_LIBRARY__ 6
99
+
100
+/* /usr/include/stdc-predef.h:34:9 */
101
+#define __STDC_ISO_10646__ 201103L
102
+
103
+/* /usr/include/stdc-predef.h:37:9 */
104
+#define __STDC_NO_THREADS__ 1
105
+
106
+/* /usr/include/bits/predefs.h:27:9 */
107
+#define __STDC_IEC_559__ 1
108
+
109
+/* /usr/include/stdc-predef.h:19:9 */
110
+#define _STDC_PREDEF_H 1
111
+
112
+/* /usr/include/bits/predefs.h:28:9 */
113
+#define __STDC_IEC_559_COMPLEX__ 1
114
+
115
+/* /usr/include/features.h:365:10 */
116
+#define __GLIBC_HAVE_LONG_LONG 1
117
+
118
+/* /usr/include/libio.h:79:9 */
119
+#define _IOS_OUTPUT 2
120
+
121
+/* /usr/include/bits/sigset.h:21:10 */
122
+#define _SIGSET_H_types 1
123
+
124
+/* /usr/include/features.h:355:9 */
125
+#define __GLIBC_MINOR__ 17
126
+
127
+/* /usr/include/features.h:354:9 */
128
+#define __GLIBC__ 2
129
+
130
+/* /usr/include/bits/sigset.h:27:10 */
131
+#define _SIGSET_NWORDS (1024/(8*sizeof(unsignedlongint)))
132
+
133
+/* /usr/include/_G_config.h:56:9 */
134
+#define _G_BUFSIZ 8192
135
+
136
+/* /usr/include/sys/cdefs.h:20:9 */
137
+#define _SYS_CDEFS_H 1
138
+
139
+/* /usr/include/libio.h:60:9 */
140
+#define _IO_UNIFIED_JUMPTABLES 1
141
+
142
+/* /usr/include/bits/stdio_lim.h:28:11 */
143
+#define L_ctermid 9
144
+
145
+/* /usr/include/features.h:261:10 */
146
+#define __USE_XOPEN2K8 1
147
+
148
+/* /usr/include/libio.h:80:9 */
149
+#define _IOS_ATEND 4
150
+
151
+/* /usr/include/features.h:253:10 */
152
+#define __USE_XOPEN2K 1
153
+
154
+/* /usr/include/stdio.h:141:9 */
155
+#define SEEK_CUR 1
156
+
157
+/* /usr/include/stdio.h:121:9 */
158
+#define _IOLBF 1
159
+
160
+/* /usr/include/stdio.h:120:9 */
161
+#define _IOFBF 0
162
+
163
+/* /usr/include/bits/waitflags.h:30:9 */
164
+#define WEXITED 4
165
+
166
+/* /usr/include/sys/select.h:22:9 */
167
+#define _SYS_SELECT_H 1
168
+
169
+/* /usr/include/features.h:336:10 */
170
+#define __USE_FORTIFY_LEVEL 0
171
+
172
+/* /usr/include/features.h:305:10 */
173
+#define __USE_MISC 1
174
+
175
+/* /usr/include/bits/select.h:28:11 */
176
+#define __FD_ZERO_STOS "stosq"
177
+
178
+/* /usr/include/bits/waitflags.h:29:9 */
179
+#define WSTOPPED 2
180
+
181
+/* /usr/include/bits/waitflags.h:32:9 */
182
+#define WNOWAIT 0x01000000
183
+
184
+/* /usr/include/features.h:317:10 */
185
+#define __USE_ATFILE 1
186
+
187
+/* /usr/include/bits/waitflags.h:31:9 */
188
+#define WCONTINUED 8
189
+
190
+/* /usr/include/bits/waitflags.h:34:9 */
191
+#define __WNOTHREAD 0x20000000
192
+
193
+/* /usr/include/features.h:309:10 */
194
+#define __USE_BSD 1
195
+
196
+/* /usr/include/features.h:313:10 */
197
+#define __USE_SVID 1
198
+
199
+/* /usr/include/stdio.h:142:9 */
200
+#define SEEK_END 2
201
+
202
+/* /usr/include/bits/waitflags.h:26:9 */
203
+#define WUNTRACED 2
204
+
205
+/* /usr/include/bits/waitflags.h:25:9 */
206
+#define WNOHANG 1
207
+
208
+/* /usr/include/libio.h:78:9 */
209
+#define _IOS_INPUT 1
210
+
211
+/* /usr/include/sys/types.h:211:9 */
212
+#define __BIT_TYPES_DEFINED__ 1
213
+
214
+/* /usr/include/time.h:98:10 */
215
+#define __timer_t_defined 1
216
+
217
+/* /usr/include/time.h:86:10 */
218
+#define __clockid_t_defined 1
219
+
220
+/* /usr/include/bits/stdio_lim.h:25:10 */
221
+#define FILENAME_MAX 4096
222
+
223
+/* /usr/include/stdio.h:140:9 */
224
+#define SEEK_SET 0
225
+
226
+/* /usr/include/features.h:133:9 */
227
+#define __USE_ANSI 1
228
+
229
+/* /usr/include/bits/wordsize.h:4:10 */
230
+#define __WORDSIZE 64
231
+
232
+/* /usr/include/bits/wordsize.h:12:10 */
233
+#define __SYSCALL_WORDSIZE 64
234
+
235
+/* /usr/include/string.h:23:9 */
236
+#define _STRING_H 1
237
+
238
+/* /usr/include/bits/wordsize.h:10:10 */
239
+#define __WORDSIZE_TIME64_COMPAT32 1
240
+
241
+/* /usr/include/time.h:114:10 */
242
+#define __timespec_defined 1
243
+
244
+/* /usr/include/features.h:189:10 */
245
+#define _SVID_SOURCE 1
246
+
247
+/* /usr/include/bits/stdio_lim.h:37:10 */
248
+#define FOPEN_MAX 16
249
+
250
+/* /usr/include/features.h:231:11 */
251
+#define _POSIX_C_SOURCE 200809L
252
+
253
+/* /usr/include/stdio.h:151:10 */
254
+#define P_tmpdir "/tmp"
255
+
256
+/* /usr/include/features.h:188:10 */
257
+#define _BSD_SOURCE 1
258
+
259
+/* /usr/include/features.h:223:10 */
260
+#define _POSIX_SOURCE 1
261
+
262
+/* /usr/include/libio.h:136:9 */
263
+#define _IO_SHOWPOS 02000
264
+
265
+/* /usr/include/bits/stdio_lim.h:23:10 */
266
+#define L_tmpnam 20
267
+
268
+/* /usr/include/stdio.h:122:9 */
269
+#define _IONBF 2
270
+
271
+/* /usr/include/libio.h:137:9 */
272
+#define _IO_SCIENTIFIC 04000
273
+
274
+/* /usr/include/libio.h:133:9 */
275
+#define _IO_SHOWBASE 0200
276
+
277
+/* /usr/include/libio.h:134:9 */
278
+#define _IO_SHOWPOINT 0400
279
+
280
+/* /usr/include/libio.h:135:9 */
281
+#define _IO_UPPERCASE 01000
282
+
283
+/* /usr/include/libio.h:140:9 */
284
+#define _IO_STDIO 040000
285
+
286
+/* /usr/include/libio.h:141:9 */
287
+#define _IO_DONT_CLOSE 0100000
288
+
289
+/* /usr/include/libio.h:142:9 */
290
+#define _IO_BOOLALPHA 0200000
291
+
292
+/* /usr/include/libio.h:138:9 */
293
+#define _IO_FIXED 010000
294
+
295
+/* /usr/include/libio.h:139:9 */
296
+#define _IO_UNITBUF 020000
297
+
298
+/* /usr/include/bits/pthreadtypes.h:70:10 */
299
+#define __have_pthread_attr_t 1
300
+
301
+/* /usr/include/xlocale.h:21:9 */
302
+#define _XLOCALE_H 1
303
+
304
+/* /usr/include/bits/pthreadtypes.h:33:11 */
305
+#define __SIZEOF_PTHREAD_BARRIERATTR_T 4
306
+
307
+/* /usr/include/stdlib.h:122:10 */
308
+#define __lldiv_t_defined 1
309
+
310
+/* /usr/include/stdlib.h:133:9 */
311
+#define EXIT_FAILURE 1
312
+
313
+/* /usr/include/stdlib.h:128:9 */
314
+#define RAND_MAX 2147483647
315
+
316
+/* /usr/include/bits/pthreadtypes.h:106:10 */
317
+#define __PTHREAD_MUTEX_HAVE_PREV 1
318
+
319
+/* /usr/include/stdlib.h:110:10 */
320
+#define __ldiv_t_defined 1
321
+
322
+/* /usr/include/bits/pthreadtypes.h:182:10 */
323
+#define __PTHREAD_RWLOCK_INT_FLAGS_SHARED 1
324
+
325
+/* /usr/include/yaml.h:680:9 */
326
+#define YAML_MAP_TAG "tag:yaml.org,2002:map"
327
+
328
+/* /usr/include/yaml.h:678:9 */
329
+#define YAML_SEQ_TAG "tag:yaml.org,2002:seq"
330
+
331
+/* /usr/include/yaml.h:675:9 */
332
+#define YAML_TIMESTAMP_TAG "tag:yaml.org,2002:timestamp"
333
+
334
+/* /usr/include/yaml.h:673:9 */
335
+#define YAML_FLOAT_TAG "tag:yaml.org,2002:float"
336
+
337
+/* /usr/include/yaml.h:671:9 */
338
+#define YAML_INT_TAG "tag:yaml.org,2002:int"
339
+
340
+/* /usr/include/yaml.h:669:9 */
341
+#define YAML_STR_TAG "tag:yaml.org,2002:str"
342
+
343
+/* /usr/include/yaml.h:667:9 */
344
+#define YAML_BOOL_TAG "tag:yaml.org,2002:bool"
345
+
346
+/* /usr/include/yaml.h:665:9 */
347
+#define YAML_NULL_TAG "tag:yaml.org,2002:null"
348
+
349
+/* /usr/include/sys/types.h:23:9 */
350
+#define _SYS_TYPES_H 1
351
+
352
+/* /usr/include/stdio.h:56:10 */
353
+#define __FILE_defined 1
354
+
355
+/* /usr/include/stdio.h:26:10 */
356
+#define _STDIO_H 1
357
+
358
+/* /usr/include/wchar.h:80:10 */
359
+#define ____mbstate_t_defined 1
360
+
361
+/* /usr/include/stdlib.h:134:9 */
362
+#define EXIT_SUCCESS 0
363
+
364
+/* /usr/include/sys/select.h:59:9 */
365
+#define __NFDBITS (8*(int)sizeof(__fd_mask))
366
+
367
+/* /usr/include/stdio.h:66:10 */
368
+#define ____FILE_defined 1
369
+
370
+/* /usr/include/bits/time.h:25:11 */
371
+#define _STRUCT_TIMEVAL 1
372
+
373
+/* /usr/include/_G_config.h:5:9 */
374
+#define _G_config_h 1
375
+
376
+/* /usr/include/libio.h:81:9 */
377
+#define _IOS_APPEND 8
378
+
379
+/* /usr/include/libio.h:83:9 */
380
+#define _IOS_NOCREATE 32
381
+
382
+/* /usr/include/libio.h:82:9 */
383
+#define _IOS_TRUNC 16
384
+
385
+/* /usr/include/libio.h:85:9 */
386
+#define _IOS_BIN 128
387
+
388
+/* /usr/include/libio.h:84:9 */
389
+#define _IOS_NOREPLACE 64
390
+
391
+/* /usr/include/libio.h:94:9 */
392
+#define _OLD_STDIO_MAGIC 0xFABC0000
393
+
394
+/* /usr/include/libio.h:93:9 */
395
+#define _IO_MAGIC 0xFBAD0000
396
+
397
+/* /usr/include/libio.h:97:9 */
398
+#define _IO_UNBUFFERED 2
399
+
400
+/* /usr/include/libio.h:95:9 */
401
+#define _IO_MAGIC_MASK 0xFFFF0000
402
+
403
+/* /usr/include/libio.h:96:9 */
404
+#define _IO_USER_BUF 1
405
+
406
+/* /usr/include/libio.h:99:9 */
407
+#define _IO_NO_WRITES 8
408
+
409
+/* /usr/include/sys/sysmacros.h:21:9 */
410
+#define _SYS_SYSMACROS_H 1
411
+
412
+/* /usr/include/libio.h:98:9 */
413
+#define _IO_NO_READS 4
414
+
415
+/* /usr/include/libio.h:101:9 */
416
+#define _IO_ERR_SEEN 0x20
417
+
418
+/* /usr/include/libio.h:100:9 */
419
+#define _IO_EOF_SEEN 0x10
420
+
421
+/* /usr/include/libio.h:103:9 */
422
+#define _IO_LINKED 0x80
423
+
424
+/* /usr/include/libio.h:102:9 */
425
+#define _IO_DELETE_DONT_CLOSE 0x40
426
+
427
+/* /usr/include/libio.h:106:9 */
428
+#define _IO_TIED_PUT_GET 0x400
429
+
430
+/* /usr/include/bits/pthreadtypes.h:30:11 */
431
+#define __SIZEOF_PTHREAD_RWLOCK_T 56
432
+
433
+/* /usr/include/libio.h:105:9 */
434
+#define _IO_LINE_BUF 0x200
435
+
436
+/* /usr/include/bits/pthreadtypes.h:29:11 */
437
+#define __SIZEOF_PTHREAD_CONDATTR_T 4
438
+
439
+/* /usr/include/bits/pthreadtypes.h:32:11 */
440
+#define __SIZEOF_PTHREAD_BARRIER_T 32
441
+
442
+/* /usr/include/libio.h:108:9 */
443
+#define _IO_IS_APPENDING 0x1000
444
+
445
+/* /usr/include/libio.h:104:9 */
446
+#define _IO_IN_BACKUP 0x100
447
+
448
+/* /usr/include/libio.h:107:9 */
449
+#define _IO_CURRENTLY_PUTTING 0x800
450
+
451
+/* /usr/include/bits/pthreadtypes.h:31:11 */
452
+#define __SIZEOF_PTHREAD_RWLOCKATTR_T 8
453
+
454
+/* /usr/include/libio.h:110:9 */
455
+#define _IO_BAD_SEEN 0x4000
456
+
457
+/* /usr/include/bits/pthreadtypes.h:26:11 */
458
+#define __SIZEOF_PTHREAD_MUTEX_T 40
459
+
460
+/* /usr/include/libio.h:109:9 */
461
+#define _IO_IS_FILEBUF 0x2000
462
+
463
+/* /usr/include/bits/pthreadtypes.h:28:11 */
464
+#define __SIZEOF_PTHREAD_COND_T 48
465
+
466
+/* /usr/include/libio.h:111:9 */
467
+#define _IO_USER_LOCK 0x8000
468
+
469
+/* /usr/include/libio.h:113:9 */
470
+#define _IO_FLAGS2_MMAP 1
471
+
472
+/* /usr/include/bits/pthreadtypes.h:27:11 */
473
+#define __SIZEOF_PTHREAD_MUTEXATTR_T 4
474
+
475
+/* /usr/include/libio.h:118:9 */
476
+#define _IO_FLAGS2_USER_WBUF 8
477
+
478
+/* /usr/include/libio.h:114:9 */
479
+#define _IO_FLAGS2_NOTCANCEL 2
480
+
481
+/* /usr/include/bits/pthreadtypes.h:25:11 */
482
+#define __SIZEOF_PTHREAD_ATTR_T 56
483
+
484
+/* /usr/include/libio.h:127:9 */
485
+#define _IO_LEFT 02
486
+
487
+/* /usr/include/bits/pthreadtypes.h:19:9 */
488
+#define _BITS_PTHREADTYPES_H 1
489
+
490
+/* /usr/include/libio.h:126:9 */
491
+#define _IO_SKIPWS 01
492
+
493
+/* /usr/include/libio.h:130:9 */
494
+#define _IO_DEC 020
495
+
496
+/* /usr/include/libio.h:129:9 */
497
+#define _IO_INTERNAL 010
498
+
499
+/* /usr/include/libio.h:128:9 */
500
+#define _IO_RIGHT 04
501
+
502
+/* /usr/include/libio.h:132:9 */
503
+#define _IO_HEX 0100
504
+
505
+/* /usr/include/libio.h:131:9 */
506
+#define _IO_OCT 040
507
+
508
+const __int128_t __c2ffi___BIG_ENDIAN = __BIG_ENDIAN;
509
+const __int128_t __c2ffi___LITTLE_ENDIAN = __LITTLE_ENDIAN;
510
+const __int128_t __c2ffi___PDP_ENDIAN = __PDP_ENDIAN;
511
+const __int128_t __c2ffi__BITS_BYTESWAP_H = _BITS_BYTESWAP_H;
512
+const __int128_t __c2ffi__BITS_TYPES_H = _BITS_TYPES_H;
513
+const __int128_t __c2ffi___clock_t_defined = __clock_t_defined;
514
+const __int128_t __c2ffi___WALL = __WALL;
515
+const __int128_t __c2ffi___time_t_defined = __time_t_defined;
516
+const __int128_t __c2ffi___WCLONE = __WCLONE;
517
+const __int128_t __c2ffi___W_CONTINUED = __W_CONTINUED;
518
+const __int128_t __c2ffi__ENDIAN_H = _ENDIAN_H;
519
+const __int128_t __c2ffi___FD_SETSIZE = __FD_SETSIZE;
520
+const __int128_t __c2ffi___USE_POSIX199506 = __USE_POSIX199506;
521
+const __int128_t __c2ffi___INO_T_MATCHES_INO64_T = __INO_T_MATCHES_INO64_T;
522
+const __int128_t __c2ffi___USE_POSIX199309 = __USE_POSIX199309;
523
+const __int128_t __c2ffi___WCOREFLAG = __WCOREFLAG;
524
+const __int128_t __c2ffi___OFF_T_MATCHES_OFF64_T = __OFF_T_MATCHES_OFF64_T;
525
+const __int128_t __c2ffi__G_HAVE_MMAP = _G_HAVE_MMAP;
526
+const __int128_t __c2ffi__G_IO_IO_FILE_VERSION = _G_IO_IO_FILE_VERSION;
527
+const __int128_t __c2ffi_EOF = EOF;
528
+const __int128_t __c2ffi__G_HAVE_MREMAP = _G_HAVE_MREMAP;
529
+const __int128_t __c2ffi___USE_ISOC95 = __USE_ISOC95;
530
+const __int128_t __c2ffi___USE_ISOC99 = __USE_ISOC99;
531
+const __int128_t __c2ffi___USE_POSIX = __USE_POSIX;
532
+const __int128_t __c2ffi___USE_POSIX2 = __USE_POSIX2;
533
+const __int128_t __c2ffi__STDLIB_H = _STDLIB_H;
534
+const __int128_t __c2ffi__FEATURES_H = _FEATURES_H;
535
+const __int128_t __c2ffi__ALLOCA_H = _ALLOCA_H;
536
+const __int128_t __c2ffi__ATFILE_SOURCE = _ATFILE_SOURCE;
537
+const __int128_t __c2ffi___USE_POSIX_IMPLICITLY = __USE_POSIX_IMPLICITLY;
538
+const __int128_t __c2ffi__BITS_TYPESIZES_H = _BITS_TYPESIZES_H;
539
+const __int128_t __c2ffi_TMP_MAX = TMP_MAX;
540
+const __int128_t __c2ffi___GNU_LIBRARY__ = __GNU_LIBRARY__;
541
+const __int128_t __c2ffi___STDC_ISO_10646__ = __STDC_ISO_10646__;
542
+const __int128_t __c2ffi___STDC_NO_THREADS__ = __STDC_NO_THREADS__;
543
+const __int128_t __c2ffi___STDC_IEC_559__ = __STDC_IEC_559__;
544
+const __int128_t __c2ffi__STDC_PREDEF_H = _STDC_PREDEF_H;
545
+const __int128_t __c2ffi___STDC_IEC_559_COMPLEX__ = __STDC_IEC_559_COMPLEX__;
546
+const __int128_t __c2ffi___GLIBC_HAVE_LONG_LONG = __GLIBC_HAVE_LONG_LONG;
547
+const __int128_t __c2ffi__IOS_OUTPUT = _IOS_OUTPUT;
548
+const __int128_t __c2ffi__SIGSET_H_types = _SIGSET_H_types;
549
+const __int128_t __c2ffi___GLIBC_MINOR__ = __GLIBC_MINOR__;
550
+const __int128_t __c2ffi___GLIBC__ = __GLIBC__;
551
+const __int128_t __c2ffi__SIGSET_NWORDS = _SIGSET_NWORDS;
552
+const __int128_t __c2ffi__G_BUFSIZ = _G_BUFSIZ;
553
+const __int128_t __c2ffi__SYS_CDEFS_H = _SYS_CDEFS_H;
554
+const __int128_t __c2ffi__IO_UNIFIED_JUMPTABLES = _IO_UNIFIED_JUMPTABLES;
555
+const __int128_t __c2ffi_L_ctermid = L_ctermid;
556
+const __int128_t __c2ffi___USE_XOPEN2K8 = __USE_XOPEN2K8;
557
+const __int128_t __c2ffi__IOS_ATEND = _IOS_ATEND;
558
+const __int128_t __c2ffi___USE_XOPEN2K = __USE_XOPEN2K;
559
+const __int128_t __c2ffi_SEEK_CUR = SEEK_CUR;
560
+const __int128_t __c2ffi__IOLBF = _IOLBF;
561
+const __int128_t __c2ffi__IOFBF = _IOFBF;
562
+const __int128_t __c2ffi_WEXITED = WEXITED;
563
+const __int128_t __c2ffi__SYS_SELECT_H = _SYS_SELECT_H;
564
+const __int128_t __c2ffi___USE_FORTIFY_LEVEL = __USE_FORTIFY_LEVEL;
565
+const __int128_t __c2ffi___USE_MISC = __USE_MISC;
566
+const char* __c2ffi___FD_ZERO_STOS = __FD_ZERO_STOS;
567
+const __int128_t __c2ffi_WSTOPPED = WSTOPPED;
568
+const __int128_t __c2ffi_WNOWAIT = WNOWAIT;
569
+const __int128_t __c2ffi___USE_ATFILE = __USE_ATFILE;
570
+const __int128_t __c2ffi_WCONTINUED = WCONTINUED;
571
+const __int128_t __c2ffi___WNOTHREAD = __WNOTHREAD;
572
+const __int128_t __c2ffi___USE_BSD = __USE_BSD;
573
+const __int128_t __c2ffi___USE_SVID = __USE_SVID;
574
+const __int128_t __c2ffi_SEEK_END = SEEK_END;
575
+const __int128_t __c2ffi_WUNTRACED = WUNTRACED;
576
+const __int128_t __c2ffi_WNOHANG = WNOHANG;
577
+const __int128_t __c2ffi__IOS_INPUT = _IOS_INPUT;
578
+const __int128_t __c2ffi___BIT_TYPES_DEFINED__ = __BIT_TYPES_DEFINED__;
579
+const __int128_t __c2ffi___timer_t_defined = __timer_t_defined;
580
+const __int128_t __c2ffi___clockid_t_defined = __clockid_t_defined;
581
+const __int128_t __c2ffi_FILENAME_MAX = FILENAME_MAX;
582
+const __int128_t __c2ffi_SEEK_SET = SEEK_SET;
583
+const __int128_t __c2ffi___USE_ANSI = __USE_ANSI;
584
+const __int128_t __c2ffi___WORDSIZE = __WORDSIZE;
585
+const __int128_t __c2ffi___SYSCALL_WORDSIZE = __SYSCALL_WORDSIZE;
586
+const __int128_t __c2ffi__STRING_H = _STRING_H;
587
+const __int128_t __c2ffi___WORDSIZE_TIME64_COMPAT32 = __WORDSIZE_TIME64_COMPAT32;
588
+const __int128_t __c2ffi___timespec_defined = __timespec_defined;
589
+const __int128_t __c2ffi__SVID_SOURCE = _SVID_SOURCE;
590
+const __int128_t __c2ffi_FOPEN_MAX = FOPEN_MAX;
591
+const __int128_t __c2ffi__POSIX_C_SOURCE = _POSIX_C_SOURCE;
592
+const char* __c2ffi_P_tmpdir = P_tmpdir;
593
+const __int128_t __c2ffi__BSD_SOURCE = _BSD_SOURCE;
594
+const __int128_t __c2ffi__POSIX_SOURCE = _POSIX_SOURCE;
595
+const __int128_t __c2ffi__IO_SHOWPOS = _IO_SHOWPOS;
596
+const __int128_t __c2ffi_L_tmpnam = L_tmpnam;
597
+const __int128_t __c2ffi__IONBF = _IONBF;
598
+const __int128_t __c2ffi__IO_SCIENTIFIC = _IO_SCIENTIFIC;
599
+const __int128_t __c2ffi__IO_SHOWBASE = _IO_SHOWBASE;
600
+const __int128_t __c2ffi__IO_SHOWPOINT = _IO_SHOWPOINT;
601
+const __int128_t __c2ffi__IO_UPPERCASE = _IO_UPPERCASE;
602
+const __int128_t __c2ffi__IO_STDIO = _IO_STDIO;
603
+const __int128_t __c2ffi__IO_DONT_CLOSE = _IO_DONT_CLOSE;
604
+const __int128_t __c2ffi__IO_BOOLALPHA = _IO_BOOLALPHA;
605
+const __int128_t __c2ffi__IO_FIXED = _IO_FIXED;
606
+const __int128_t __c2ffi__IO_UNITBUF = _IO_UNITBUF;
607
+const __int128_t __c2ffi___have_pthread_attr_t = __have_pthread_attr_t;
608
+const __int128_t __c2ffi__XLOCALE_H = _XLOCALE_H;
609
+const __int128_t __c2ffi___SIZEOF_PTHREAD_BARRIERATTR_T = __SIZEOF_PTHREAD_BARRIERATTR_T;
610
+const __int128_t __c2ffi___lldiv_t_defined = __lldiv_t_defined;
611
+const __int128_t __c2ffi_EXIT_FAILURE = EXIT_FAILURE;
612
+const __int128_t __c2ffi_RAND_MAX = RAND_MAX;
613
+const __int128_t __c2ffi___PTHREAD_MUTEX_HAVE_PREV = __PTHREAD_MUTEX_HAVE_PREV;
614
+const __int128_t __c2ffi___ldiv_t_defined = __ldiv_t_defined;
615
+const __int128_t __c2ffi___PTHREAD_RWLOCK_INT_FLAGS_SHARED = __PTHREAD_RWLOCK_INT_FLAGS_SHARED;
616
+const char* __c2ffi_YAML_MAP_TAG = YAML_MAP_TAG;
617
+const char* __c2ffi_YAML_SEQ_TAG = YAML_SEQ_TAG;
618
+const char* __c2ffi_YAML_TIMESTAMP_TAG = YAML_TIMESTAMP_TAG;
619
+const char* __c2ffi_YAML_FLOAT_TAG = YAML_FLOAT_TAG;
620
+const char* __c2ffi_YAML_INT_TAG = YAML_INT_TAG;
621
+const char* __c2ffi_YAML_STR_TAG = YAML_STR_TAG;
622
+const char* __c2ffi_YAML_BOOL_TAG = YAML_BOOL_TAG;
623
+const char* __c2ffi_YAML_NULL_TAG = YAML_NULL_TAG;
624
+const __int128_t __c2ffi__SYS_TYPES_H = _SYS_TYPES_H;
625
+const __int128_t __c2ffi___FILE_defined = __FILE_defined;
626
+const __int128_t __c2ffi__STDIO_H = _STDIO_H;
627
+const __int128_t __c2ffi_____mbstate_t_defined = ____mbstate_t_defined;
628
+const __int128_t __c2ffi_EXIT_SUCCESS = EXIT_SUCCESS;
629
+const __int128_t __c2ffi___NFDBITS = __NFDBITS;
630
+const __int128_t __c2ffi_____FILE_defined = ____FILE_defined;
631
+const __int128_t __c2ffi__STRUCT_TIMEVAL = _STRUCT_TIMEVAL;
632
+const __int128_t __c2ffi__G_config_h = _G_config_h;
633
+const __int128_t __c2ffi__IOS_APPEND = _IOS_APPEND;
634
+const __int128_t __c2ffi__IOS_NOCREATE = _IOS_NOCREATE;
635
+const __int128_t __c2ffi__IOS_TRUNC = _IOS_TRUNC;
636
+const __int128_t __c2ffi__IOS_BIN = _IOS_BIN;
637
+const __int128_t __c2ffi__IOS_NOREPLACE = _IOS_NOREPLACE;
638
+const __int128_t __c2ffi__OLD_STDIO_MAGIC = _OLD_STDIO_MAGIC;
639
+const __int128_t __c2ffi__IO_MAGIC = _IO_MAGIC;
640
+const __int128_t __c2ffi__IO_UNBUFFERED = _IO_UNBUFFERED;
641
+const __int128_t __c2ffi__IO_MAGIC_MASK = _IO_MAGIC_MASK;
642
+const __int128_t __c2ffi__IO_USER_BUF = _IO_USER_BUF;
643
+const __int128_t __c2ffi__IO_NO_WRITES = _IO_NO_WRITES;
644
+const __int128_t __c2ffi__SYS_SYSMACROS_H = _SYS_SYSMACROS_H;
645
+const __int128_t __c2ffi__IO_NO_READS = _IO_NO_READS;
646
+const __int128_t __c2ffi__IO_ERR_SEEN = _IO_ERR_SEEN;
647
+const __int128_t __c2ffi__IO_EOF_SEEN = _IO_EOF_SEEN;
648
+const __int128_t __c2ffi__IO_LINKED = _IO_LINKED;
649
+const __int128_t __c2ffi__IO_DELETE_DONT_CLOSE = _IO_DELETE_DONT_CLOSE;
650
+const __int128_t __c2ffi__IO_TIED_PUT_GET = _IO_TIED_PUT_GET;
651
+const __int128_t __c2ffi___SIZEOF_PTHREAD_RWLOCK_T = __SIZEOF_PTHREAD_RWLOCK_T;
652
+const __int128_t __c2ffi__IO_LINE_BUF = _IO_LINE_BUF;
653
+const __int128_t __c2ffi___SIZEOF_PTHREAD_CONDATTR_T = __SIZEOF_PTHREAD_CONDATTR_T;
654
+const __int128_t __c2ffi___SIZEOF_PTHREAD_BARRIER_T = __SIZEOF_PTHREAD_BARRIER_T;
655
+const __int128_t __c2ffi__IO_IS_APPENDING = _IO_IS_APPENDING;
656
+const __int128_t __c2ffi__IO_IN_BACKUP = _IO_IN_BACKUP;
657
+const __int128_t __c2ffi__IO_CURRENTLY_PUTTING = _IO_CURRENTLY_PUTTING;
658
+const __int128_t __c2ffi___SIZEOF_PTHREAD_RWLOCKATTR_T = __SIZEOF_PTHREAD_RWLOCKATTR_T;
659
+const __int128_t __c2ffi__IO_BAD_SEEN = _IO_BAD_SEEN;
660
+const __int128_t __c2ffi___SIZEOF_PTHREAD_MUTEX_T = __SIZEOF_PTHREAD_MUTEX_T;
661
+const __int128_t __c2ffi__IO_IS_FILEBUF = _IO_IS_FILEBUF;
662
+const __int128_t __c2ffi___SIZEOF_PTHREAD_COND_T = __SIZEOF_PTHREAD_COND_T;
663
+const __int128_t __c2ffi__IO_USER_LOCK = _IO_USER_LOCK;
664
+const __int128_t __c2ffi__IO_FLAGS2_MMAP = _IO_FLAGS2_MMAP;
665
+const __int128_t __c2ffi___SIZEOF_PTHREAD_MUTEXATTR_T = __SIZEOF_PTHREAD_MUTEXATTR_T;
666
+const __int128_t __c2ffi__IO_FLAGS2_USER_WBUF = _IO_FLAGS2_USER_WBUF;
667
+const __int128_t __c2ffi__IO_FLAGS2_NOTCANCEL = _IO_FLAGS2_NOTCANCEL;
668
+const __int128_t __c2ffi___SIZEOF_PTHREAD_ATTR_T = __SIZEOF_PTHREAD_ATTR_T;
669
+const __int128_t __c2ffi__IO_LEFT = _IO_LEFT;
670
+const __int128_t __c2ffi__BITS_PTHREADTYPES_H = _BITS_PTHREADTYPES_H;
671
+const __int128_t __c2ffi__IO_SKIPWS = _IO_SKIPWS;
672
+const __int128_t __c2ffi__IO_DEC = _IO_DEC;
673
+const __int128_t __c2ffi__IO_INTERNAL = _IO_INTERNAL;
674
+const __int128_t __c2ffi__IO_RIGHT = _IO_RIGHT;
675
+const __int128_t __c2ffi__IO_HEX = _IO_HEX;
676
+const __int128_t __c2ffi__IO_OCT = _IO_OCT;
0 677
new file mode 100755
... ...
@@ -0,0 +1,171 @@
1
+[
2
+{ "tag": "const", "name": "__BIG_ENDIAN", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-win64.h:508:18", "type": { "tag": "__int128_t" }, "value": 4321 },
3
+{ "tag": "const", "name": "__LITTLE_ENDIAN", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-win64.h:509:18", "type": { "tag": "__int128_t" }, "value": 1234 },
4
+{ "tag": "const", "name": "__PDP_ENDIAN", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-win64.h:510:18", "type": { "tag": "__int128_t" }, "value": 3412 },
5
+{ "tag": "const", "name": "_BITS_BYTESWAP_H", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-win64.h:511:18", "type": { "tag": "__int128_t" }, "value": 1 },
6
+{ "tag": "const", "name": "_BITS_TYPES_H", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-win64.h:512:18", "type": { "tag": "__int128_t" }, "value": 1 },
7
+{ "tag": "const", "name": "__clock_t_defined", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-win64.h:513:18", "type": { "tag": "__int128_t" }, "value": 1 },
8
+{ "tag": "const", "name": "__WALL", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-win64.h:514:18", "type": { "tag": "__int128_t" }, "value": 1073741824 },
9
+{ "tag": "const", "name": "__time_t_defined", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-win64.h:515:18", "type": { "tag": "__int128_t" }, "value": 1 },
10
+{ "tag": "const", "name": "__WCLONE", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-win64.h:516:18", "type": { "tag": "__int128_t" }, "value": 2147483648 },
11
+{ "tag": "const", "name": "__W_CONTINUED", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-win64.h:517:18", "type": { "tag": "__int128_t" }, "value": 65535 },
12
+{ "tag": "const", "name": "_ENDIAN_H", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-win64.h:518:18", "type": { "tag": "__int128_t" }, "value": 1 },
13
+{ "tag": "const", "name": "__FD_SETSIZE", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-win64.h:519:18", "type": { "tag": "__int128_t" }, "value": 1024 },
14
+{ "tag": "const", "name": "__USE_POSIX199506", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-win64.h:520:18", "type": { "tag": "__int128_t" }, "value": 1 },
15
+{ "tag": "const", "name": "__INO_T_MATCHES_INO64_T", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-win64.h:521:18", "type": { "tag": "__int128_t" }, "value": 1 },
16
+{ "tag": "const", "name": "__USE_POSIX199309", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-win64.h:522:18", "type": { "tag": "__int128_t" }, "value": 1 },
17
+{ "tag": "const", "name": "__WCOREFLAG", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-win64.h:523:18", "type": { "tag": "__int128_t" }, "value": 128 },
18
+{ "tag": "const", "name": "__OFF_T_MATCHES_OFF64_T", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-win64.h:524:18", "type": { "tag": "__int128_t" }, "value": 1 },
19
+{ "tag": "const", "name": "_G_HAVE_MMAP", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-win64.h:525:18", "type": { "tag": "__int128_t" }, "value": 1 },
20
+{ "tag": "const", "name": "_G_IO_IO_FILE_VERSION", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-win64.h:526:18", "type": { "tag": "__int128_t" }, "value": 131073 },
21
+{ "tag": "const", "name": "EOF", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-win64.h:527:18", "type": { "tag": "__int128_t" }, "value": -1 },
22
+{ "tag": "const", "name": "_G_HAVE_MREMAP", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-win64.h:528:18", "type": { "tag": "__int128_t" }, "value": 1 },
23
+{ "tag": "const", "name": "__USE_ISOC95", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-win64.h:529:18", "type": { "tag": "__int128_t" }, "value": 1 },
24
+{ "tag": "const", "name": "__USE_ISOC99", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-win64.h:530:18", "type": { "tag": "__int128_t" }, "value": 1 },
25
+{ "tag": "const", "name": "__USE_POSIX", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-win64.h:531:18", "type": { "tag": "__int128_t" }, "value": 1 },
26
+{ "tag": "const", "name": "__USE_POSIX2", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-win64.h:532:18", "type": { "tag": "__int128_t" }, "value": 1 },
27
+{ "tag": "const", "name": "_STDLIB_H", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-win64.h:533:18", "type": { "tag": "__int128_t" }, "value": 1 },
28
+{ "tag": "const", "name": "_FEATURES_H", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-win64.h:534:18", "type": { "tag": "__int128_t" }, "value": 1 },
29
+{ "tag": "const", "name": "_ALLOCA_H", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-win64.h:535:18", "type": { "tag": "__int128_t" }, "value": 1 },
30
+{ "tag": "const", "name": "_ATFILE_SOURCE", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-win64.h:536:18", "type": { "tag": "__int128_t" }, "value": 1 },
31
+{ "tag": "const", "name": "__USE_POSIX_IMPLICITLY", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-win64.h:537:18", "type": { "tag": "__int128_t" }, "value": 1 },
32
+{ "tag": "const", "name": "_BITS_TYPESIZES_H", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-win64.h:538:18", "type": { "tag": "__int128_t" }, "value": 1 },
33
+{ "tag": "const", "name": "TMP_MAX", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-win64.h:539:18", "type": { "tag": "__int128_t" }, "value": 238328 },
34
+{ "tag": "const", "name": "__GNU_LIBRARY__", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-win64.h:540:18", "type": { "tag": "__int128_t" }, "value": 6 },
35
+{ "tag": "const", "name": "__STDC_ISO_10646__", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-win64.h:541:18", "type": { "tag": "__int128_t" }, "value": 201103 },
36
+{ "tag": "const", "name": "__STDC_NO_THREADS__", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-win64.h:542:18", "type": { "tag": "__int128_t" }, "value": 1 },
37
+{ "tag": "const", "name": "__STDC_IEC_559__", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-win64.h:543:18", "type": { "tag": "__int128_t" }, "value": 1 },
38
+{ "tag": "const", "name": "_STDC_PREDEF_H", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-win64.h:544:18", "type": { "tag": "__int128_t" }, "value": 1 },
39
+{ "tag": "const", "name": "__STDC_IEC_559_COMPLEX__", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-win64.h:545:18", "type": { "tag": "__int128_t" }, "value": 1 },
40
+{ "tag": "const", "name": "__GLIBC_HAVE_LONG_LONG", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-win64.h:546:18", "type": { "tag": "__int128_t" }, "value": 1 },
41
+{ "tag": "const", "name": "_IOS_OUTPUT", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-win64.h:547:18", "type": { "tag": "__int128_t" }, "value": 2 },
42
+{ "tag": "const", "name": "_SIGSET_H_types", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-win64.h:548:18", "type": { "tag": "__int128_t" }, "value": 1 },
43
+{ "tag": "const", "name": "__GLIBC_MINOR__", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-win64.h:549:18", "type": { "tag": "__int128_t" }, "value": 17 },
44
+{ "tag": "const", "name": "__GLIBC__", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-win64.h:550:18", "type": { "tag": "__int128_t" }, "value": 2 },
45
+{ "tag": "const", "name": "_SIGSET_NWORDS", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-win64.h:551:18", "type": { "tag": "__int128_t" } },
46
+{ "tag": "const", "name": "_G_BUFSIZ", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-win64.h:552:18", "type": { "tag": "__int128_t" }, "value": 8192 },
47
+{ "tag": "const", "name": "_SYS_CDEFS_H", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-win64.h:553:18", "type": { "tag": "__int128_t" }, "value": 1 },
48
+{ "tag": "const", "name": "_IO_UNIFIED_JUMPTABLES", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-win64.h:554:18", "type": { "tag": "__int128_t" }, "value": 1 },
49
+{ "tag": "const", "name": "L_ctermid", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-win64.h:555:18", "type": { "tag": "__int128_t" }, "value": 9 },
50
+{ "tag": "const", "name": "__USE_XOPEN2K8", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-win64.h:556:18", "type": { "tag": "__int128_t" }, "value": 1 },
51
+{ "tag": "const", "name": "_IOS_ATEND", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-win64.h:557:18", "type": { "tag": "__int128_t" }, "value": 4 },
52
+{ "tag": "const", "name": "__USE_XOPEN2K", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-win64.h:558:18", "type": { "tag": "__int128_t" }, "value": 1 },
53
+{ "tag": "const", "name": "SEEK_CUR", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-win64.h:559:18", "type": { "tag": "__int128_t" }, "value": 1 },
54
+{ "tag": "const", "name": "_IOLBF", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-win64.h:560:18", "type": { "tag": "__int128_t" }, "value": 1 },
55
+{ "tag": "const", "name": "_IOFBF", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-win64.h:561:18", "type": { "tag": "__int128_t" }, "value": 0 },
56
+{ "tag": "const", "name": "WEXITED", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-win64.h:562:18", "type": { "tag": "__int128_t" }, "value": 4 },
57
+{ "tag": "const", "name": "_SYS_SELECT_H", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-win64.h:563:18", "type": { "tag": "__int128_t" }, "value": 1 },
58
+{ "tag": "const", "name": "__USE_FORTIFY_LEVEL", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-win64.h:564:18", "type": { "tag": "__int128_t" }, "value": 0 },
59
+{ "tag": "const", "name": "__USE_MISC", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-win64.h:565:18", "type": { "tag": "__int128_t" }, "value": 1 },
60
+{ "tag": "const", "name": "__FD_ZERO_STOS", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-win64.h:566:13", "type": { "tag": ":pointer", "type": { "tag": ":char" } }, "value": "stosq" },
61
+{ "tag": "const", "name": "WSTOPPED", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-win64.h:567:18", "type": { "tag": "__int128_t" }, "value": 2 },
62
+{ "tag": "const", "name": "WNOWAIT", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-win64.h:568:18", "type": { "tag": "__int128_t" }, "value": 16777216 },
63
+{ "tag": "const", "name": "__USE_ATFILE", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-win64.h:569:18", "type": { "tag": "__int128_t" }, "value": 1 },
64
+{ "tag": "const", "name": "WCONTINUED", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-win64.h:570:18", "type": { "tag": "__int128_t" }, "value": 8 },
65
+{ "tag": "const", "name": "__WNOTHREAD", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-win64.h:571:18", "type": { "tag": "__int128_t" }, "value": 536870912 },
66
+{ "tag": "const", "name": "__USE_BSD", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-win64.h:572:18", "type": { "tag": "__int128_t" }, "value": 1 },
67
+{ "tag": "const", "name": "__USE_SVID", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-win64.h:573:18", "type": { "tag": "__int128_t" }, "value": 1 },
68
+{ "tag": "const", "name": "SEEK_END", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-win64.h:574:18", "type": { "tag": "__int128_t" }, "value": 2 },
69
+{ "tag": "const", "name": "WUNTRACED", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-win64.h:575:18", "type": { "tag": "__int128_t" }, "value": 2 },
70
+{ "tag": "const", "name": "WNOHANG", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-win64.h:576:18", "type": { "tag": "__int128_t" }, "value": 1 },
71
+{ "tag": "const", "name": "_IOS_INPUT", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-win64.h:577:18", "type": { "tag": "__int128_t" }, "value": 1 },
72
+{ "tag": "const", "name": "__BIT_TYPES_DEFINED__", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-win64.h:578:18", "type": { "tag": "__int128_t" }, "value": 1 },
73
+{ "tag": "const", "name": "__timer_t_defined", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-win64.h:579:18", "type": { "tag": "__int128_t" }, "value": 1 },
74
+{ "tag": "const", "name": "__clockid_t_defined", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-win64.h:580:18", "type": { "tag": "__int128_t" }, "value": 1 },
75
+{ "tag": "const", "name": "FILENAME_MAX", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-win64.h:581:18", "type": { "tag": "__int128_t" }, "value": 4096 },
76
+{ "tag": "const", "name": "SEEK_SET", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-win64.h:582:18", "type": { "tag": "__int128_t" }, "value": 0 },
77
+{ "tag": "const", "name": "__USE_ANSI", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-win64.h:583:18", "type": { "tag": "__int128_t" }, "value": 1 },
78
+{ "tag": "const", "name": "__WORDSIZE", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-win64.h:584:18", "type": { "tag": "__int128_t" }, "value": 64 },
79
+{ "tag": "const", "name": "__SYSCALL_WORDSIZE", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-win64.h:585:18", "type": { "tag": "__int128_t" }, "value": 64 },
80
+{ "tag": "const", "name": "_STRING_H", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-win64.h:586:18", "type": { "tag": "__int128_t" }, "value": 1 },
81
+{ "tag": "const", "name": "__WORDSIZE_TIME64_COMPAT32", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-win64.h:587:18", "type": { "tag": "__int128_t" }, "value": 1 },
82
+{ "tag": "const", "name": "__timespec_defined", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-win64.h:588:18", "type": { "tag": "__int128_t" }, "value": 1 },
83
+{ "tag": "const", "name": "_SVID_SOURCE", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-win64.h:589:18", "type": { "tag": "__int128_t" }, "value": 1 },
84
+{ "tag": "const", "name": "FOPEN_MAX", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-win64.h:590:18", "type": { "tag": "__int128_t" }, "value": 16 },
85
+{ "tag": "const", "name": "_POSIX_C_SOURCE", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-win64.h:591:18", "type": { "tag": "__int128_t" }, "value": 200809 },
86
+{ "tag": "const", "name": "P_tmpdir", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-win64.h:592:13", "type": { "tag": ":pointer", "type": { "tag": ":char" } }, "value": "/tmp" },
87
+{ "tag": "const", "name": "_BSD_SOURCE", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-win64.h:593:18", "type": { "tag": "__int128_t" }, "value": 1 },
88
+{ "tag": "const", "name": "_POSIX_SOURCE", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-win64.h:594:18", "type": { "tag": "__int128_t" }, "value": 1 },
89
+{ "tag": "const", "name": "_IO_SHOWPOS", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-win64.h:595:18", "type": { "tag": "__int128_t" }, "value": 1024 },
90
+{ "tag": "const", "name": "L_tmpnam", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-win64.h:596:18", "type": { "tag": "__int128_t" }, "value": 20 },
91
+{ "tag": "const", "name": "_IONBF", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-win64.h:597:18", "type": { "tag": "__int128_t" }, "value": 2 },
92
+{ "tag": "const", "name": "_IO_SCIENTIFIC", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-win64.h:598:18", "type": { "tag": "__int128_t" }, "value": 2048 },
93
+{ "tag": "const", "name": "_IO_SHOWBASE", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-win64.h:599:18", "type": { "tag": "__int128_t" }, "value": 128 },
94
+{ "tag": "const", "name": "_IO_SHOWPOINT", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-win64.h:600:18", "type": { "tag": "__int128_t" }, "value": 256 },
95
+{ "tag": "const", "name": "_IO_UPPERCASE", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-win64.h:601:18", "type": { "tag": "__int128_t" }, "value": 512 },
96
+{ "tag": "const", "name": "_IO_STDIO", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-win64.h:602:18", "type": { "tag": "__int128_t" }, "value": 16384 },
97
+{ "tag": "const", "name": "_IO_DONT_CLOSE", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-win64.h:603:18", "type": { "tag": "__int128_t" }, "value": 32768 },
98
+{ "tag": "const", "name": "_IO_BOOLALPHA", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-win64.h:604:18", "type": { "tag": "__int128_t" }, "value": 65536 },
99
+{ "tag": "const", "name": "_IO_FIXED", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-win64.h:605:18", "type": { "tag": "__int128_t" }, "value": 4096 },
100
+{ "tag": "const", "name": "_IO_UNITBUF", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-win64.h:606:18", "type": { "tag": "__int128_t" }, "value": 8192 },
101
+{ "tag": "const", "name": "__have_pthread_attr_t", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-win64.h:607:18", "type": { "tag": "__int128_t" }, "value": 1 },
102
+{ "tag": "const", "name": "_XLOCALE_H", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-win64.h:608:18", "type": { "tag": "__int128_t" }, "value": 1 },
103
+{ "tag": "const", "name": "__SIZEOF_PTHREAD_BARRIERATTR_T", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-win64.h:609:18", "type": { "tag": "__int128_t" }, "value": 4 },
104
+{ "tag": "const", "name": "__lldiv_t_defined", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-win64.h:610:18", "type": { "tag": "__int128_t" }, "value": 1 },
105
+{ "tag": "const", "name": "EXIT_FAILURE", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-win64.h:611:18", "type": { "tag": "__int128_t" }, "value": 1 },
106
+{ "tag": "const", "name": "RAND_MAX", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-win64.h:612:18", "type": { "tag": "__int128_t" }, "value": 2147483647 },
107
+{ "tag": "const", "name": "__PTHREAD_MUTEX_HAVE_PREV", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-win64.h:613:18", "type": { "tag": "__int128_t" }, "value": 1 },
108
+{ "tag": "const", "name": "__ldiv_t_defined", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-win64.h:614:18", "type": { "tag": "__int128_t" }, "value": 1 },
109
+{ "tag": "const", "name": "__PTHREAD_RWLOCK_INT_FLAGS_SHARED", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-win64.h:615:18", "type": { "tag": "__int128_t" }, "value": 1 },
110
+{ "tag": "const", "name": "YAML_MAP_TAG", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-win64.h:616:13", "type": { "tag": ":pointer", "type": { "tag": ":char" } }, "value": "tag:yaml.org,2002:map" },
111
+{ "tag": "const", "name": "YAML_SEQ_TAG", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-win64.h:617:13", "type": { "tag": ":pointer", "type": { "tag": ":char" } }, "value": "tag:yaml.org,2002:seq" },
112
+{ "tag": "const", "name": "YAML_TIMESTAMP_TAG", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-win64.h:618:13", "type": { "tag": ":pointer", "type": { "tag": ":char" } }, "value": "tag:yaml.org,2002:timestamp" },
113
+{ "tag": "const", "name": "YAML_FLOAT_TAG", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-win64.h:619:13", "type": { "tag": ":pointer", "type": { "tag": ":char" } }, "value": "tag:yaml.org,2002:float" },
114
+{ "tag": "const", "name": "YAML_INT_TAG", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-win64.h:620:13", "type": { "tag": ":pointer", "type": { "tag": ":char" } }, "value": "tag:yaml.org,2002:int" },
115
+{ "tag": "const", "name": "YAML_STR_TAG", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-win64.h:621:13", "type": { "tag": ":pointer", "type": { "tag": ":char" } }, "value": "tag:yaml.org,2002:str" },
116
+{ "tag": "const", "name": "YAML_BOOL_TAG", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-win64.h:622:13", "type": { "tag": ":pointer", "type": { "tag": ":char" } }, "value": "tag:yaml.org,2002:bool" },
117
+{ "tag": "const", "name": "YAML_NULL_TAG", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-win64.h:623:13", "type": { "tag": ":pointer", "type": { "tag": ":char" } }, "value": "tag:yaml.org,2002:null" },
118
+{ "tag": "const", "name": "_SYS_TYPES_H", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-win64.h:624:18", "type": { "tag": "__int128_t" }, "value": 1 },
119
+{ "tag": "const", "name": "__FILE_defined", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-win64.h:625:18", "type": { "tag": "__int128_t" }, "value": 1 },
120
+{ "tag": "const", "name": "_STDIO_H", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-win64.h:626:18", "type": { "tag": "__int128_t" }, "value": 1 },
121
+{ "tag": "const", "name": "____mbstate_t_defined", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-win64.h:627:18", "type": { "tag": "__int128_t" }, "value": 1 },
122
+{ "tag": "const", "name": "EXIT_SUCCESS", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-win64.h:628:18", "type": { "tag": "__int128_t" }, "value": 0 },
123
+{ "tag": "const", "name": "__NFDBITS", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-win64.h:629:18", "type": { "tag": "__int128_t" } },
124
+{ "tag": "const", "name": "____FILE_defined", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-win64.h:630:18", "type": { "tag": "__int128_t" }, "value": 1 },
125
+{ "tag": "const", "name": "_STRUCT_TIMEVAL", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-win64.h:631:18", "type": { "tag": "__int128_t" }, "value": 1 },
126
+{ "tag": "const", "name": "_G_config_h", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-win64.h:632:18", "type": { "tag": "__int128_t" }, "value": 1 },
127
+{ "tag": "const", "name": "_IOS_APPEND", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-win64.h:633:18", "type": { "tag": "__int128_t" }, "value": 8 },
128
+{ "tag": "const", "name": "_IOS_NOCREATE", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-win64.h:634:18", "type": { "tag": "__int128_t" }, "value": 32 },
129
+{ "tag": "const", "name": "_IOS_TRUNC", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-win64.h:635:18", "type": { "tag": "__int128_t" }, "value": 16 },
130
+{ "tag": "const", "name": "_IOS_BIN", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-win64.h:636:18", "type": { "tag": "__int128_t" }, "value": 128 },
131
+{ "tag": "const", "name": "_IOS_NOREPLACE", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-win64.h:637:18", "type": { "tag": "__int128_t" }, "value": 64 },
132
+{ "tag": "const", "name": "_OLD_STDIO_MAGIC", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-win64.h:638:18", "type": { "tag": "__int128_t" }, "value": 4206624768 },
133
+{ "tag": "const", "name": "_IO_MAGIC", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-win64.h:639:18", "type": { "tag": "__int128_t" }, "value": 4222418944 },
134
+{ "tag": "const", "name": "_IO_UNBUFFERED", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-win64.h:640:18", "type": { "tag": "__int128_t" }, "value": 2 },
135
+{ "tag": "const", "name": "_IO_MAGIC_MASK", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-win64.h:641:18", "type": { "tag": "__int128_t" }, "value": 4294901760 },
136
+{ "tag": "const", "name": "_IO_USER_BUF", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-win64.h:642:18", "type": { "tag": "__int128_t" }, "value": 1 },
137
+{ "tag": "const", "name": "_IO_NO_WRITES", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-win64.h:643:18", "type": { "tag": "__int128_t" }, "value": 8 },
138
+{ "tag": "const", "name": "_SYS_SYSMACROS_H", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-win64.h:644:18", "type": { "tag": "__int128_t" }, "value": 1 },
139
+{ "tag": "const", "name": "_IO_NO_READS", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-win64.h:645:18", "type": { "tag": "__int128_t" }, "value": 4 },
140
+{ "tag": "const", "name": "_IO_ERR_SEEN", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-win64.h:646:18", "type": { "tag": "__int128_t" }, "value": 32 },
141
+{ "tag": "const", "name": "_IO_EOF_SEEN", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-win64.h:647:18", "type": { "tag": "__int128_t" }, "value": 16 },
142
+{ "tag": "const", "name": "_IO_LINKED", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-win64.h:648:18", "type": { "tag": "__int128_t" }, "value": 128 },
143
+{ "tag": "const", "name": "_IO_DELETE_DONT_CLOSE", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-win64.h:649:18", "type": { "tag": "__int128_t" }, "value": 64 },
144
+{ "tag": "const", "name": "_IO_TIED_PUT_GET", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-win64.h:650:18", "type": { "tag": "__int128_t" }, "value": 1024 },
145
+{ "tag": "const", "name": "__SIZEOF_PTHREAD_RWLOCK_T", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-win64.h:651:18", "type": { "tag": "__int128_t" }, "value": 56 },
146
+{ "tag": "const", "name": "_IO_LINE_BUF", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-win64.h:652:18", "type": { "tag": "__int128_t" }, "value": 512 },
147
+{ "tag": "const", "name": "__SIZEOF_PTHREAD_CONDATTR_T", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-win64.h:653:18", "type": { "tag": "__int128_t" }, "value": 4 },
148
+{ "tag": "const", "name": "__SIZEOF_PTHREAD_BARRIER_T", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-win64.h:654:18", "type": { "tag": "__int128_t" }, "value": 32 },
149
+{ "tag": "const", "name": "_IO_IS_APPENDING", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-win64.h:655:18", "type": { "tag": "__int128_t" }, "value": 4096 },
150
+{ "tag": "const", "name": "_IO_IN_BACKUP", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-win64.h:656:18", "type": { "tag": "__int128_t" }, "value": 256 },
151
+{ "tag": "const", "name": "_IO_CURRENTLY_PUTTING", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-win64.h:657:18", "type": { "tag": "__int128_t" }, "value": 2048 },
152
+{ "tag": "const", "name": "__SIZEOF_PTHREAD_RWLOCKATTR_T", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-win64.h:658:18", "type": { "tag": "__int128_t" }, "value": 8 },
153
+{ "tag": "const", "name": "_IO_BAD_SEEN", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-win64.h:659:18", "type": { "tag": "__int128_t" }, "value": 16384 },
154
+{ "tag": "const", "name": "__SIZEOF_PTHREAD_MUTEX_T", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-win64.h:660:18", "type": { "tag": "__int128_t" }, "value": 40 },
155
+{ "tag": "const", "name": "_IO_IS_FILEBUF", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-win64.h:661:18", "type": { "tag": "__int128_t" }, "value": 8192 },
156
+{ "tag": "const", "name": "__SIZEOF_PTHREAD_COND_T", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-win64.h:662:18", "type": { "tag": "__int128_t" }, "value": 48 },
157
+{ "tag": "const", "name": "_IO_USER_LOCK", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-win64.h:663:18", "type": { "tag": "__int128_t" }, "value": 32768 },
158
+{ "tag": "const", "name": "_IO_FLAGS2_MMAP", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-win64.h:664:18", "type": { "tag": "__int128_t" }, "value": 1 },
159
+{ "tag": "const", "name": "__SIZEOF_PTHREAD_MUTEXATTR_T", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-win64.h:665:18", "type": { "tag": "__int128_t" }, "value": 4 },
160
+{ "tag": "const", "name": "_IO_FLAGS2_USER_WBUF", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-win64.h:666:18", "type": { "tag": "__int128_t" }, "value": 8 },
161
+{ "tag": "const", "name": "_IO_FLAGS2_NOTCANCEL", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-win64.h:667:18", "type": { "tag": "__int128_t" }, "value": 2 },
162
+{ "tag": "const", "name": "__SIZEOF_PTHREAD_ATTR_T", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-win64.h:668:18", "type": { "tag": "__int128_t" }, "value": 56 },
163
+{ "tag": "const", "name": "_IO_LEFT", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-win64.h:669:18", "type": { "tag": "__int128_t" }, "value": 2 },
164
+{ "tag": "const", "name": "_BITS_PTHREADTYPES_H", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-win64.h:670:18", "type": { "tag": "__int128_t" }, "value": 1 },
165
+{ "tag": "const", "name": "_IO_SKIPWS", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-win64.h:671:18", "type": { "tag": "__int128_t" }, "value": 1 },
166
+{ "tag": "const", "name": "_IO_DEC", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-win64.h:672:18", "type": { "tag": "__int128_t" }, "value": 16 },
167
+{ "tag": "const", "name": "_IO_INTERNAL", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-win64.h:673:18", "type": { "tag": "__int128_t" }, "value": 8 },
168
+{ "tag": "const", "name": "_IO_RIGHT", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-win64.h:674:18", "type": { "tag": "__int128_t" }, "value": 4 },
169
+{ "tag": "const", "name": "_IO_HEX", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-win64.h:675:18", "type": { "tag": "__int128_t" }, "value": 64 },
170
+{ "tag": "const", "name": "_IO_OCT", "location": "/mnt/d/code/cl-yaml/spec/yaml.x86_64-pc-win64.h:676:18", "type": { "tag": "__int128_t" }, "value": 32 }
171
+]
0 172
new file mode 100755
... ...
@@ -0,0 +1,515 @@
1
+[
2
+{ "tag": "typedef", "name": "size_t", "location": "/usr/include/stddef.h:213:23", "type": { "tag": ":unsigned-long" } },
3
+{ "tag": "typedef", "name": "wchar_t", "location": "/usr/include/stddef.h:325:24", "type": { "tag": ":int" } },
4
+{ "tag": "typedef", "name": "__u_char", "location": "/usr/include/bits/types.h:30:23", "type": { "tag": ":unsigned-char" } },
5
+{ "tag": "typedef", "name": "__u_short", "location": "/usr/include/bits/types.h:31:28", "type": { "tag": ":unsigned-short" } },
6
+{ "tag": "typedef", "name": "__u_int", "location": "/usr/include/bits/types.h:32:22", "type": { "tag": ":unsigned-int" } },
7
+{ "tag": "typedef", "name": "__u_long", "location": "/usr/include/bits/types.h:33:27", "type": { "tag": ":unsigned-long" } },
8
+{ "tag": "typedef", "name": "__int8_t", "location": "/usr/include/bits/types.h:36:21", "type": { "tag": ":signed-char" } },
9
+{ "tag": "typedef", "name": "__uint8_t", "location": "/usr/include/bits/types.h:37:23", "type": { "tag": ":unsigned-char" } },
10
+{ "tag": "typedef", "name": "__int16_t", "location": "/usr/include/bits/types.h:38:26", "type": { "tag": ":short" } },
11
+{ "tag": "typedef", "name": "__uint16_t", "location": "/usr/include/bits/types.h:39:28", "type": { "tag": ":unsigned-short" } },
12
+{ "tag": "typedef", "name": "__int32_t", "location": "/usr/include/bits/types.h:40:20", "type": { "tag": ":int" } },
13
+{ "tag": "typedef", "name": "__uint32_t", "location": "/usr/include/bits/types.h:41:22", "type": { "tag": ":unsigned-int" } },
14
+{ "tag": "typedef", "name": "__int64_t", "location": "/usr/include/bits/types.h:43:25", "type": { "tag": ":long" } },
15
+{ "tag": "typedef", "name": "__uint64_t", "location": "/usr/include/bits/types.h:44:27", "type": { "tag": ":unsigned-long" } },
16
+{ "tag": "typedef", "name": "__quad_t", "location": "/usr/include/bits/types.h:52:18", "type": { "tag": ":long" } },
17
+{ "tag": "typedef", "name": "__u_quad_t", "location": "/usr/include/bits/types.h:53:27", "type": { "tag": ":unsigned-long" } },
18
+{ "tag": "typedef", "name": "__dev_t", "location": "/usr/include/bits/types.h:133:25", "type": { "tag": ":unsigned-long" } },
19
+{ "tag": "typedef", "name": "__uid_t", "location": "/usr/include/bits/types.h:134:25", "type": { "tag": ":unsigned-int" } },
20
+{ "tag": "typedef", "name": "__gid_t", "location": "/usr/include/bits/types.h:135:25", "type": { "tag": ":unsigned-int" } },
21
+{ "tag": "typedef", "name": "__ino_t", "location": "/usr/include/bits/types.h:136:25", "type": { "tag": ":unsigned-long" } },
22
+{ "tag": "typedef", "name": "__ino64_t", "location": "/usr/include/bits/types.h:137:27", "type": { "tag": ":unsigned-long" } },
23
+{ "tag": "typedef", "name": "__mode_t", "location": "/usr/include/bits/types.h:138:26", "type": { "tag": ":unsigned-int" } },
24
+{ "tag": "typedef", "name": "__nlink_t", "location": "/usr/include/bits/types.h:139:27", "type": { "tag": ":unsigned-long" } },
25
+{ "tag": "typedef", "name": "__off_t", "location": "/usr/include/bits/types.h:140:25", "type": { "tag": ":long" } },
26
+{ "tag": "typedef", "name": "__off64_t", "location": "/usr/include/bits/types.h:141:27", "type": { "tag": ":long" } },
27
+{ "tag": "typedef", "name": "__pid_t", "location": "/usr/include/bits/types.h:142:25", "type": { "tag": ":int" } },
28
+{ "tag": "typedef", "name": "__fsid_t", "location": "/usr/include/bits/types.h:143:26", "type": { "tag": "struct", "name": "", "id": 1, "location": "/usr/include/bits/types.h:143:12 <Spelling=/usr/include/bits/typesizes.h:72:24>", "bit-size": 64, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "__val", "bit-offset": 0, "bit-size": 64, "bit-alignment": 32, "type": { "tag": ":array", "type": { "tag": ":int" }, "size": 2 } }] } },
29
+{ "tag": "typedef", "name": "__clock_t", "location": "/usr/include/bits/types.h:144:27", "type": { "tag": ":long" } },
30
+{ "tag": "typedef", "name": "__rlim_t", "location": "/usr/include/bits/types.h:145:26", "type": { "tag": ":unsigned-long" } },
31
+{ "tag": "typedef", "name": "__rlim64_t", "location": "/usr/include/bits/types.h:146:28", "type": { "tag": ":unsigned-long" } },
32
+{ "tag": "typedef", "name": "__id_t", "location": "/usr/include/bits/types.h:147:24", "type": { "tag": ":unsigned-int" } },
33
+{ "tag": "typedef", "name": "__time_t", "location": "/usr/include/bits/types.h:148:26", "type": { "tag": ":long" } },
34
+{ "tag": "typedef", "name": "__useconds_t", "location": "/usr/include/bits/types.h:149:30", "type": { "tag": ":unsigned-int" } },
35
+{ "tag": "typedef", "name": "__suseconds_t", "location": "/usr/include/bits/types.h:150:31", "type": { "tag": ":long" } },
36
+{ "tag": "typedef", "name": "__daddr_t", "location": "/usr/include/bits/types.h:152:27", "type": { "tag": ":int" } },
37
+{ "tag": "typedef", "name": "__key_t", "location": "/usr/include/bits/types.h:153:25", "type": { "tag": ":int" } },
38
+{ "tag": "typedef", "name": "__clockid_t", "location": "/usr/include/bits/types.h:156:29", "type": { "tag": ":int" } },
39
+{ "tag": "typedef", "name": "__timer_t", "location": "/usr/include/bits/types.h:159:27", "type": { "tag": ":pointer", "type": { "tag": ":void" } } },
40
+{ "tag": "typedef", "name": "__blksize_t", "location": "/usr/include/bits/types.h:162:29", "type": { "tag": ":long" } },
41
+{ "tag": "typedef", "name": "__blkcnt_t", "location": "/usr/include/bits/types.h:167:28", "type": { "tag": ":long" } },
42
+{ "tag": "typedef", "name": "__blkcnt64_t", "location": "/usr/include/bits/types.h:168:30", "type": { "tag": ":long" } },
43
+{ "tag": "typedef", "name": "__fsblkcnt_t", "location": "/usr/include/bits/types.h:171:30", "type": { "tag": ":unsigned-long" } },
44
+{ "tag": "typedef", "name": "__fsblkcnt64_t", "location": "/usr/include/bits/types.h:172:32", "type": { "tag": ":unsigned-long" } },
45
+{ "tag": "typedef", "name": "__fsfilcnt_t", "location": "/usr/include/bits/types.h:175:30", "type": { "tag": ":unsigned-long" } },
46
+{ "tag": "typedef", "name": "__fsfilcnt64_t", "location": "/usr/include/bits/types.h:176:32", "type": { "tag": ":unsigned-long" } },
47
+{ "tag": "typedef", "name": "__fsword_t", "location": "/usr/include/bits/types.h:179:28", "type": { "tag": ":long" } },
48
+{ "tag": "typedef", "name": "__ssize_t", "location": "/usr/include/bits/types.h:181:27", "type": { "tag": ":long" } },
49
+{ "tag": "typedef", "name": "__syscall_slong_t", "location": "/usr/include/bits/types.h:184:33", "type": { "tag": ":long" } },
50
+{ "tag": "typedef", "name": "__syscall_ulong_t", "location": "/usr/include/bits/types.h:186:33", "type": { "tag": ":unsigned-long" } },
51
+{ "tag": "typedef", "name": "__loff_t", "location": "/usr/include/bits/types.h:190:19", "type": { "tag": "__off64_t" } },
52
+{ "tag": "typedef", "name": "__qaddr_t", "location": "/usr/include/bits/types.h:191:19", "type": { "tag": ":pointer", "type": { "tag": "__quad_t" } } },
53
+{ "tag": "typedef", "name": "__caddr_t", "location": "/usr/include/bits/types.h:192:15", "type": { "tag": ":pointer", "type": { "tag": ":char" } } },
54
+{ "tag": "typedef", "name": "__intptr_t", "location": "/usr/include/bits/types.h:195:25", "type": { "tag": ":long" } },
55
+{ "tag": "typedef", "name": "__socklen_t", "location": "/usr/include/bits/types.h:198:23", "type": { "tag": ":unsigned-int" } },
56
+{ "tag": "union", "name": "wait", "id": 0, "location": "/usr/include/bits/waitstatus.h:66:7", "bit-size": 32, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "w_status", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "__wait_terminated", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "struct", "name": "", "id": 2, "location": "/usr/include/bits/waitstatus.h:69:5", "bit-size": 32, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "__w_termsig", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":bitfield", "width": 7, "type": { "tag": ":unsigned-int" } } }, { "tag": "field", "name": "__w_coredump", "bit-offset": 7, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":bitfield", "width": 1, "type": { "tag": ":unsigned-int" } } }, { "tag": "field", "name": "__w_retcode", "bit-offset": 8, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":bitfield", "width": 8, "type": { "tag": ":unsigned-int" } } }, { "tag": "field", "name": "", "bit-offset": 16, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":bitfield", "width": 16, "type": { "tag": ":unsigned-int" } } }] } }, { "tag": "field", "name": "__wait_stopped", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "struct", "name": "", "id": 3, "location": "/usr/include/bits/waitstatus.h:84:5", "bit-size": 32, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "__w_stopval", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":bitfield", "width": 8, "type": { "tag": ":unsigned-int" } } }, { "tag": "field", "name": "__w_stopsig", "bit-offset": 8, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":bitfield", "width": 8, "type": { "tag": ":unsigned-int" } } }, { "tag": "field", "name": "", "bit-offset": 16, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":bitfield", "width": 16, "type": { "tag": ":unsigned-int" } } }] } }] },
57
+{ "tag": "typedef", "name": "__WAIT_STATUS", "location": "/usr/include/stdlib.h:71:5", "type": { "tag": "union", "name": "", "id": 4, "location": "/usr/include/stdlib.h:67:9", "bit-size": 64, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "__uptr", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":union", "name": "wait", "id": 0 } } }, { "tag": "field", "name": "__iptr", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":int" } } }] } },
58
+{ "tag": "typedef", "name": "div_t", "location": "/usr/include/stdlib.h:101:5", "type": { "tag": "struct", "name": "", "id": 5, "location": "/usr/include/stdlib.h:97:9", "bit-size": 64, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "quot", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "rem", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }] } },
59
+{ "tag": "typedef", "name": "ldiv_t", "location": "/usr/include/stdlib.h:109:5", "type": { "tag": "struct", "name": "", "id": 6, "location": "/usr/include/stdlib.h:105:9", "bit-size": 128, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "quot", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":long" } }, { "tag": "field", "name": "rem", "bit-offset": 64, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":long" } }] } },
60
+{ "tag": "typedef", "name": "lldiv_t", "location": "/usr/include/stdlib.h:121:5", "type": { "tag": "struct", "name": "", "id": 7, "location": "/usr/include/stdlib.h:117:23", "bit-size": 128, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "quot", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":long-long" } }, { "tag": "field", "name": "rem", "bit-offset": 64, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":long-long" } }] } },
61
+{ "tag": "function", "name": "__ctype_get_mb_cur_max", "location": "/usr/include/stdlib.h:139:15", "variadic": false, "parameters": [], "return-type": { "tag": "size_t" } },
62
+{ "tag": "function", "name": "atof", "location": "/usr/include/stdlib.h:144:15", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__nptr", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":double" } },
63
+{ "tag": "function", "name": "atoi", "location": "/usr/include/stdlib.h:147:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__nptr", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":int" } },
64
+{ "tag": "function", "name": "atol", "location": "/usr/include/stdlib.h:150:17", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__nptr", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":long" } },
65
+{ "tag": "function", "name": "atoll", "location": "/usr/include/stdlib.h:157:36", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__nptr", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":long-long" } },
66
+{ "tag": "function", "name": "strtod", "location": "/usr/include/stdlib.h:164:15", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__nptr", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__endptr", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char" } } } }], "return-type": { "tag": ":double" } },
67
+{ "tag": "function", "name": "strtof", "location": "/usr/include/stdlib.h:172:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__nptr", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__endptr", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char" } } } }], "return-type": { "tag": ":float" } },
68
+{ "tag": "function", "name": "strtold", "location": "/usr/include/stdlib.h:175:20", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__nptr", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__endptr", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char" } } } }], "return-type": { "tag": ":long-double" } },
69
+{ "tag": "function", "name": "strtol", "location": "/usr/include/stdlib.h:183:17", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__nptr", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__endptr", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char" } } } }, { "tag": "parameter", "name": "__base", "type": { "tag": ":int" } }], "return-type": { "tag": ":long" } },
70
+{ "tag": "function", "name": "strtoul", "location": "/usr/include/stdlib.h:187:26", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__nptr", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__endptr", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char" } } } }, { "tag": "parameter", "name": "__base", "type": { "tag": ":int" } }], "return-type": { "tag": ":unsigned-long" } },
71
+{ "tag": "function", "name": "strtoq", "location": "/usr/include/stdlib.h:195:22", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__nptr", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__endptr", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char" } } } }, { "tag": "parameter", "name": "__base", "type": { "tag": ":int" } }], "return-type": { "tag": ":long-long" } },
72
+{ "tag": "function", "name": "strtouq", "location": "/usr/include/stdlib.h:200:31", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__nptr", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__endptr", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char" } } } }, { "tag": "parameter", "name": "__base", "type": { "tag": ":int" } }], "return-type": { "tag": ":unsigned-long-long" } },
73
+{ "tag": "function", "name": "strtoll", "location": "/usr/include/stdlib.h:209:22", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__nptr", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__endptr", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char" } } } }, { "tag": "parameter", "name": "__base", "type": { "tag": ":int" } }], "return-type": { "tag": ":long-long" } },
74
+{ "tag": "function", "name": "strtoull", "location": "/usr/include/stdlib.h:214:31", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__nptr", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__endptr", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char" } } } }, { "tag": "parameter", "name": "__base", "type": { "tag": ":int" } }], "return-type": { "tag": ":unsigned-long-long" } },
75
+{ "tag": "function", "name": "l64a", "location": "/usr/include/stdlib.h:305:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__n", "type": { "tag": ":long" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
76
+{ "tag": "function", "name": "a64l", "location": "/usr/include/stdlib.h:308:17", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":long" } },
77
+{ "tag": "typedef", "name": "u_char", "location": "/usr/include/sys/types.h:33:18", "type": { "tag": "__u_char" } },
78
+{ "tag": "typedef", "name": "u_short", "location": "/usr/include/sys/types.h:34:19", "type": { "tag": "__u_short" } },
79
+{ "tag": "typedef", "name": "u_int", "location": "/usr/include/sys/types.h:35:17", "type": { "tag": "__u_int" } },
80
+{ "tag": "typedef", "name": "u_long", "location": "/usr/include/sys/types.h:36:18", "type": { "tag": "__u_long" } },
81
+{ "tag": "typedef", "name": "quad_t", "location": "/usr/include/sys/types.h:37:18", "type": { "tag": "__quad_t" } },
82
+{ "tag": "typedef", "name": "u_quad_t", "location": "/usr/include/sys/types.h:38:20", "type": { "tag": "__u_quad_t" } },
83
+{ "tag": "typedef", "name": "fsid_t", "location": "/usr/include/sys/types.h:39:18", "type": { "tag": "__fsid_t" } },
84
+{ "tag": "typedef", "name": "loff_t", "location": "/usr/include/sys/types.h:44:18", "type": { "tag": "__loff_t" } },
85
+{ "tag": "typedef", "name": "ino_t", "location": "/usr/include/sys/types.h:48:17", "type": { "tag": "__ino_t" } },
86
+{ "tag": "typedef", "name": "dev_t", "location": "/usr/include/sys/types.h:60:17", "type": { "tag": "__dev_t" } },
87
+{ "tag": "typedef", "name": "gid_t", "location": "/usr/include/sys/types.h:65:17", "type": { "tag": "__gid_t" } },
88
+{ "tag": "typedef", "name": "mode_t", "location": "/usr/include/sys/types.h:70:18", "type": { "tag": "__mode_t" } },
89
+{ "tag": "typedef", "name": "nlink_t", "location": "/usr/include/sys/types.h:75:19", "type": { "tag": "__nlink_t" } },
90
+{ "tag": "typedef", "name": "uid_t", "location": "/usr/include/sys/types.h:80:17", "type": { "tag": "__uid_t" } },
91
+{ "tag": "typedef", "name": "off_t", "location": "/usr/include/sys/types.h:86:17", "type": { "tag": "__off_t" } },
92
+{ "tag": "typedef", "name": "pid_t", "location": "/usr/include/sys/types.h:98:17", "type": { "tag": "__pid_t" } },
93
+{ "tag": "typedef", "name": "id_t", "location": "/usr/include/sys/types.h:104:16", "type": { "tag": "__id_t" } },
94
+{ "tag": "typedef", "name": "ssize_t", "location": "/usr/include/sys/types.h:109:19", "type": { "tag": "__ssize_t" } },
95
+{ "tag": "typedef", "name": "daddr_t", "location": "/usr/include/sys/types.h:115:19", "type": { "tag": "__daddr_t" } },
96
+{ "tag": "typedef", "name": "caddr_t", "location": "/usr/include/sys/types.h:116:19", "type": { "tag": "__caddr_t" } },
97
+{ "tag": "typedef", "name": "key_t", "location": "/usr/include/sys/types.h:122:17", "type": { "tag": "__key_t" } },
98
+{ "tag": "typedef", "name": "clock_t", "location": "/usr/include/time.h:59:19", "type": { "tag": "__clock_t" } },
99
+{ "tag": "typedef", "name": "time_t", "location": "/usr/include/time.h:75:18", "type": { "tag": "__time_t" } },
100
+{ "tag": "typedef", "name": "clockid_t", "location": "/usr/include/time.h:91:21", "type": { "tag": "__clockid_t" } },
101
+{ "tag": "typedef", "name": "timer_t", "location": "/usr/include/time.h:103:19", "type": { "tag": "__timer_t" } },
102
+{ "tag": "typedef", "name": "ulong", "location": "/usr/include/sys/types.h:150:27", "type": { "tag": ":unsigned-long" } },
103
+{ "tag": "typedef", "name": "ushort", "location": "/usr/include/sys/types.h:151:28", "type": { "tag": ":unsigned-short" } },
104
+{ "tag": "typedef", "name": "uint", "location": "/usr/include/sys/types.h:152:22", "type": { "tag": ":unsigned-int" } },
105
+{ "tag": "typedef", "name": "int8_t", "location": "/usr/include/sys/types.h:194:1 <Spelling=<scratch space>:3:1>", "type": { "tag": ":int" } },
106
+{ "tag": "typedef", "name": "int16_t", "location": "/usr/include/sys/types.h:195:1 <Spelling=<scratch space>:3:1>", "type": { "tag": ":int" } },
107
+{ "tag": "typedef", "name": "int32_t", "location": "/usr/include/sys/types.h:196:1 <Spelling=<scratch space>:3:1>", "type": { "tag": ":int" } },
108
+{ "tag": "typedef", "name": "int64_t", "location": "/usr/include/sys/types.h:197:1 <Spelling=<scratch space>:3:1>", "type": { "tag": ":int" } },
109
+{ "tag": "typedef", "name": "u_int8_t", "location": "/usr/include/sys/types.h:200:1 <Spelling=<scratch space>:3:1>", "type": { "tag": ":unsigned-int" } },
110
+{ "tag": "typedef", "name": "u_int16_t", "location": "/usr/include/sys/types.h:201:1 <Spelling=<scratch space>:3:1>", "type": { "tag": ":unsigned-int" } },
111
+{ "tag": "typedef", "name": "u_int32_t", "location": "/usr/include/sys/types.h:202:1 <Spelling=<scratch space>:3:1>", "type": { "tag": ":unsigned-int" } },
112
+{ "tag": "typedef", "name": "u_int64_t", "location": "/usr/include/sys/types.h:203:1 <Spelling=<scratch space>:3:1>", "type": { "tag": ":unsigned-int" } },
113
+{ "tag": "typedef", "name": "register_t", "location": "/usr/include/sys/types.h:205:13", "type": { "tag": ":int" } },
114
+{ "tag": "typedef", "name": "__sig_atomic_t", "location": "/usr/include/bits/sigset.h:23:13", "type": { "tag": ":int" } },
115
+{ "tag": "typedef", "name": "__sigset_t", "location": "/usr/include/bits/sigset.h:31:5", "type": { "tag": "struct", "name": "", "id": 8, "location": "/usr/include/bits/sigset.h:28:9", "bit-size": 1024, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "__val", "bit-offset": 0, "bit-size": 1024, "bit-alignment": 64, "type": { "tag": ":array", "type": { "tag": ":unsigned-long" }, "size": 16 } }] } },
116
+{ "tag": "typedef", "name": "sigset_t", "location": "/usr/include/sys/select.h:37:20", "type": { "tag": "__sigset_t" } },
117
+{ "tag": "struct", "name": "timespec", "id": 0, "location": "/usr/include/time.h:120:8", "bit-size": 128, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "tv_sec", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": "__time_t" } }, { "tag": "field", "name": "tv_nsec", "bit-offset": 64, "bit-size": 64, "bit-alignment": 64, "type": { "tag": "__syscall_slong_t" } }] },
118
+{ "tag": "struct", "name": "timeval", "id": 0, "location": "/usr/include/bits/time.h:30:8", "bit-size": 128, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "tv_sec", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": "__time_t" } }, { "tag": "field", "name": "tv_usec", "bit-offset": 64, "bit-size": 64, "bit-alignment": 64, "type": { "tag": "__suseconds_t" } }] },
119
+{ "tag": "typedef", "name": "suseconds_t", "location": "/usr/include/sys/select.h:48:23", "type": { "tag": "__suseconds_t" } },
120
+{ "tag": "typedef", "name": "__fd_mask", "location": "/usr/include/sys/select.h:54:18", "type": { "tag": ":long" } },
121
+{ "tag": "typedef", "name": "fd_set", "location": "/usr/include/sys/select.h:75:5", "type": { "tag": "struct", "name": "", "id": 9, "location": "/usr/include/sys/select.h:64:9", "bit-size": 1024, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "__fds_bits", "bit-offset": 0, "bit-size": 1024, "bit-alignment": 64, "type": { "tag": ":array", "type": { "tag": "__fd_mask" }, "size": 16 } }] } },
122
+{ "tag": "typedef", "name": "fd_mask", "location": "/usr/include/sys/select.h:82:19", "type": { "tag": "__fd_mask" } },
123
+{ "tag": "function", "name": "select", "location": "/usr/include/sys/select.h:106:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__nfds", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__readfds", "type": { "tag": ":pointer", "type": { "tag": "fd_set" } } }, { "tag": "parameter", "name": "__writefds", "type": { "tag": ":pointer", "type": { "tag": "fd_set" } } }, { "tag": "parameter", "name": "__exceptfds", "type": { "tag": ":pointer", "type": { "tag": "fd_set" } } }, { "tag": "parameter", "name": "__timeout", "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "timeval", "id": 0 } } }], "return-type": { "tag": ":int" } },
124
+{ "tag": "function", "name": "pselect", "location": "/usr/include/sys/select.h:118:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__nfds", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__readfds", "type": { "tag": ":pointer", "type": { "tag": "fd_set" } } }, { "tag": "parameter", "name": "__writefds", "type": { "tag": ":pointer", "type": { "tag": "fd_set" } } }, { "tag": "parameter", "name": "__exceptfds", "type": { "tag": ":pointer", "type": { "tag": "fd_set" } } }, { "tag": "parameter", "name": "__timeout", "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "timespec", "id": 0 } } }, { "tag": "parameter", "name": "__sigmask", "type": { "tag": ":pointer", "type": { "tag": "__sigset_t" } } }], "return-type": { "tag": ":int" } },
125
+{ "tag": "function", "name": "gnu_dev_major", "location": "/usr/include/sys/sysmacros.h:32:21", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__dev", "type": { "tag": ":unsigned-long-long" } }], "return-type": { "tag": ":unsigned-int" } },
126
+{ "tag": "function", "name": "gnu_dev_minor", "location": "/usr/include/sys/sysmacros.h:35:21", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__dev", "type": { "tag": ":unsigned-long-long" } }], "return-type": { "tag": ":unsigned-int" } },
127
+{ "tag": "function", "name": "gnu_dev_makedev", "location": "/usr/include/sys/sysmacros.h:38:31", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__major", "type": { "tag": ":unsigned-int" } }, { "tag": "parameter", "name": "__minor", "type": { "tag": ":unsigned-int" } }], "return-type": { "tag": ":unsigned-long-long" } },
128
+{ "tag": "typedef", "name": "blksize_t", "location": "/usr/include/sys/types.h:228:21", "type": { "tag": "__blksize_t" } },
129
+{ "tag": "typedef", "name": "blkcnt_t", "location": "/usr/include/sys/types.h:235:20", "type": { "tag": "__blkcnt_t" } },
130
+{ "tag": "typedef", "name": "fsblkcnt_t", "location": "/usr/include/sys/types.h:239:22", "type": { "tag": "__fsblkcnt_t" } },
131
+{ "tag": "typedef", "name": "fsfilcnt_t", "location": "/usr/include/sys/types.h:243:22", "type": { "tag": "__fsfilcnt_t" } },
132
+{ "tag": "typedef", "name": "pthread_t", "location": "/usr/include/bits/pthreadtypes.h:60:27", "type": { "tag": ":unsigned-long" } },
133
+{ "tag": "union", "name": "pthread_attr_t", "id": 0, "location": "/usr/include/bits/pthreadtypes.h:63:7", "bit-size": 448, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "__size", "bit-offset": 0, "bit-size": 448, "bit-alignment": 8, "type": { "tag": ":array", "type": { "tag": ":char" }, "size": 56 } }, { "tag": "field", "name": "__align", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":long" } }] },
134
+{ "tag": "typedef", "name": "pthread_attr_t", "location": "/usr/include/bits/pthreadtypes.h:69:30", "type": { "tag": ":union", "name": "pthread_attr_t", "id": 0 } },
135
+{ "tag": "struct", "name": "__pthread_internal_list", "id": 0, "location": "/usr/include/bits/pthreadtypes.h:75:16", "bit-size": 128, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "__prev", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "__pthread_internal_list", "id": 0 } } }, { "tag": "field", "name": "__next", "bit-offset": 64, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "__pthread_internal_list", "id": 0 } } }] },
136
+{ "tag": "typedef", "name": "__pthread_list_t", "location": "/usr/include/bits/pthreadtypes.h:79:3", "type": { "tag": ":struct", "name": "__pthread_internal_list", "id": 0 } },
137
+{ "tag": "typedef", "name": "pthread_mutex_t", "location": "/usr/include/bits/pthreadtypes.h:118:3", "type": { "tag": "union", "name": "", "id": 10, "location": "/usr/include/bits/pthreadtypes.h:90:9", "bit-size": 320, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "__data", "bit-offset": 0, "bit-size": 320, "bit-alignment": 64, "type": { "tag": "struct", "name": "__pthread_mutex_s", "id": 0, "location": "/usr/include/bits/pthreadtypes.h:92:10", "bit-size": 320, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "__lock", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "__count", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":unsigned-int" } }, { "tag": "field", "name": "__owner", "bit-offset": 64, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "__nusers", "bit-offset": 96, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":unsigned-int" } }, { "tag": "field", "name": "__kind", "bit-offset": 128, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "__spins", "bit-offset": 160, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "__list", "bit-offset": 192, "bit-size": 128, "bit-alignment": 64, "type": { "tag": "__pthread_list_t" } }] } }, { "tag": "field", "name": "__size", "bit-offset": 0, "bit-size": 320, "bit-alignment": 8, "type": { "tag": ":array", "type": { "tag": ":char" }, "size": 40 } }, { "tag": "field", "name": "__align", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":long" } }] } },
138
+{ "tag": "typedef", "name": "pthread_mutexattr_t", "location": "/usr/include/bits/pthreadtypes.h:124:3", "type": { "tag": "union", "name": "", "id": 11, "location": "/usr/include/bits/pthreadtypes.h:120:9", "bit-size": 32, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "__size", "bit-offset": 0, "bit-size": 32, "bit-alignment": 8, "type": { "tag": ":array", "type": { "tag": ":char" }, "size": 4 } }, { "tag": "field", "name": "__align", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }] } },
139
+{ "tag": "typedef", "name": "pthread_cond_t", "location": "/usr/include/bits/pthreadtypes.h:144:3", "type": { "tag": "union", "name": "", "id": 12, "location": "/usr/include/bits/pthreadtypes.h:129:9", "bit-size": 384, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "__data", "bit-offset": 0, "bit-size": 384, "bit-alignment": 64, "type": { "tag": "struct", "name": "", "id": 13, "location": "/usr/include/bits/pthreadtypes.h:131:3", "bit-size": 384, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "__lock", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "__futex", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":unsigned-int" } }, { "tag": "field", "name": "__total_seq", "bit-offset": 64, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":unsigned-long-long" } }, { "tag": "field", "name": "__wakeup_seq", "bit-offset": 128, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":unsigned-long-long" } }, { "tag": "field", "name": "__woken_seq", "bit-offset": 192, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":unsigned-long-long" } }, { "tag": "field", "name": "__mutex", "bit-offset": 256, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "field", "name": "__nwaiters", "bit-offset": 320, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":unsigned-int" } }, { "tag": "field", "name": "__broadcast_seq", "bit-offset": 352, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":unsigned-int" } }] } }, { "tag": "field", "name": "__size", "bit-offset": 0, "bit-size": 384, "bit-alignment": 8, "type": { "tag": ":array", "type": { "tag": ":char" }, "size": 48 } }, { "tag": "field", "name": "__align", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":long-long" } }] } },
140
+{ "tag": "typedef", "name": "pthread_condattr_t", "location": "/usr/include/bits/pthreadtypes.h:150:3", "type": { "tag": "union", "name": "", "id": 14, "location": "/usr/include/bits/pthreadtypes.h:146:9", "bit-size": 32, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "__size", "bit-offset": 0, "bit-size": 32, "bit-alignment": 8, "type": { "tag": ":array", "type": { "tag": ":char" }, "size": 4 } }, { "tag": "field", "name": "__align", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }] } },
141
+{ "tag": "typedef", "name": "pthread_key_t", "location": "/usr/include/bits/pthreadtypes.h:154:22", "type": { "tag": ":unsigned-int" } },
142
+{ "tag": "typedef", "name": "pthread_once_t", "location": "/usr/include/bits/pthreadtypes.h:158:13", "type": { "tag": ":int" } },
143
+{ "tag": "typedef", "name": "pthread_rwlock_t", "location": "/usr/include/bits/pthreadtypes.h:204:3", "type": { "tag": "union", "name": "", "id": 15, "location": "/usr/include/bits/pthreadtypes.h:164:9", "bit-size": 448, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "__data", "bit-offset": 0, "bit-size": 448, "bit-alignment": 64, "type": { "tag": "struct", "name": "", "id": 16, "location": "/usr/include/bits/pthreadtypes.h:167:3", "bit-size": 448, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "__lock", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "__nr_readers", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":unsigned-int" } }, { "tag": "field", "name": "__readers_wakeup", "bit-offset": 64, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":unsigned-int" } }, { "tag": "field", "name": "__writer_wakeup", "bit-offset": 96, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":unsigned-int" } }, { "tag": "field", "name": "__nr_readers_queued", "bit-offset": 128, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":unsigned-int" } }, { "tag": "field", "name": "__nr_writers_queued", "bit-offset": 160, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":unsigned-int" } }, { "tag": "field", "name": "__writer", "bit-offset": 192, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "__shared", "bit-offset": 224, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "__pad1", "bit-offset": 256, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":unsigned-long" } }, { "tag": "field", "name": "__pad2", "bit-offset": 320, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":unsigned-long" } }, { "tag": "field", "name": "__flags", "bit-offset": 384, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":unsigned-int" } }] } }, { "tag": "field", "name": "__size", "bit-offset": 0, "bit-size": 448, "bit-alignment": 8, "type": { "tag": ":array", "type": { "tag": ":char" }, "size": 56 } }, { "tag": "field", "name": "__align", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":long" } }] } },
144
+{ "tag": "typedef", "name": "pthread_rwlockattr_t", "location": "/usr/include/bits/pthreadtypes.h:210:3", "type": { "tag": "union", "name": "", "id": 17, "location": "/usr/include/bits/pthreadtypes.h:206:9", "bit-size": 64, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "__size", "bit-offset": 0, "bit-size": 64, "bit-alignment": 8, "type": { "tag": ":array", "type": { "tag": ":char" }, "size": 8 } }, { "tag": "field", "name": "__align", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":long" } }] } },
145
+{ "tag": "typedef", "name": "pthread_spinlock_t", "location": "/usr/include/bits/pthreadtypes.h:216:22", "type": { "tag": ":int" } },
146
+{ "tag": "typedef", "name": "pthread_barrier_t", "location": "/usr/include/bits/pthreadtypes.h:225:3", "type": { "tag": "union", "name": "", "id": 18, "location": "/usr/include/bits/pthreadtypes.h:221:9", "bit-size": 256, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "__size", "bit-offset": 0, "bit-size": 256, "bit-alignment": 8, "type": { "tag": ":array", "type": { "tag": ":char" }, "size": 32 } }, { "tag": "field", "name": "__align", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":long" } }] } },
147
+{ "tag": "typedef", "name": "pthread_barrierattr_t", "location": "/usr/include/bits/pthreadtypes.h:231:3", "type": { "tag": "union", "name": "", "id": 19, "location": "/usr/include/bits/pthreadtypes.h:227:9", "bit-size": 32, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "__size", "bit-offset": 0, "bit-size": 32, "bit-alignment": 8, "type": { "tag": ":array", "type": { "tag": ":char" }, "size": 4 } }, { "tag": "field", "name": "__align", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }] } },
148
+{ "tag": "function", "name": "random", "location": "/usr/include/stdlib.h:321:17", "variadic": false, "parameters": [], "return-type": { "tag": ":long" } },
149
+{ "tag": "function", "name": "srandom", "location": "/usr/include/stdlib.h:324:13", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__seed", "type": { "tag": ":unsigned-int" } }], "return-type": { "tag": ":void" } },
150
+{ "tag": "function", "name": "initstate", "location": "/usr/include/stdlib.h:330:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__seed", "type": { "tag": ":unsigned-int" } }, { "tag": "parameter", "name": "__statebuf", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__statelen", "type": { "tag": "size_t" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
151
+{ "tag": "function", "name": "setstate", "location": "/usr/include/stdlib.h:335:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__statebuf", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
152
+{ "tag": "struct", "name": "random_data", "id": 0, "location": "/usr/include/stdlib.h:343:8", "bit-size": 384, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "fptr", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "int32_t" } } }, { "tag": "field", "name": "rptr", "bit-offset": 64, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "int32_t" } } }, { "tag": "field", "name": "state", "bit-offset": 128, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "int32_t" } } }, { "tag": "field", "name": "rand_type", "bit-offset": 192, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "rand_deg", "bit-offset": 224, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "rand_sep", "bit-offset": 256, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "end_ptr", "bit-offset": 320, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "int32_t" } } }] },
153
+{ "tag": "function", "name": "random_r", "location": "/usr/include/stdlib.h:354:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__buf", "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "random_data", "id": 0 } } }, { "tag": "parameter", "name": "__result", "type": { "tag": ":pointer", "type": { "tag": "int32_t" } } }], "return-type": { "tag": ":int" } },
154
+{ "tag": "function", "name": "srandom_r", "location": "/usr/include/stdlib.h:357:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__seed", "type": { "tag": ":unsigned-int" } }, { "tag": "parameter", "name": "__buf", "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "random_data", "id": 0 } } }], "return-type": { "tag": ":int" } },
155
+{ "tag": "function", "name": "initstate_r", "location": "/usr/include/stdlib.h:360:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__seed", "type": { "tag": ":unsigned-int" } }, { "tag": "parameter", "name": "__statebuf", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__statelen", "type": { "tag": "size_t" } }, { "tag": "parameter", "name": "__buf", "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "random_data", "id": 0 } } }], "return-type": { "tag": ":int" } },
156
+{ "tag": "function", "name": "setstate_r", "location": "/usr/include/stdlib.h:365:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__statebuf", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__buf", "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "random_data", "id": 0 } } }], "return-type": { "tag": ":int" } },
157
+{ "tag": "function", "name": "rand", "location": "/usr/include/stdlib.h:374:12", "variadic": false, "parameters": [], "return-type": { "tag": ":int" } },
158
+{ "tag": "function", "name": "srand", "location": "/usr/include/stdlib.h:376:13", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__seed", "type": { "tag": ":unsigned-int" } }], "return-type": { "tag": ":void" } },
159
+{ "tag": "function", "name": "rand_r", "location": "/usr/include/stdlib.h:381:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__seed", "type": { "tag": ":pointer", "type": { "tag": ":unsigned-int" } } }], "return-type": { "tag": ":int" } },
160
+{ "tag": "function", "name": "drand48", "location": "/usr/include/stdlib.h:389:15", "variadic": false, "parameters": [], "return-type": { "tag": ":double" } },
161
+{ "tag": "function", "name": "erand48", "location": "/usr/include/stdlib.h:390:15", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__xsubi", "type": { "tag": ":array", "type": { "tag": ":unsigned-short" }, "size": 3 } }], "return-type": { "tag": ":double" } },
162
+{ "tag": "function", "name": "lrand48", "location": "/usr/include/stdlib.h:393:17", "variadic": false, "parameters": [], "return-type": { "tag": ":long" } },
163
+{ "tag": "function", "name": "nrand48", "location": "/usr/include/stdlib.h:394:17", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__xsubi", "type": { "tag": ":array", "type": { "tag": ":unsigned-short" }, "size": 3 } }], "return-type": { "tag": ":long" } },
164
+{ "tag": "function", "name": "mrand48", "location": "/usr/include/stdlib.h:398:17", "variadic": false, "parameters": [], "return-type": { "tag": ":long" } },
165
+{ "tag": "function", "name": "jrand48", "location": "/usr/include/stdlib.h:399:17", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__xsubi", "type": { "tag": ":array", "type": { "tag": ":unsigned-short" }, "size": 3 } }], "return-type": { "tag": ":long" } },
166
+{ "tag": "function", "name": "srand48", "location": "/usr/include/stdlib.h:403:13", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__seedval", "type": { "tag": ":long" } }], "return-type": { "tag": ":void" } },
167
+{ "tag": "function", "name": "seed48", "location": "/usr/include/stdlib.h:404:28", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__seed16v", "type": { "tag": ":array", "type": { "tag": ":unsigned-short" }, "size": 3 } }], "return-type": { "tag": ":pointer", "type": { "tag": ":unsigned-short" } } },
168
+{ "tag": "function", "name": "lcong48", "location": "/usr/include/stdlib.h:406:13", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__param", "type": { "tag": ":array", "type": { "tag": ":unsigned-short" }, "size": 7 } }], "return-type": { "tag": ":void" } },
169
+{ "tag": "struct", "name": "drand48_data", "id": 0, "location": "/usr/include/stdlib.h:412:8", "bit-size": 192, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "__x", "bit-offset": 0, "bit-size": 48, "bit-alignment": 16, "type": { "tag": ":array", "type": { "tag": ":unsigned-short" }, "size": 3 } }, { "tag": "field", "name": "__old_x", "bit-offset": 48, "bit-size": 48, "bit-alignment": 16, "type": { "tag": ":array", "type": { "tag": ":unsigned-short" }, "size": 3 } }, { "tag": "field", "name": "__c", "bit-offset": 96, "bit-size": 16, "bit-alignment": 16, "type": { "tag": ":unsigned-short" } }, { "tag": "field", "name": "__init", "bit-offset": 112, "bit-size": 16, "bit-alignment": 16, "type": { "tag": ":unsigned-short" } }, { "tag": "field", "name": "__a", "bit-offset": 128, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":unsigned-long-long" } }] },
170
+{ "tag": "function", "name": "drand48_r", "location": "/usr/include/stdlib.h:422:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__buffer", "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "drand48_data", "id": 0 } } }, { "tag": "parameter", "name": "__result", "type": { "tag": ":pointer", "type": { "tag": ":double" } } }], "return-type": { "tag": ":int" } },
171
+{ "tag": "function", "name": "erand48_r", "location": "/usr/include/stdlib.h:424:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__xsubi", "type": { "tag": ":array", "type": { "tag": ":unsigned-short" }, "size": 3 } }, { "tag": "parameter", "name": "__buffer", "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "drand48_data", "id": 0 } } }, { "tag": "parameter", "name": "__result", "type": { "tag": ":pointer", "type": { "tag": ":double" } } }], "return-type": { "tag": ":int" } },
172
+{ "tag": "function", "name": "lrand48_r", "location": "/usr/include/stdlib.h:429:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__buffer", "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "drand48_data", "id": 0 } } }, { "tag": "parameter", "name": "__result", "type": { "tag": ":pointer", "type": { "tag": ":long" } } }], "return-type": { "tag": ":int" } },
173
+{ "tag": "function", "name": "nrand48_r", "location": "/usr/include/stdlib.h:432:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__xsubi", "type": { "tag": ":array", "type": { "tag": ":unsigned-short" }, "size": 3 } }, { "tag": "parameter", "name": "__buffer", "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "drand48_data", "id": 0 } } }, { "tag": "parameter", "name": "__result", "type": { "tag": ":pointer", "type": { "tag": ":long" } } }], "return-type": { "tag": ":int" } },
174
+{ "tag": "function", "name": "mrand48_r", "location": "/usr/include/stdlib.h:438:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__buffer", "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "drand48_data", "id": 0 } } }, { "tag": "parameter", "name": "__result", "type": { "tag": ":pointer", "type": { "tag": ":long" } } }], "return-type": { "tag": ":int" } },
175
+{ "tag": "function", "name": "jrand48_r", "location": "/usr/include/stdlib.h:441:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__xsubi", "type": { "tag": ":array", "type": { "tag": ":unsigned-short" }, "size": 3 } }, { "tag": "parameter", "name": "__buffer", "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "drand48_data", "id": 0 } } }, { "tag": "parameter", "name": "__result", "type": { "tag": ":pointer", "type": { "tag": ":long" } } }], "return-type": { "tag": ":int" } },
176
+{ "tag": "function", "name": "srand48_r", "location": "/usr/include/stdlib.h:447:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__seedval", "type": { "tag": ":long" } }, { "tag": "parameter", "name": "__buffer", "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "drand48_data", "id": 0 } } }], "return-type": { "tag": ":int" } },
177
+{ "tag": "function", "name": "seed48_r", "location": "/usr/include/stdlib.h:450:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__seed16v", "type": { "tag": ":array", "type": { "tag": ":unsigned-short" }, "size": 3 } }, { "tag": "parameter", "name": "__buffer", "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "drand48_data", "id": 0 } } }], "return-type": { "tag": ":int" } },
178
+{ "tag": "function", "name": "lcong48_r", "location": "/usr/include/stdlib.h:453:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__param", "type": { "tag": ":array", "type": { "tag": ":unsigned-short" }, "size": 7 } }, { "tag": "parameter", "name": "__buffer", "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "drand48_data", "id": 0 } } }], "return-type": { "tag": ":int" } },
179
+{ "tag": "function", "name": "malloc", "location": "/usr/include/stdlib.h:465:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__size", "type": { "tag": "size_t" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":void" } } },
180
+{ "tag": "function", "name": "calloc", "location": "/usr/include/stdlib.h:467:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__nmemb", "type": { "tag": "size_t" } }, { "tag": "parameter", "name": "__size", "type": { "tag": "size_t" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":void" } } },
181
+{ "tag": "function", "name": "realloc", "location": "/usr/include/stdlib.h:479:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__ptr", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__size", "type": { "tag": "size_t" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":void" } } },
182
+{ "tag": "function", "name": "free", "location": "/usr/include/stdlib.h:482:13", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__ptr", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": ":void" } },
183
+{ "tag": "function", "name": "cfree", "location": "/usr/include/stdlib.h:487:13", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__ptr", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": ":void" } },
184
+{ "tag": "function", "name": "alloca", "location": "/usr/include/alloca.h:32:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__size", "type": { "tag": "size_t" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":void" } } },
185
+{ "tag": "function", "name": "valloc", "location": "/usr/include/stdlib.h:497:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__size", "type": { "tag": "size_t" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":void" } } },
186
+{ "tag": "function", "name": "posix_memalign", "location": "/usr/include/stdlib.h:502:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__memptr", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":void" } } } }, { "tag": "parameter", "name": "__alignment", "type": { "tag": "size_t" } }, { "tag": "parameter", "name": "__size", "type": { "tag": "size_t" } }], "return-type": { "tag": ":int" } },
187
+{ "tag": "function", "name": "abort", "location": "/usr/include/stdlib.h:514:13", "variadic": false, "parameters": [], "return-type": { "tag": ":void" } },
188
+{ "tag": "function", "name": "atexit", "location": "/usr/include/stdlib.h:518:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__func", "type": { "tag": ":function-pointer" } }], "return-type": { "tag": ":int" } },
189
+{ "tag": "function", "name": "on_exit", "location": "/usr/include/stdlib.h:534:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__func", "type": { "tag": ":function-pointer" } }, { "tag": "parameter", "name": "__arg", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": ":int" } },
190
+{ "tag": "function", "name": "exit", "location": "/usr/include/stdlib.h:542:13", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__status", "type": { "tag": ":int" } }], "return-type": { "tag": ":void" } },
191
+{ "tag": "function", "name": "_Exit", "location": "/usr/include/stdlib.h:556:13", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__status", "type": { "tag": ":int" } }], "return-type": { "tag": ":void" } },
192
+{ "tag": "function", "name": "getenv", "location": "/usr/include/stdlib.h:563:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__name", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
193
+{ "tag": "function", "name": "putenv", "location": "/usr/include/stdlib.h:577:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__string", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":int" } },
194
+{ "tag": "function", "name": "setenv", "location": "/usr/include/stdlib.h:583:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__name", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__value", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__replace", "type": { "tag": ":int" } }], "return-type": { "tag": ":int" } },
195
+{ "tag": "function", "name": "unsetenv", "location": "/usr/include/stdlib.h:587:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__name", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":int" } },
196
+{ "tag": "function", "name": "clearenv", "location": "/usr/include/stdlib.h:594:12", "variadic": false, "parameters": [], "return-type": { "tag": ":int" } },
197
+{ "tag": "function", "name": "mktemp", "location": "/usr/include/stdlib.h:605:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__template", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
198
+{ "tag": "function", "name": "mkstemp", "location": "/usr/include/stdlib.h:619:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__template", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":int" } },
199
+{ "tag": "function", "name": "mkstemps", "location": "/usr/include/stdlib.h:641:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__template", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__suffixlen", "type": { "tag": ":int" } }], "return-type": { "tag": ":int" } },
200
+{ "tag": "function", "name": "mkdtemp", "location": "/usr/include/stdlib.h:662:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__template", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
201
+{ "tag": "function", "name": "system", "location": "/usr/include/stdlib.h:716:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__command", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":int" } },
202
+{ "tag": "function", "name": "realpath", "location": "/usr/include/stdlib.h:733:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__name", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__resolved", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
203
+{ "tag": "typedef", "name": "__compar_fn_t", "location": "/usr/include/stdlib.h:741:15", "type": { "tag": ":function-pointer" } },
204
+{ "tag": "function", "name": "bsearch", "location": "/usr/include/stdlib.h:754:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__key", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__base", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__nmemb", "type": { "tag": "size_t" } }, { "tag": "parameter", "name": "__size", "type": { "tag": "size_t" } }, { "tag": "parameter", "name": "__compar", "type": { "tag": "__compar_fn_t" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":void" } } },
205
+{ "tag": "function", "name": "qsort", "location": "/usr/include/stdlib.h:760:13", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__base", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__nmemb", "type": { "tag": "size_t" } }, { "tag": "parameter", "name": "__size", "type": { "tag": "size_t" } }, { "tag": "parameter", "name": "__compar", "type": { "tag": "__compar_fn_t" } }], "return-type": { "tag": ":void" } },
206
+{ "tag": "function", "name": "abs", "location": "/usr/include/stdlib.h:770:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":int" } }], "return-type": { "tag": ":int" } },
207
+{ "tag": "function", "name": "labs", "location": "/usr/include/stdlib.h:771:17", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":long" } }], "return-type": { "tag": ":long" } },
208
+{ "tag": "function", "name": "llabs", "location": "/usr/include/stdlib.h:775:36", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__x", "type": { "tag": ":long-long" } }], "return-type": { "tag": ":long-long" } },
209
+{ "tag": "function", "name": "div", "location": "/usr/include/stdlib.h:784:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__numer", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__denom", "type": { "tag": ":int" } }], "return-type": { "tag": "div_t" } },
210
+{ "tag": "function", "name": "ldiv", "location": "/usr/include/stdlib.h:786:15", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__numer", "type": { "tag": ":long" } }, { "tag": "parameter", "name": "__denom", "type": { "tag": ":long" } }], "return-type": { "tag": "ldiv_t" } },
211
+{ "tag": "function", "name": "lldiv", "location": "/usr/include/stdlib.h:792:30", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__numer", "type": { "tag": ":long-long" } }, { "tag": "parameter", "name": "__denom", "type": { "tag": ":long-long" } }], "return-type": { "tag": "lldiv_t" } },
212
+{ "tag": "function", "name": "ecvt", "location": "/usr/include/stdlib.h:807:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__value", "type": { "tag": ":double" } }, { "tag": "parameter", "name": "__ndigit", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__decpt", "type": { "tag": ":pointer", "type": { "tag": ":int" } } }, { "tag": "parameter", "name": "__sign", "type": { "tag": ":pointer", "type": { "tag": ":int" } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
213
+{ "tag": "function", "name": "fcvt", "location": "/usr/include/stdlib.h:813:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__value", "type": { "tag": ":double" } }, { "tag": "parameter", "name": "__ndigit", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__decpt", "type": { "tag": ":pointer", "type": { "tag": ":int" } } }, { "tag": "parameter", "name": "__sign", "type": { "tag": ":pointer", "type": { "tag": ":int" } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
214
+{ "tag": "function", "name": "gcvt", "location": "/usr/include/stdlib.h:819:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__value", "type": { "tag": ":double" } }, { "tag": "parameter", "name": "__ndigit", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__buf", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
215
+{ "tag": "function", "name": "qecvt", "location": "/usr/include/stdlib.h:825:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__value", "type": { "tag": ":long-double" } }, { "tag": "parameter", "name": "__ndigit", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__decpt", "type": { "tag": ":pointer", "type": { "tag": ":int" } } }, { "tag": "parameter", "name": "__sign", "type": { "tag": ":pointer", "type": { "tag": ":int" } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
216
+{ "tag": "function", "name": "qfcvt", "location": "/usr/include/stdlib.h:828:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__value", "type": { "tag": ":long-double" } }, { "tag": "parameter", "name": "__ndigit", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__decpt", "type": { "tag": ":pointer", "type": { "tag": ":int" } } }, { "tag": "parameter", "name": "__sign", "type": { "tag": ":pointer", "type": { "tag": ":int" } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
217
+{ "tag": "function", "name": "qgcvt", "location": "/usr/include/stdlib.h:831:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__value", "type": { "tag": ":long-double" } }, { "tag": "parameter", "name": "__ndigit", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__buf", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
218
+{ "tag": "function", "name": "ecvt_r", "location": "/usr/include/stdlib.h:837:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__value", "type": { "tag": ":double" } }, { "tag": "parameter", "name": "__ndigit", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__decpt", "type": { "tag": ":pointer", "type": { "tag": ":int" } } }, { "tag": "parameter", "name": "__sign", "type": { "tag": ":pointer", "type": { "tag": ":int" } } }, { "tag": "parameter", "name": "__buf", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__len", "type": { "tag": "size_t" } }], "return-type": { "tag": ":int" } },
219
+{ "tag": "function", "name": "fcvt_r", "location": "/usr/include/stdlib.h:840:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__value", "type": { "tag": ":double" } }, { "tag": "parameter", "name": "__ndigit", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__decpt", "type": { "tag": ":pointer", "type": { "tag": ":int" } } }, { "tag": "parameter", "name": "__sign", "type": { "tag": ":pointer", "type": { "tag": ":int" } } }, { "tag": "parameter", "name": "__buf", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__len", "type": { "tag": "size_t" } }], "return-type": { "tag": ":int" } },
220
+{ "tag": "function", "name": "qecvt_r", "location": "/usr/include/stdlib.h:844:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__value", "type": { "tag": ":long-double" } }, { "tag": "parameter", "name": "__ndigit", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__decpt", "type": { "tag": ":pointer", "type": { "tag": ":int" } } }, { "tag": "parameter", "name": "__sign", "type": { "tag": ":pointer", "type": { "tag": ":int" } } }, { "tag": "parameter", "name": "__buf", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__len", "type": { "tag": "size_t" } }], "return-type": { "tag": ":int" } },
221
+{ "tag": "function", "name": "qfcvt_r", "location": "/usr/include/stdlib.h:848:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__value", "type": { "tag": ":long-double" } }, { "tag": "parameter", "name": "__ndigit", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__decpt", "type": { "tag": ":pointer", "type": { "tag": ":int" } } }, { "tag": "parameter", "name": "__sign", "type": { "tag": ":pointer", "type": { "tag": ":int" } } }, { "tag": "parameter", "name": "__buf", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__len", "type": { "tag": "size_t" } }], "return-type": { "tag": ":int" } },
222
+{ "tag": "function", "name": "mblen", "location": "/usr/include/stdlib.h:859:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }], "return-type": { "tag": ":int" } },
223
+{ "tag": "function", "name": "mbtowc", "location": "/usr/include/stdlib.h:862:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__pwc", "type": { "tag": ":pointer", "type": { "tag": "wchar_t" } } }, { "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }], "return-type": { "tag": ":int" } },
224
+{ "tag": "function", "name": "wctomb", "location": "/usr/include/stdlib.h:866:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__wchar", "type": { "tag": "wchar_t" } }], "return-type": { "tag": ":int" } },
225
+{ "tag": "function", "name": "mbstowcs", "location": "/usr/include/stdlib.h:870:15", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__pwcs", "type": { "tag": ":pointer", "type": { "tag": "wchar_t" } } }, { "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }], "return-type": { "tag": "size_t" } },
226
+{ "tag": "function", "name": "wcstombs", "location": "/usr/include/stdlib.h:873:15", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__pwcs", "type": { "tag": ":pointer", "type": { "tag": "wchar_t" } } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }], "return-type": { "tag": "size_t" } },
227
+{ "tag": "function", "name": "rpmatch", "location": "/usr/include/stdlib.h:884:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__response", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":int" } },
228
+{ "tag": "function", "name": "getsubopt", "location": "/usr/include/stdlib.h:895:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__optionp", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char" } } } }, { "tag": "parameter", "name": "__tokens", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char" } } } }, { "tag": "parameter", "name": "__valuep", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char" } } } }], "return-type": { "tag": ":int" } },
229
+{ "tag": "function", "name": "getloadavg", "location": "/usr/include/stdlib.h:947:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__loadavg", "type": { "tag": ":pointer", "type": { "tag": ":double" } } }, { "tag": "parameter", "name": "__nelem", "type": { "tag": ":int" } }], "return-type": { "tag": ":int" } },
230
+{ "tag": "struct", "name": "_IO_FILE", "id": 0, "location": "/usr/include/stdio.h:44:8", "bit-size": 0, "bit-alignment": 0, "fields": [] },
231
+{ "tag": "typedef", "name": "FILE", "location": "/usr/include/stdio.h:48:25", "type": { "tag": ":struct", "name": "_IO_FILE", "id": 0 } },
232
+{ "tag": "typedef", "name": "__FILE", "location": "/usr/include/stdio.h:64:25", "type": { "tag": ":struct", "name": "_IO_FILE", "id": 0 } },
233
+{ "tag": "typedef", "name": "__mbstate_t", "location": "/usr/include/wchar.h:94:3", "type": { "tag": "struct", "name": "", "id": 20, "location": "/usr/include/wchar.h:82:9", "bit-size": 64, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "__count", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "__value", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "union", "name": "", "id": 21, "location": "/usr/include/wchar.h:85:3", "bit-size": 32, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "__wch", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "__wchb", "bit-offset": 0, "bit-size": 32, "bit-alignment": 8, "type": { "tag": ":array", "type": { "tag": ":char" }, "size": 4 } }] } }] } },
234
+{ "tag": "typedef", "name": "_G_fpos_t", "location": "/usr/include/_G_config.h:25:3", "type": { "tag": "struct", "name": "", "id": 22, "location": "/usr/include/_G_config.h:21:9", "bit-size": 128, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "__pos", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": "__off_t" } }, { "tag": "field", "name": "__state", "bit-offset": 64, "bit-size": 64, "bit-alignment": 32, "type": { "tag": "__mbstate_t" } }] } },
235
+{ "tag": "typedef", "name": "_G_fpos64_t", "location": "/usr/include/_G_config.h:30:3", "type": { "tag": "struct", "name": "", "id": 23, "location": "/usr/include/_G_config.h:26:9", "bit-size": 128, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "__pos", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": "__off64_t" } }, { "tag": "field", "name": "__state", "bit-offset": 64, "bit-size": 64, "bit-alignment": 32, "type": { "tag": "__mbstate_t" } }] } },
236
+{ "tag": "typedef", "name": "__gnuc_va_list", "location": "/usr/include/stdarg.h:40:27", "type": { "tag": "__builtin_va_list" } },
237
+{ "tag": "struct", "name": "_IO_jump_t", "id": 0, "location": "/usr/include/libio.h:145:8", "bit-size": 0, "bit-alignment": 0, "fields": [] },
238
+{ "tag": "struct", "name": "_IO_FILE", "id": 0, "location": "/usr/include/libio.h:145:28", "bit-size": 0, "bit-alignment": 0, "fields": [] },
239
+{ "tag": "typedef", "name": "_IO_lock_t", "location": "/usr/include/libio.h:155:14", "type": { "tag": ":void" } },
240
+{ "tag": "struct", "name": "_IO_marker", "id": 0, "location": "/usr/include/libio.h:161:8", "bit-size": 192, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "_next", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "_IO_marker", "id": 0 } } }, { "tag": "field", "name": "_sbuf", "bit-offset": 64, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "_IO_FILE", "id": 0 } } }, { "tag": "field", "name": "_pos", "bit-offset": 128, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }] },
241
+{ "tag": "enum", "name": "__codecvt_result", "id": 0, "location": "/usr/include/libio.h:181:6", "fields": [{ "tag": "field", "name": "__codecvt_ok", "value": 0 }, { "tag": "field", "name": "__codecvt_partial", "value": 1 }, { "tag": "field", "name": "__codecvt_error", "value": 2 }, { "tag": "field", "name": "__codecvt_noconv", "value": 3 }] },
242
+{ "tag": "struct", "name": "_IO_FILE", "id": 0, "location": "/usr/include/libio.h:246:8", "bit-size": 1728, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "_flags", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "_IO_read_ptr", "bit-offset": 64, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "field", "name": "_IO_read_end", "bit-offset": 128, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "field", "name": "_IO_read_base", "bit-offset": 192, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "field", "name": "_IO_write_base", "bit-offset": 256, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "field", "name": "_IO_write_ptr", "bit-offset": 320, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "field", "name": "_IO_write_end", "bit-offset": 384, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "field", "name": "_IO_buf_base", "bit-offset": 448, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "field", "name": "_IO_buf_end", "bit-offset": 512, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "field", "name": "_IO_save_base", "bit-offset": 576, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "field", "name": "_IO_backup_base", "bit-offset": 640, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "field", "name": "_IO_save_end", "bit-offset": 704, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "field", "name": "_markers", "bit-offset": 768, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "_IO_marker", "id": 0 } } }, { "tag": "field", "name": "_chain", "bit-offset": 832, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "_IO_FILE", "id": 0 } } }, { "tag": "field", "name": "_fileno", "bit-offset": 896, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "_flags2", "bit-offset": 928, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "_old_offset", "bit-offset": 960, "bit-size": 64, "bit-alignment": 64, "type": { "tag": "__off_t" } }, { "tag": "field", "name": "_cur_column", "bit-offset": 1024, "bit-size": 16, "bit-alignment": 16, "type": { "tag": ":unsigned-short" } }, { "tag": "field", "name": "_vtable_offset", "bit-offset": 1040, "bit-size": 8, "bit-alignment": 8, "type": { "tag": ":signed-char" } }, { "tag": "field", "name": "_shortbuf", "bit-offset": 1048, "bit-size": 8, "bit-alignment": 8, "type": { "tag": ":array", "type": { "tag": ":char" }, "size": 1 } }, { "tag": "field", "name": "_lock", "bit-offset": 1088, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "field", "name": "_offset", "bit-offset": 1152, "bit-size": 64, "bit-alignment": 64, "type": { "tag": "__off64_t" } }, { "tag": "field", "name": "__pad1", "bit-offset": 1216, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "field", "name": "__pad2", "bit-offset": 1280, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "field", "name": "__pad3", "bit-offset": 1344, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "field", "name": "__pad4", "bit-offset": 1408, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "field", "name": "__pad5", "bit-offset": 1472, "bit-size": 64, "bit-alignment": 64, "type": { "tag": "size_t" } }, { "tag": "field", "name": "_mode", "bit-offset": 1536, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "_unused2", "bit-offset": 1568, "bit-size": 160, "bit-alignment": 8, "type": { "tag": ":array", "type": { "tag": ":char" }, "size": 20 } }] },
243
+{ "tag": "typedef", "name": "_IO_FILE", "location": "/usr/include/libio.h:316:25", "type": { "tag": ":struct", "name": "_IO_FILE", "id": 0 } },
244
+{ "tag": "struct", "name": "_IO_FILE_plus", "id": 0, "location": "/usr/include/libio.h:319:8", "bit-size": 0, "bit-alignment": 0, "fields": [] },
245
+{ "tag": "extern", "name": "_IO_2_1_stdin_", "location": "/usr/include/libio.h:321:29", "type": { "tag": ":struct", "name": "_IO_FILE_plus", "id": 0 } },
246
+{ "tag": "extern", "name": "_IO_2_1_stdout_", "location": "/usr/include/libio.h:322:29", "type": { "tag": ":struct", "name": "_IO_FILE_plus", "id": 0 } },
247
+{ "tag": "extern", "name": "_IO_2_1_stderr_", "location": "/usr/include/libio.h:323:29", "type": { "tag": ":struct", "name": "_IO_FILE_plus", "id": 0 } },
248
+{ "tag": "typedef", "name": "__io_read_fn", "location": "/usr/include/libio.h:339:19", "type": { "tag": ":function" } },
249
+{ "tag": "typedef", "name": "__io_write_fn", "location": "/usr/include/libio.h:347:19", "type": { "tag": ":function" } },
250
+{ "tag": "typedef", "name": "__io_seek_fn", "location": "/usr/include/libio.h:356:13", "type": { "tag": ":function" } },
251
+{ "tag": "typedef", "name": "__io_close_fn", "location": "/usr/include/libio.h:359:13", "type": { "tag": ":function" } },
252
+{ "tag": "function", "name": "__underflow", "location": "/usr/include/libio.h:391:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": "_IO_FILE" } } }], "return-type": { "tag": ":int" } },
253
+{ "tag": "function", "name": "__uflow", "location": "/usr/include/libio.h:392:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": "_IO_FILE" } } }], "return-type": { "tag": ":int" } },
254
+{ "tag": "function", "name": "__overflow", "location": "/usr/include/libio.h:393:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": "_IO_FILE" } } }, { "tag": "parameter", "name": "", "type": { "tag": ":int" } }], "return-type": { "tag": ":int" } },
255
+{ "tag": "function", "name": "_IO_getc", "location": "/usr/include/libio.h:435:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__fp", "type": { "tag": ":pointer", "type": { "tag": "_IO_FILE" } } }], "return-type": { "tag": ":int" } },
256
+{ "tag": "function", "name": "_IO_putc", "location": "/usr/include/libio.h:436:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__c", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__fp", "type": { "tag": ":pointer", "type": { "tag": "_IO_FILE" } } }], "return-type": { "tag": ":int" } },
257
+{ "tag": "function", "name": "_IO_feof", "location": "/usr/include/libio.h:437:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__fp", "type": { "tag": ":pointer", "type": { "tag": "_IO_FILE" } } }], "return-type": { "tag": ":int" } },
258
+{ "tag": "function", "name": "_IO_ferror", "location": "/usr/include/libio.h:438:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__fp", "type": { "tag": ":pointer", "type": { "tag": "_IO_FILE" } } }], "return-type": { "tag": ":int" } },
259
+{ "tag": "function", "name": "_IO_peekc_locked", "location": "/usr/include/libio.h:440:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__fp", "type": { "tag": ":pointer", "type": { "tag": "_IO_FILE" } } }], "return-type": { "tag": ":int" } },
260
+{ "tag": "function", "name": "_IO_flockfile", "location": "/usr/include/libio.h:446:13", "variadic": false, "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": "_IO_FILE" } } }], "return-type": { "tag": ":void" } },
261
+{ "tag": "function", "name": "_IO_funlockfile", "location": "/usr/include/libio.h:447:13", "variadic": false, "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": "_IO_FILE" } } }], "return-type": { "tag": ":void" } },
262
+{ "tag": "function", "name": "_IO_ftrylockfile", "location": "/usr/include/libio.h:448:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": "_IO_FILE" } } }], "return-type": { "tag": ":int" } },
263
+{ "tag": "function", "name": "_IO_vfscanf", "location": "/usr/include/libio.h:465:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": "_IO_FILE" } } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "", "type": { "tag": "__gnuc_va_list" } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":int" } } }], "return-type": { "tag": ":int" } },
264
+{ "tag": "function", "name": "_IO_vfprintf", "location": "/usr/include/libio.h:467:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": "_IO_FILE" } } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "", "type": { "tag": "__gnuc_va_list" } }], "return-type": { "tag": ":int" } },
265
+{ "tag": "function", "name": "_IO_padn", "location": "/usr/include/libio.h:469:20", "variadic": false, "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": "_IO_FILE" } } }, { "tag": "parameter", "name": "", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "", "type": { "tag": "__ssize_t" } }], "return-type": { "tag": "__ssize_t" } },
266
+{ "tag": "function", "name": "_IO_sgetn", "location": "/usr/include/libio.h:470:19", "variadic": false, "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": "_IO_FILE" } } }, { "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "", "type": { "tag": "size_t" } }], "return-type": { "tag": "size_t" } },
267
+{ "tag": "function", "name": "_IO_seekoff", "location": "/usr/include/libio.h:472:20", "variadic": false, "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": "_IO_FILE" } } }, { "tag": "parameter", "name": "", "type": { "tag": "__off64_t" } }, { "tag": "parameter", "name": "", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "", "type": { "tag": ":int" } }], "return-type": { "tag": "__off64_t" } },
268
+{ "tag": "function", "name": "_IO_seekpos", "location": "/usr/include/libio.h:473:20", "variadic": false, "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": "_IO_FILE" } } }, { "tag": "parameter", "name": "", "type": { "tag": "__off64_t" } }, { "tag": "parameter", "name": "", "type": { "tag": ":int" } }], "return-type": { "tag": "__off64_t" } },
269
+{ "tag": "function", "name": "_IO_free_backup_area", "location": "/usr/include/libio.h:475:13", "variadic": false, "parameters": [{ "tag": "parameter", "name": "", "type": { "tag": ":pointer", "type": { "tag": "_IO_FILE" } } }], "return-type": { "tag": ":void" } },
270
+{ "tag": "typedef", "name": "va_list", "location": "/usr/include/stdio.h:79:20", "type": { "tag": "__gnuc_va_list" } },
271
+{ "tag": "typedef", "name": "fpos_t", "location": "/usr/include/stdio.h:110:19", "type": { "tag": "_G_fpos_t" } },
272
+{ "tag": "extern", "name": "stdin", "location": "/usr/include/stdio.h:168:25", "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "_IO_FILE", "id": 0 } } },
273
+{ "tag": "extern", "name": "stdout", "location": "/usr/include/stdio.h:169:25", "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "_IO_FILE", "id": 0 } } },
274
+{ "tag": "extern", "name": "stderr", "location": "/usr/include/stdio.h:170:25", "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "_IO_FILE", "id": 0 } } },
275
+{ "tag": "function", "name": "remove", "location": "/usr/include/stdio.h:178:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__filename", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":int" } },
276
+{ "tag": "function", "name": "rename", "location": "/usr/include/stdio.h:180:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__old", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__new", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":int" } },
277
+{ "tag": "function", "name": "renameat", "location": "/usr/include/stdio.h:185:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__oldfd", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__old", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__newfd", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__new", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":int" } },
278
+{ "tag": "function", "name": "tmpfile", "location": "/usr/include/stdio.h:195:14", "variadic": false, "parameters": [], "return-type": { "tag": ":pointer", "type": { "tag": "FILE" } } },
279
+{ "tag": "function", "name": "tmpnam", "location": "/usr/include/stdio.h:209:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
280
+{ "tag": "function", "name": "tmpnam_r", "location": "/usr/include/stdio.h:215:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
281
+{ "tag": "function", "name": "tempnam", "location": "/usr/include/stdio.h:227:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__dir", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__pfx", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
282
+{ "tag": "function", "name": "fclose", "location": "/usr/include/stdio.h:237:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":int" } },
283
+{ "tag": "function", "name": "fflush", "location": "/usr/include/stdio.h:242:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":int" } },
284
+{ "tag": "function", "name": "fflush_unlocked", "location": "/usr/include/stdio.h:252:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":int" } },
285
+{ "tag": "function", "name": "fopen", "location": "/usr/include/stdio.h:272:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__filename", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__modes", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":pointer", "type": { "tag": "FILE" } } },
286
+{ "tag": "function", "name": "freopen", "location": "/usr/include/stdio.h:278:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__filename", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__modes", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":pointer", "type": { "tag": "FILE" } } },
287
+{ "tag": "function", "name": "fdopen", "location": "/usr/include/stdio.h:306:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__fd", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__modes", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":pointer", "type": { "tag": "FILE" } } },
288
+{ "tag": "function", "name": "fmemopen", "location": "/usr/include/stdio.h:319:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__len", "type": { "tag": "size_t" } }, { "tag": "parameter", "name": "__modes", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":pointer", "type": { "tag": "FILE" } } },
289
+{ "tag": "function", "name": "open_memstream", "location": "/usr/include/stdio.h:325:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__bufloc", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char" } } } }, { "tag": "parameter", "name": "__sizeloc", "type": { "tag": ":pointer", "type": { "tag": "size_t" } } }], "return-type": { "tag": ":pointer", "type": { "tag": "FILE" } } },
290
+{ "tag": "function", "name": "setbuf", "location": "/usr/include/stdio.h:332:13", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }, { "tag": "parameter", "name": "__buf", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":void" } },
291
+{ "tag": "function", "name": "setvbuf", "location": "/usr/include/stdio.h:336:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }, { "tag": "parameter", "name": "__buf", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__modes", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }], "return-type": { "tag": ":int" } },
292
+{ "tag": "function", "name": "setbuffer", "location": "/usr/include/stdio.h:343:13", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }, { "tag": "parameter", "name": "__buf", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__size", "type": { "tag": "size_t" } }], "return-type": { "tag": ":void" } },
293
+{ "tag": "function", "name": "setlinebuf", "location": "/usr/include/stdio.h:347:13", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":void" } },
294
+{ "tag": "function", "name": "fprintf", "location": "/usr/include/stdio.h:356:12", "variadic": true, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }, { "tag": "parameter", "name": "__format", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":int" } },
295
+{ "tag": "function", "name": "printf", "location": "/usr/include/stdio.h:362:12", "variadic": true, "parameters": [{ "tag": "parameter", "name": "__format", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":int" } },
296
+{ "tag": "function", "name": "sprintf", "location": "/usr/include/stdio.h:364:12", "variadic": true, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__format", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":int" } },
297
+{ "tag": "function", "name": "vfprintf", "location": "/usr/include/stdio.h:371:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }, { "tag": "parameter", "name": "__format", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__arg", "type": { "tag": "__gnuc_va_list" } }], "return-type": { "tag": ":int" } },
298
+{ "tag": "function", "name": "vprintf", "location": "/usr/include/stdio.h:377:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__format", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__arg", "type": { "tag": "__gnuc_va_list" } }], "return-type": { "tag": ":int" } },
299
+{ "tag": "function", "name": "vsprintf", "location": "/usr/include/stdio.h:379:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__format", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__arg", "type": { "tag": "__gnuc_va_list" } }], "return-type": { "tag": ":int" } },
300
+{ "tag": "function", "name": "snprintf", "location": "/usr/include/stdio.h:386:12", "variadic": true, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__maxlen", "type": { "tag": "size_t" } }, { "tag": "parameter", "name": "__format", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":int" } },
301
+{ "tag": "function", "name": "vsnprintf", "location": "/usr/include/stdio.h:390:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__maxlen", "type": { "tag": "size_t" } }, { "tag": "parameter", "name": "__format", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__arg", "type": { "tag": "__gnuc_va_list" } }], "return-type": { "tag": ":int" } },
302
+{ "tag": "function", "name": "vdprintf", "location": "/usr/include/stdio.h:412:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__fd", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__fmt", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__arg", "type": { "tag": "__gnuc_va_list" } }], "return-type": { "tag": ":int" } },
303
+{ "tag": "function", "name": "dprintf", "location": "/usr/include/stdio.h:415:12", "variadic": true, "parameters": [{ "tag": "parameter", "name": "__fd", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__fmt", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":int" } },
304
+{ "tag": "function", "name": "fscanf", "location": "/usr/include/stdio.h:425:12", "variadic": true, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }, { "tag": "parameter", "name": "__format", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":int" } },
305
+{ "tag": "function", "name": "scanf", "location": "/usr/include/stdio.h:431:12", "variadic": true, "parameters": [{ "tag": "parameter", "name": "__format", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":int" } },
306
+{ "tag": "function", "name": "sscanf", "location": "/usr/include/stdio.h:433:12", "variadic": true, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__format", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":int" } },
307
+{ "tag": "function", "name": "fscanf", "location": "/usr/include/stdio.h:443:12 <Spelling=/usr/include/stdio.h:443:24>", "variadic": true, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }, { "tag": "parameter", "name": "__format", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":int" } },
308
+{ "tag": "function", "name": "scanf", "location": "/usr/include/stdio.h:446:12 <Spelling=/usr/include/stdio.h:446:24>", "variadic": true, "parameters": [{ "tag": "parameter", "name": "__format", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":int" } },
309
+{ "tag": "function", "name": "sscanf", "location": "/usr/include/stdio.h:448:12 <Spelling=/usr/include/stdio.h:448:28>", "variadic": true, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__format", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":int" } },
310
+{ "tag": "function", "name": "vfscanf", "location": "/usr/include/stdio.h:471:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }, { "tag": "parameter", "name": "__format", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__arg", "type": { "tag": "__gnuc_va_list" } }], "return-type": { "tag": ":int" } },
311
+{ "tag": "function", "name": "vscanf", "location": "/usr/include/stdio.h:479:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__format", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__arg", "type": { "tag": "__gnuc_va_list" } }], "return-type": { "tag": ":int" } },
312
+{ "tag": "function", "name": "vsscanf", "location": "/usr/include/stdio.h:483:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__format", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__arg", "type": { "tag": "__gnuc_va_list" } }], "return-type": { "tag": ":int" } },
313
+{ "tag": "function", "name": "vfscanf", "location": "/usr/include/stdio.h:494:12 <Spelling=/usr/include/stdio.h:494:24>", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }, { "tag": "parameter", "name": "__format", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__arg", "type": { "tag": "__gnuc_va_list" } }], "return-type": { "tag": ":int" } },
314
+{ "tag": "function", "name": "vscanf", "location": "/usr/include/stdio.h:499:12 <Spelling=/usr/include/stdio.h:499:24>", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__format", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__arg", "type": { "tag": "__gnuc_va_list" } }], "return-type": { "tag": ":int" } },
315
+{ "tag": "function", "name": "vsscanf", "location": "/usr/include/stdio.h:502:12 <Spelling=/usr/include/stdio.h:502:28>", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__format", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__arg", "type": { "tag": "__gnuc_va_list" } }], "return-type": { "tag": ":int" } },
316
+{ "tag": "function", "name": "fgetc", "location": "/usr/include/stdio.h:531:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":int" } },
317
+{ "tag": "function", "name": "getc", "location": "/usr/include/stdio.h:532:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":int" } },
318
+{ "tag": "function", "name": "getchar", "location": "/usr/include/stdio.h:538:12", "variadic": false, "parameters": [], "return-type": { "tag": ":int" } },
319
+{ "tag": "function", "name": "getc_unlocked", "location": "/usr/include/stdio.h:550:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":int" } },
320
+{ "tag": "function", "name": "getchar_unlocked", "location": "/usr/include/stdio.h:551:12", "variadic": false, "parameters": [], "return-type": { "tag": ":int" } },
321
+{ "tag": "function", "name": "fgetc_unlocked", "location": "/usr/include/stdio.h:561:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":int" } },
322
+{ "tag": "function", "name": "fputc", "location": "/usr/include/stdio.h:573:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__c", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":int" } },
323
+{ "tag": "function", "name": "putc", "location": "/usr/include/stdio.h:574:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__c", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":int" } },
324
+{ "tag": "function", "name": "putchar", "location": "/usr/include/stdio.h:580:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__c", "type": { "tag": ":int" } }], "return-type": { "tag": ":int" } },
325
+{ "tag": "function", "name": "fputc_unlocked", "location": "/usr/include/stdio.h:594:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__c", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":int" } },
326
+{ "tag": "function", "name": "putc_unlocked", "location": "/usr/include/stdio.h:602:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__c", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":int" } },
327
+{ "tag": "function", "name": "putchar_unlocked", "location": "/usr/include/stdio.h:603:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__c", "type": { "tag": ":int" } }], "return-type": { "tag": ":int" } },
328
+{ "tag": "function", "name": "getw", "location": "/usr/include/stdio.h:610:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":int" } },
329
+{ "tag": "function", "name": "putw", "location": "/usr/include/stdio.h:613:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__w", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":int" } },
330
+{ "tag": "function", "name": "fgets", "location": "/usr/include/stdio.h:622:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__n", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
331
+{ "tag": "function", "name": "gets", "location": "/usr/include/stdio.h:638:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
332
+{ "tag": "function", "name": "__getdelim", "location": "/usr/include/stdio.h:665:20", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__lineptr", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char" } } } }, { "tag": "parameter", "name": "__n", "type": { "tag": ":pointer", "type": { "tag": "size_t" } } }, { "tag": "parameter", "name": "__delimiter", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": "__ssize_t" } },
333
+{ "tag": "function", "name": "getdelim", "location": "/usr/include/stdio.h:668:20", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__lineptr", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char" } } } }, { "tag": "parameter", "name": "__n", "type": { "tag": ":pointer", "type": { "tag": "size_t" } } }, { "tag": "parameter", "name": "__delimiter", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": "__ssize_t" } },
334
+{ "tag": "function", "name": "getline", "location": "/usr/include/stdio.h:678:20", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__lineptr", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char" } } } }, { "tag": "parameter", "name": "__n", "type": { "tag": ":pointer", "type": { "tag": "size_t" } } }, { "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": "__ssize_t" } },
335
+{ "tag": "function", "name": "fputs", "location": "/usr/include/stdio.h:689:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":int" } },
336
+{ "tag": "function", "name": "puts", "location": "/usr/include/stdio.h:695:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":int" } },
337
+{ "tag": "function", "name": "ungetc", "location": "/usr/include/stdio.h:702:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__c", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":int" } },
338
+{ "tag": "function", "name": "fread", "location": "/usr/include/stdio.h:709:15", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__ptr", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__size", "type": { "tag": "size_t" } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }, { "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": "size_t" } },
339
+{ "tag": "function", "name": "fwrite", "location": "/usr/include/stdio.h:715:15", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__ptr", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__size", "type": { "tag": "size_t" } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }, { "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": "size_t" } },
340
+{ "tag": "function", "name": "fread_unlocked", "location": "/usr/include/stdio.h:737:15", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__ptr", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__size", "type": { "tag": "size_t" } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }, { "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": "size_t" } },
341
+{ "tag": "function", "name": "fwrite_unlocked", "location": "/usr/include/stdio.h:739:15", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__ptr", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__size", "type": { "tag": "size_t" } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }, { "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": "size_t" } },
342
+{ "tag": "function", "name": "fseek", "location": "/usr/include/stdio.h:749:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }, { "tag": "parameter", "name": "__off", "type": { "tag": ":long" } }, { "tag": "parameter", "name": "__whence", "type": { "tag": ":int" } }], "return-type": { "tag": ":int" } },
343
+{ "tag": "function", "name": "ftell", "location": "/usr/include/stdio.h:754:17", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":long" } },
344
+{ "tag": "function", "name": "rewind", "location": "/usr/include/stdio.h:759:13", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":void" } },
345
+{ "tag": "function", "name": "fseeko", "location": "/usr/include/stdio.h:773:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }, { "tag": "parameter", "name": "__off", "type": { "tag": "__off_t" } }, { "tag": "parameter", "name": "__whence", "type": { "tag": ":int" } }], "return-type": { "tag": ":int" } },
346
+{ "tag": "function", "name": "ftello", "location": "/usr/include/stdio.h:778:16", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": "__off_t" } },
347
+{ "tag": "function", "name": "fgetpos", "location": "/usr/include/stdio.h:798:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }, { "tag": "parameter", "name": "__pos", "type": { "tag": ":pointer", "type": { "tag": "fpos_t" } } }], "return-type": { "tag": ":int" } },
348
+{ "tag": "function", "name": "fsetpos", "location": "/usr/include/stdio.h:803:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }, { "tag": "parameter", "name": "__pos", "type": { "tag": ":pointer", "type": { "tag": "fpos_t" } } }], "return-type": { "tag": ":int" } },
349
+{ "tag": "function", "name": "clearerr", "location": "/usr/include/stdio.h:826:13", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":void" } },
350
+{ "tag": "function", "name": "feof", "location": "/usr/include/stdio.h:828:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":int" } },
351
+{ "tag": "function", "name": "ferror", "location": "/usr/include/stdio.h:830:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":int" } },
352
+{ "tag": "function", "name": "clearerr_unlocked", "location": "/usr/include/stdio.h:835:13", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":void" } },
353
+{ "tag": "function", "name": "feof_unlocked", "location": "/usr/include/stdio.h:836:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":int" } },
354
+{ "tag": "function", "name": "ferror_unlocked", "location": "/usr/include/stdio.h:837:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":int" } },
355
+{ "tag": "function", "name": "perror", "location": "/usr/include/stdio.h:846:13", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":void" } },
356
+{ "tag": "extern", "name": "sys_nerr", "location": "/usr/include/bits/sys_errlist.h:26:12", "type": { "tag": ":int" } },
357
+{ "tag": "extern", "name": "sys_errlist", "location": "/usr/include/bits/sys_errlist.h:27:26", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char" } } } },
358
+{ "tag": "function", "name": "fileno", "location": "/usr/include/stdio.h:858:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":int" } },
359
+{ "tag": "function", "name": "fileno_unlocked", "location": "/usr/include/stdio.h:863:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":int" } },
360
+{ "tag": "function", "name": "popen", "location": "/usr/include/stdio.h:873:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__command", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__modes", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":pointer", "type": { "tag": "FILE" } } },
361
+{ "tag": "function", "name": "pclose", "location": "/usr/include/stdio.h:879:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":int" } },
362
+{ "tag": "function", "name": "ctermid", "location": "/usr/include/stdio.h:885:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
363
+{ "tag": "function", "name": "flockfile", "location": "/usr/include/stdio.h:913:13", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":void" } },
364
+{ "tag": "function", "name": "ftrylockfile", "location": "/usr/include/stdio.h:917:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":int" } },
365
+{ "tag": "function", "name": "funlockfile", "location": "/usr/include/stdio.h:920:13", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stream", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":void" } },
366
+{ "tag": "function", "name": "memcpy", "location": "/usr/include/string.h:42:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__dest", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__src", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":void" } } },
367
+{ "tag": "function", "name": "memmove", "location": "/usr/include/string.h:46:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__dest", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__src", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":void" } } },
368
+{ "tag": "function", "name": "memccpy", "location": "/usr/include/string.h:54:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__dest", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__src", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__c", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":void" } } },
369
+{ "tag": "function", "name": "memset", "location": "/usr/include/string.h:62:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__c", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":void" } } },
370
+{ "tag": "function", "name": "memcmp", "location": "/usr/include/string.h:65:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s1", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__s2", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }], "return-type": { "tag": ":int" } },
371
+{ "tag": "function", "name": "memchr", "location": "/usr/include/string.h:92:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__c", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":void" } } },
372
+{ "tag": "function", "name": "strcpy", "location": "/usr/include/string.h:125:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__dest", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__src", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
373
+{ "tag": "function", "name": "strncpy", "location": "/usr/include/string.h:128:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__dest", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__src", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
374
+{ "tag": "function", "name": "strcat", "location": "/usr/include/string.h:133:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__dest", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__src", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
375
+{ "tag": "function", "name": "strncat", "location": "/usr/include/string.h:136:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__dest", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__src", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
376
+{ "tag": "function", "name": "strcmp", "location": "/usr/include/string.h:140:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s1", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__s2", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":int" } },
377
+{ "tag": "function", "name": "strncmp", "location": "/usr/include/string.h:143:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s1", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__s2", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }], "return-type": { "tag": ":int" } },
378
+{ "tag": "function", "name": "strcoll", "location": "/usr/include/string.h:147:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s1", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__s2", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":int" } },
379
+{ "tag": "function", "name": "strxfrm", "location": "/usr/include/string.h:150:15", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__dest", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__src", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }], "return-type": { "tag": "size_t" } },
380
+{ "tag": "struct", "name": "__locale_struct", "id": 0, "location": "/usr/include/xlocale.h:27:16", "bit-size": 1856, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "__locales", "bit-offset": 0, "bit-size": 832, "bit-alignment": 64, "type": { "tag": ":array", "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "__locale_data", "id": 0 } }, "size": 13 } }, { "tag": "field", "name": "__ctype_b", "bit-offset": 832, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":unsigned-short" } } }, { "tag": "field", "name": "__ctype_tolower", "bit-offset": 896, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":int" } } }, { "tag": "field", "name": "__ctype_toupper", "bit-offset": 960, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":int" } } }, { "tag": "field", "name": "__names", "bit-offset": 1024, "bit-size": 832, "bit-alignment": 64, "type": { "tag": ":array", "type": { "tag": ":pointer", "type": { "tag": ":char" } }, "size": 13 } }] },
381
+{ "tag": "typedef", "name": "__locale_t", "location": "/usr/include/xlocale.h:39:4", "type": { "tag": ":pointer", "type": { "tag": ":struct", "name": "__locale_struct", "id": 0 } } },
382
+{ "tag": "typedef", "name": "locale_t", "location": "/usr/include/xlocale.h:42:20", "type": { "tag": "__locale_t" } },
383
+{ "tag": "function", "name": "strcoll_l", "location": "/usr/include/string.h:162:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s1", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__s2", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__l", "type": { "tag": "__locale_t" } }], "return-type": { "tag": ":int" } },
384
+{ "tag": "function", "name": "strxfrm_l", "location": "/usr/include/string.h:165:15", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__dest", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__src", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }, { "tag": "parameter", "name": "__l", "type": { "tag": "__locale_t" } }], "return-type": { "tag": "size_t" } },
385
+{ "tag": "function", "name": "strdup", "location": "/usr/include/string.h:172:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
386
+{ "tag": "function", "name": "strndup", "location": "/usr/include/string.h:180:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__string", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
387
+{ "tag": "function", "name": "strchr", "location": "/usr/include/string.h:232:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__c", "type": { "tag": ":int" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
388
+{ "tag": "function", "name": "strrchr", "location": "/usr/include/string.h:259:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__c", "type": { "tag": ":int" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
389
+{ "tag": "function", "name": "strcspn", "location": "/usr/include/string.h:281:15", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__reject", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": "size_t" } },
390
+{ "tag": "function", "name": "strspn", "location": "/usr/include/string.h:285:15", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__accept", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": "size_t" } },
391
+{ "tag": "function", "name": "strpbrk", "location": "/usr/include/string.h:311:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__accept", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
392
+{ "tag": "function", "name": "strstr", "location": "/usr/include/string.h:338:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__haystack", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__needle", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
393
+{ "tag": "function", "name": "strtok", "location": "/usr/include/string.h:344:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__delim", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
394
+{ "tag": "function", "name": "__strtok_r", "location": "/usr/include/string.h:350:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__delim", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__save_ptr", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char" } } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
395
+{ "tag": "function", "name": "strtok_r", "location": "/usr/include/string.h:355:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__delim", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__save_ptr", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char" } } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
396
+{ "tag": "function", "name": "strlen", "location": "/usr/include/string.h:395:15", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": "size_t" } },
397
+{ "tag": "function", "name": "strnlen", "location": "/usr/include/string.h:402:15", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__string", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__maxlen", "type": { "tag": "size_t" } }], "return-type": { "tag": "size_t" } },
398
+{ "tag": "function", "name": "strerror", "location": "/usr/include/string.h:409:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__errnum", "type": { "tag": ":int" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
399
+{ "tag": "function", "name": "strerror_r", "location": "/usr/include/string.h:423:12 <Spelling=/usr/include/string.h:423:28>", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__errnum", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__buf", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__buflen", "type": { "tag": "size_t" } }], "return-type": { "tag": ":int" } },
400
+{ "tag": "function", "name": "strerror_l", "location": "/usr/include/string.h:441:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__errnum", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "__l", "type": { "tag": "__locale_t" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
401
+{ "tag": "function", "name": "__bzero", "location": "/usr/include/string.h:447:13", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }], "return-type": { "tag": ":void" } },
402
+{ "tag": "function", "name": "bcopy", "location": "/usr/include/string.h:451:13", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__src", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__dest", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }], "return-type": { "tag": ":void" } },
403
+{ "tag": "function", "name": "bzero", "location": "/usr/include/string.h:455:13", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }], "return-type": { "tag": ":void" } },
404
+{ "tag": "function", "name": "bcmp", "location": "/usr/include/string.h:458:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s1", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__s2", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }], "return-type": { "tag": ":int" } },
405
+{ "tag": "function", "name": "index", "location": "/usr/include/string.h:485:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__c", "type": { "tag": ":int" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
406
+{ "tag": "function", "name": "rindex", "location": "/usr/include/string.h:513:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__c", "type": { "tag": ":int" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
407
+{ "tag": "function", "name": "ffs", "location": "/usr/include/string.h:519:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__i", "type": { "tag": ":int" } }], "return-type": { "tag": ":int" } },
408
+{ "tag": "function", "name": "strcasecmp", "location": "/usr/include/string.h:532:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s1", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__s2", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":int" } },
409
+{ "tag": "function", "name": "strncasecmp", "location": "/usr/include/string.h:536:12", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__s1", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__s2", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }], "return-type": { "tag": ":int" } },
410
+{ "tag": "function", "name": "strsep", "location": "/usr/include/string.h:555:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__stringp", "type": { "tag": ":pointer", "type": { "tag": ":pointer", "type": { "tag": ":char" } } } }, { "tag": "parameter", "name": "__delim", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
411
+{ "tag": "function", "name": "strsignal", "location": "/usr/include/string.h:562:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__sig", "type": { "tag": ":int" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
412
+{ "tag": "function", "name": "__stpcpy", "location": "/usr/include/string.h:565:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__dest", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__src", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
413
+{ "tag": "function", "name": "stpcpy", "location": "/usr/include/string.h:567:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__dest", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__src", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
414
+{ "tag": "function", "name": "__stpncpy", "location": "/usr/include/string.h:572:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__dest", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__src", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
415
+{ "tag": "function", "name": "stpncpy", "location": "/usr/include/string.h:575:14", "variadic": false, "parameters": [{ "tag": "parameter", "name": "__dest", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__src", "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "parameter", "name": "__n", "type": { "tag": "size_t" } }], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
416
+{ "tag": "function", "name": "yaml_get_version_string", "location": "/usr/include/yaml.h:57:1", "variadic": false, "parameters": [], "return-type": { "tag": ":pointer", "type": { "tag": ":char" } } },
417
+{ "tag": "function", "name": "yaml_get_version", "location": "/usr/include/yaml.h:68:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "major", "type": { "tag": ":pointer", "type": { "tag": ":int" } } }, { "tag": "parameter", "name": "minor", "type": { "tag": ":pointer", "type": { "tag": ":int" } } }, { "tag": "parameter", "name": "patch", "type": { "tag": ":pointer", "type": { "tag": ":int" } } }], "return-type": { "tag": ":void" } },
418
+{ "tag": "typedef", "name": "yaml_char_t", "location": "/usr/include/yaml.h:78:23", "type": { "tag": ":unsigned-char" } },
419
+{ "tag": "struct", "name": "yaml_version_directive_s", "id": 0, "location": "/usr/include/yaml.h:81:16", "bit-size": 64, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "major", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "minor", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }] },
420
+{ "tag": "typedef", "name": "yaml_version_directive_t", "location": "/usr/include/yaml.h:86:3", "type": { "tag": ":struct", "name": "yaml_version_directive_s", "id": 0 } },
421
+{ "tag": "struct", "name": "yaml_tag_directive_s", "id": 0, "location": "/usr/include/yaml.h:89:16", "bit-size": 128, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "handle", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "field", "name": "prefix", "bit-offset": 64, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }] },
422
+{ "tag": "typedef", "name": "yaml_tag_directive_t", "location": "/usr/include/yaml.h:94:3", "type": { "tag": ":struct", "name": "yaml_tag_directive_s", "id": 0 } },
423
+{ "tag": "enum", "name": "yaml_encoding_e", "id": 0, "location": "/usr/include/yaml.h:97:14", "fields": [{ "tag": "field", "name": "YAML_ANY_ENCODING", "value": 0 }, { "tag": "field", "name": "YAML_UTF8_ENCODING", "value": 1 }, { "tag": "field", "name": "YAML_UTF16LE_ENCODING", "value": 2 }, { "tag": "field", "name": "YAML_UTF16BE_ENCODING", "value": 3 }] },
424
+{ "tag": "typedef", "name": "yaml_encoding_t", "location": "/usr/include/yaml.h:106:3", "type": { "tag": ":enum", "name": "yaml_encoding_e", "id": 0 } },
425
+{ "tag": "enum", "name": "yaml_break_e", "id": 0, "location": "/usr/include/yaml.h:110:14", "fields": [{ "tag": "field", "name": "YAML_ANY_BREAK", "value": 0 }, { "tag": "field", "name": "YAML_CR_BREAK", "value": 1 }, { "tag": "field", "name": "YAML_LN_BREAK", "value": 2 }, { "tag": "field", "name": "YAML_CRLN_BREAK", "value": 3 }] },
426
+{ "tag": "typedef", "name": "yaml_break_t", "location": "/usr/include/yaml.h:119:3", "type": { "tag": ":enum", "name": "yaml_break_e", "id": 0 } },
427
+{ "tag": "enum", "name": "yaml_error_type_e", "id": 0, "location": "/usr/include/yaml.h:122:14", "fields": [{ "tag": "field", "name": "YAML_NO_ERROR", "value": 0 }, { "tag": "field", "name": "YAML_MEMORY_ERROR", "value": 1 }, { "tag": "field", "name": "YAML_READER_ERROR", "value": 2 }, { "tag": "field", "name": "YAML_SCANNER_ERROR", "value": 3 }, { "tag": "field", "name": "YAML_PARSER_ERROR", "value": 4 }, { "tag": "field", "name": "YAML_COMPOSER_ERROR", "value": 5 }, { "tag": "field", "name": "YAML_WRITER_ERROR", "value": 6 }, { "tag": "field", "name": "YAML_EMITTER_ERROR", "value": 7 }] },
428
+{ "tag": "typedef", "name": "yaml_error_type_t", "location": "/usr/include/yaml.h:142:3", "type": { "tag": ":enum", "name": "yaml_error_type_e", "id": 0 } },
429
+{ "tag": "struct", "name": "yaml_mark_s", "id": 0, "location": "/usr/include/yaml.h:145:16", "bit-size": 192, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "index", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": "size_t" } }, { "tag": "field", "name": "line", "bit-offset": 64, "bit-size": 64, "bit-alignment": 64, "type": { "tag": "size_t" } }, { "tag": "field", "name": "column", "bit-offset": 128, "bit-size": 64, "bit-alignment": 64, "type": { "tag": "size_t" } }] },
430
+{ "tag": "typedef", "name": "yaml_mark_t", "location": "/usr/include/yaml.h:154:3", "type": { "tag": ":struct", "name": "yaml_mark_s", "id": 0 } },
431
+{ "tag": "enum", "name": "yaml_scalar_style_e", "id": 0, "location": "/usr/include/yaml.h:164:14", "fields": [{ "tag": "field", "name": "YAML_ANY_SCALAR_STYLE", "value": 0 }, { "tag": "field", "name": "YAML_PLAIN_SCALAR_STYLE", "value": 1 }, { "tag": "field", "name": "YAML_SINGLE_QUOTED_SCALAR_STYLE", "value": 2 }, { "tag": "field", "name": "YAML_DOUBLE_QUOTED_SCALAR_STYLE", "value": 3 }, { "tag": "field", "name": "YAML_LITERAL_SCALAR_STYLE", "value": 4 }, { "tag": "field", "name": "YAML_FOLDED_SCALAR_STYLE", "value": 5 }] },
432
+{ "tag": "typedef", "name": "yaml_scalar_style_t", "location": "/usr/include/yaml.h:180:3", "type": { "tag": ":enum", "name": "yaml_scalar_style_e", "id": 0 } },
433
+{ "tag": "enum", "name": "yaml_sequence_style_e", "id": 0, "location": "/usr/include/yaml.h:183:14", "fields": [{ "tag": "field", "name": "YAML_ANY_SEQUENCE_STYLE", "value": 0 }, { "tag": "field", "name": "YAML_BLOCK_SEQUENCE_STYLE", "value": 1 }, { "tag": "field", "name": "YAML_FLOW_SEQUENCE_STYLE", "value": 2 }] },
434
+{ "tag": "typedef", "name": "yaml_sequence_style_t", "location": "/usr/include/yaml.h:191:3", "type": { "tag": ":enum", "name": "yaml_sequence_style_e", "id": 0 } },
435
+{ "tag": "enum", "name": "yaml_mapping_style_e", "id": 0, "location": "/usr/include/yaml.h:194:14", "fields": [{ "tag": "field", "name": "YAML_ANY_MAPPING_STYLE", "value": 0 }, { "tag": "field", "name": "YAML_BLOCK_MAPPING_STYLE", "value": 1 }, { "tag": "field", "name": "YAML_FLOW_MAPPING_STYLE", "value": 2 }] },
436
+{ "tag": "typedef", "name": "yaml_mapping_style_t", "location": "/usr/include/yaml.h:203:3", "type": { "tag": ":enum", "name": "yaml_mapping_style_e", "id": 0 } },
437
+{ "tag": "enum", "name": "yaml_token_type_e", "id": 0, "location": "/usr/include/yaml.h:213:14", "fields": [{ "tag": "field", "name": "YAML_NO_TOKEN", "value": 0 }, { "tag": "field", "name": "YAML_STREAM_START_TOKEN", "value": 1 }, { "tag": "field", "name": "YAML_STREAM_END_TOKEN", "value": 2 }, { "tag": "field", "name": "YAML_VERSION_DIRECTIVE_TOKEN", "value": 3 }, { "tag": "field", "name": "YAML_TAG_DIRECTIVE_TOKEN", "value": 4 }, { "tag": "field", "name": "YAML_DOCUMENT_START_TOKEN", "value": 5 }, { "tag": "field", "name": "YAML_DOCUMENT_END_TOKEN", "value": 6 }, { "tag": "field", "name": "YAML_BLOCK_SEQUENCE_START_TOKEN", "value": 7 }, { "tag": "field", "name": "YAML_BLOCK_MAPPING_START_TOKEN", "value": 8 }, { "tag": "field", "name": "YAML_BLOCK_END_TOKEN", "value": 9 }, { "tag": "field", "name": "YAML_FLOW_SEQUENCE_START_TOKEN", "value": 10 }, { "tag": "field", "name": "YAML_FLOW_SEQUENCE_END_TOKEN", "value": 11 }, { "tag": "field", "name": "YAML_FLOW_MAPPING_START_TOKEN", "value": 12 }, { "tag": "field", "name": "YAML_FLOW_MAPPING_END_TOKEN", "value": 13 }, { "tag": "field", "name": "YAML_BLOCK_ENTRY_TOKEN", "value": 14 }, { "tag": "field", "name": "YAML_FLOW_ENTRY_TOKEN", "value": 15 }, { "tag": "field", "name": "YAML_KEY_TOKEN", "value": 16 }, { "tag": "field", "name": "YAML_VALUE_TOKEN", "value": 17 }, { "tag": "field", "name": "YAML_ALIAS_TOKEN", "value": 18 }, { "tag": "field", "name": "YAML_ANCHOR_TOKEN", "value": 19 }, { "tag": "field", "name": "YAML_TAG_TOKEN", "value": 20 }, { "tag": "field", "name": "YAML_SCALAR_TOKEN", "value": 21 }] },
438
+{ "tag": "typedef", "name": "yaml_token_type_t", "location": "/usr/include/yaml.h:264:3", "type": { "tag": ":enum", "name": "yaml_token_type_e", "id": 0 } },
439
+{ "tag": "struct", "name": "yaml_token_s", "id": 0, "location": "/usr/include/yaml.h:267:16", "bit-size": 640, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "type", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "yaml_token_type_t" } }, { "tag": "field", "name": "data", "bit-offset": 64, "bit-size": 192, "bit-alignment": 64, "type": { "tag": "union", "name": "", "id": 24, "location": "/usr/include/yaml.h:273:5", "bit-size": 192, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "stream_start", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "struct", "name": "", "id": 25, "location": "/usr/include/yaml.h:276:9", "bit-size": 32, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "encoding", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "yaml_encoding_t" } }] } }, { "tag": "field", "name": "alias", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": "struct", "name": "", "id": 26, "location": "/usr/include/yaml.h:282:9", "bit-size": 64, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "value", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }] } }, { "tag": "field", "name": "anchor", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": "struct", "name": "", "id": 27, "location": "/usr/include/yaml.h:288:9", "bit-size": 64, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "value", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }] } }, { "tag": "field", "name": "tag", "bit-offset": 0, "bit-size": 128, "bit-alignment": 64, "type": { "tag": "struct", "name": "", "id": 28, "location": "/usr/include/yaml.h:294:9", "bit-size": 128, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "handle", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "field", "name": "suffix", "bit-offset": 64, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }] } }, { "tag": "field", "name": "scalar", "bit-offset": 0, "bit-size": 192, "bit-alignment": 64, "type": { "tag": "struct", "name": "", "id": 29, "location": "/usr/include/yaml.h:302:9", "bit-size": 192, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "value", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "field", "name": "length", "bit-offset": 64, "bit-size": 64, "bit-alignment": 64, "type": { "tag": "size_t" } }, { "tag": "field", "name": "style", "bit-offset": 128, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "yaml_scalar_style_t" } }] } }, { "tag": "field", "name": "version_directive", "bit-offset": 0, "bit-size": 64, "bit-alignment": 32, "type": { "tag": "struct", "name": "", "id": 30, "location": "/usr/include/yaml.h:312:9", "bit-size": 64, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "major", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "minor", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }] } }, { "tag": "field", "name": "tag_directive", "bit-offset": 0, "bit-size": 128, "bit-alignment": 64, "type": { "tag": "struct", "name": "", "id": 31, "location": "/usr/include/yaml.h:320:9", "bit-size": 128, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "handle", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "field", "name": "prefix", "bit-offset": 64, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }] } }] } }, { "tag": "field", "name": "start_mark", "bit-offset": 256, "bit-size": 192, "bit-alignment": 64, "type": { "tag": "yaml_mark_t" } }, { "tag": "field", "name": "end_mark", "bit-offset": 448, "bit-size": 192, "bit-alignment": 64, "type": { "tag": "yaml_mark_t" } }] },
440
+{ "tag": "typedef", "name": "yaml_token_t", "location": "/usr/include/yaml.h:334:3", "type": { "tag": ":struct", "name": "yaml_token_s", "id": 0 } },
441
+{ "tag": "function", "name": "yaml_token_delete", "location": "/usr/include/yaml.h:343:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "token", "type": { "tag": ":pointer", "type": { "tag": "yaml_token_t" } } }], "return-type": { "tag": ":void" } },
442
+{ "tag": "enum", "name": "yaml_event_type_e", "id": 0, "location": "/usr/include/yaml.h:353:14", "fields": [{ "tag": "field", "name": "YAML_NO_EVENT", "value": 0 }, { "tag": "field", "name": "YAML_STREAM_START_EVENT", "value": 1 }, { "tag": "field", "name": "YAML_STREAM_END_EVENT", "value": 2 }, { "tag": "field", "name": "YAML_DOCUMENT_START_EVENT", "value": 3 }, { "tag": "field", "name": "YAML_DOCUMENT_END_EVENT", "value": 4 }, { "tag": "field", "name": "YAML_ALIAS_EVENT", "value": 5 }, { "tag": "field", "name": "YAML_SCALAR_EVENT", "value": 6 }, { "tag": "field", "name": "YAML_SEQUENCE_START_EVENT", "value": 7 }, { "tag": "field", "name": "YAML_SEQUENCE_END_EVENT", "value": 8 }, { "tag": "field", "name": "YAML_MAPPING_START_EVENT", "value": 9 }, { "tag": "field", "name": "YAML_MAPPING_END_EVENT", "value": 10 }] },
443
+{ "tag": "typedef", "name": "yaml_event_type_t", "location": "/usr/include/yaml.h:381:3", "type": { "tag": ":enum", "name": "yaml_event_type_e", "id": 0 } },
444
+{ "tag": "struct", "name": "yaml_event_s", "id": 0, "location": "/usr/include/yaml.h:384:16", "bit-size": 832, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "type", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "yaml_event_type_t" } }, { "tag": "field", "name": "data", "bit-offset": 64, "bit-size": 384, "bit-alignment": 64, "type": { "tag": "union", "name": "", "id": 32, "location": "/usr/include/yaml.h:390:5", "bit-size": 384, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "stream_start", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "struct", "name": "", "id": 33, "location": "/usr/include/yaml.h:393:9", "bit-size": 32, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "encoding", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "yaml_encoding_t" } }] } }, { "tag": "field", "name": "document_start", "bit-offset": 0, "bit-size": 256, "bit-alignment": 64, "type": { "tag": "struct", "name": "", "id": 34, "location": "/usr/include/yaml.h:399:9", "bit-size": 256, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "version_directive", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_version_directive_t" } } }, { "tag": "field", "name": "tag_directives", "bit-offset": 64, "bit-size": 128, "bit-alignment": 64, "type": { "tag": "struct", "name": "", "id": 35, "location": "/usr/include/yaml.h:404:13", "bit-size": 128, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "start", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_tag_directive_t" } } }, { "tag": "field", "name": "end", "bit-offset": 64, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_tag_directive_t" } } }] } }, { "tag": "field", "name": "implicit", "bit-offset": 192, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }] } }, { "tag": "field", "name": "document_end", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "struct", "name": "", "id": 36, "location": "/usr/include/yaml.h:416:9", "bit-size": 32, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "implicit", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }] } }, { "tag": "field", "name": "alias", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": "struct", "name": "", "id": 37, "location": "/usr/include/yaml.h:422:9", "bit-size": 64, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "anchor", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }] } }, { "tag": "field", "name": "scalar", "bit-offset": 0, "bit-size": 384, "bit-alignment": 64, "type": { "tag": "struct", "name": "", "id": 38, "location": "/usr/include/yaml.h:428:9", "bit-size": 384, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "anchor", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "field", "name": "tag", "bit-offset": 64, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "field", "name": "value", "bit-offset": 128, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "field", "name": "length", "bit-offset": 192, "bit-size": 64, "bit-alignment": 64, "type": { "tag": "size_t" } }, { "tag": "field", "name": "plain_implicit", "bit-offset": 256, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "quoted_implicit", "bit-offset": 288, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "style", "bit-offset": 320, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "yaml_scalar_style_t" } }] } }, { "tag": "field", "name": "sequence_start", "bit-offset": 0, "bit-size": 192, "bit-alignment": 64, "type": { "tag": "struct", "name": "", "id": 39, "location": "/usr/include/yaml.h:446:9", "bit-size": 192, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "anchor", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "field", "name": "tag", "bit-offset": 64, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "field", "name": "implicit", "bit-offset": 128, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "style", "bit-offset": 160, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "yaml_sequence_style_t" } }] } }, { "tag": "field", "name": "mapping_start", "bit-offset": 0, "bit-size": 192, "bit-alignment": 64, "type": { "tag": "struct", "name": "", "id": 40, "location": "/usr/include/yaml.h:458:9", "bit-size": 192, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "anchor", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "field", "name": "tag", "bit-offset": 64, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "field", "name": "implicit", "bit-offset": 128, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "style", "bit-offset": 160, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "yaml_mapping_style_t" } }] } }] } }, { "tag": "field", "name": "start_mark", "bit-offset": 448, "bit-size": 192, "bit-alignment": 64, "type": { "tag": "yaml_mark_t" } }, { "tag": "field", "name": "end_mark", "bit-offset": 640, "bit-size": 192, "bit-alignment": 64, "type": { "tag": "yaml_mark_t" } }] },
445
+{ "tag": "typedef", "name": "yaml_event_t", "location": "/usr/include/yaml.h:476:3", "type": { "tag": ":struct", "name": "yaml_event_s", "id": 0 } },
446
+{ "tag": "function", "name": "yaml_stream_start_event_initialize", "location": "/usr/include/yaml.h:488:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "event", "type": { "tag": ":pointer", "type": { "tag": "yaml_event_t" } } }, { "tag": "parameter", "name": "encoding", "type": { "tag": "yaml_encoding_t" } }], "return-type": { "tag": ":int" } },
447
+{ "tag": "function", "name": "yaml_stream_end_event_initialize", "location": "/usr/include/yaml.h:500:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "event", "type": { "tag": ":pointer", "type": { "tag": "yaml_event_t" } } }], "return-type": { "tag": ":int" } },
448
+{ "tag": "function", "name": "yaml_document_start_event_initialize", "location": "/usr/include/yaml.h:522:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "event", "type": { "tag": ":pointer", "type": { "tag": "yaml_event_t" } } }, { "tag": "parameter", "name": "version_directive", "type": { "tag": ":pointer", "type": { "tag": "yaml_version_directive_t" } } }, { "tag": "parameter", "name": "tag_directives_start", "type": { "tag": ":pointer", "type": { "tag": "yaml_tag_directive_t" } } }, { "tag": "parameter", "name": "tag_directives_end", "type": { "tag": ":pointer", "type": { "tag": "yaml_tag_directive_t" } } }, { "tag": "parameter", "name": "implicit", "type": { "tag": ":int" } }], "return-type": { "tag": ":int" } },
449
+{ "tag": "function", "name": "yaml_document_end_event_initialize", "location": "/usr/include/yaml.h:541:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "event", "type": { "tag": ":pointer", "type": { "tag": "yaml_event_t" } } }, { "tag": "parameter", "name": "implicit", "type": { "tag": ":int" } }], "return-type": { "tag": ":int" } },
450
+{ "tag": "function", "name": "yaml_alias_event_initialize", "location": "/usr/include/yaml.h:553:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "event", "type": { "tag": ":pointer", "type": { "tag": "yaml_event_t" } } }, { "tag": "parameter", "name": "anchor", "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }], "return-type": { "tag": ":int" } },
451
+{ "tag": "function", "name": "yaml_scalar_event_initialize", "location": "/usr/include/yaml.h:578:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "event", "type": { "tag": ":pointer", "type": { "tag": "yaml_event_t" } } }, { "tag": "parameter", "name": "anchor", "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "parameter", "name": "tag", "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "parameter", "name": "value", "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "parameter", "name": "length", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "plain_implicit", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "quoted_implicit", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "style", "type": { "tag": "yaml_scalar_style_t" } }], "return-type": { "tag": ":int" } },
452
+{ "tag": "function", "name": "yaml_sequence_start_event_initialize", "location": "/usr/include/yaml.h:601:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "event", "type": { "tag": ":pointer", "type": { "tag": "yaml_event_t" } } }, { "tag": "parameter", "name": "anchor", "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "parameter", "name": "tag", "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "parameter", "name": "implicit", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "style", "type": { "tag": "yaml_sequence_style_t" } }], "return-type": { "tag": ":int" } },
453
+{ "tag": "function", "name": "yaml_sequence_end_event_initialize", "location": "/usr/include/yaml.h:614:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "event", "type": { "tag": ":pointer", "type": { "tag": "yaml_event_t" } } }], "return-type": { "tag": ":int" } },
454
+{ "tag": "function", "name": "yaml_mapping_start_event_initialize", "location": "/usr/include/yaml.h:633:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "event", "type": { "tag": ":pointer", "type": { "tag": "yaml_event_t" } } }, { "tag": "parameter", "name": "anchor", "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "parameter", "name": "tag", "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "parameter", "name": "implicit", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "style", "type": { "tag": "yaml_mapping_style_t" } }], "return-type": { "tag": ":int" } },
455
+{ "tag": "function", "name": "yaml_mapping_end_event_initialize", "location": "/usr/include/yaml.h:646:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "event", "type": { "tag": ":pointer", "type": { "tag": "yaml_event_t" } } }], "return-type": { "tag": ":int" } },
456
+{ "tag": "function", "name": "yaml_event_delete", "location": "/usr/include/yaml.h:655:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "event", "type": { "tag": ":pointer", "type": { "tag": "yaml_event_t" } } }], "return-type": { "tag": ":void" } },
457
+{ "tag": "enum", "name": "yaml_node_type_e", "id": 0, "location": "/usr/include/yaml.h:690:14", "fields": [{ "tag": "field", "name": "YAML_NO_NODE", "value": 0 }, { "tag": "field", "name": "YAML_SCALAR_NODE", "value": 1 }, { "tag": "field", "name": "YAML_SEQUENCE_NODE", "value": 2 }, { "tag": "field", "name": "YAML_MAPPING_NODE", "value": 3 }] },
458
+{ "tag": "typedef", "name": "yaml_node_type_t", "location": "/usr/include/yaml.h:700:3", "type": { "tag": ":enum", "name": "yaml_node_type_e", "id": 0 } },
459
+{ "tag": "struct", "name": "yaml_node_s", "id": 0, "location": "/usr/include/yaml.h:703:16", "bit-size": 0, "bit-alignment": 0, "fields": [] },
460
+{ "tag": "typedef", "name": "yaml_node_t", "location": "/usr/include/yaml.h:703:28", "type": { "tag": ":struct", "name": "yaml_node_s", "id": 0 } },
461
+{ "tag": "typedef", "name": "yaml_node_item_t", "location": "/usr/include/yaml.h:706:13", "type": { "tag": ":int" } },
462
+{ "tag": "struct", "name": "yaml_node_pair_s", "id": 0, "location": "/usr/include/yaml.h:709:16", "bit-size": 64, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "key", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "value", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }] },
463
+{ "tag": "typedef", "name": "yaml_node_pair_t", "location": "/usr/include/yaml.h:714:3", "type": { "tag": ":struct", "name": "yaml_node_pair_s", "id": 0 } },
464
+{ "tag": "struct", "name": "yaml_node_s", "id": 0, "location": "/usr/include/yaml.h:717:8", "bit-size": 768, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "type", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "yaml_node_type_t" } }, { "tag": "field", "name": "tag", "bit-offset": 64, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "field", "name": "data", "bit-offset": 128, "bit-size": 256, "bit-alignment": 64, "type": { "tag": "union", "name": "", "id": 41, "location": "/usr/include/yaml.h:726:5", "bit-size": 256, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "scalar", "bit-offset": 0, "bit-size": 192, "bit-alignment": 64, "type": { "tag": "struct", "name": "", "id": 42, "location": "/usr/include/yaml.h:729:9", "bit-size": 192, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "value", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "field", "name": "length", "bit-offset": 64, "bit-size": 64, "bit-alignment": 64, "type": { "tag": "size_t" } }, { "tag": "field", "name": "style", "bit-offset": 128, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "yaml_scalar_style_t" } }] } }, { "tag": "field", "name": "sequence", "bit-offset": 0, "bit-size": 256, "bit-alignment": 64, "type": { "tag": "struct", "name": "", "id": 43, "location": "/usr/include/yaml.h:739:9", "bit-size": 256, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "items", "bit-offset": 0, "bit-size": 192, "bit-alignment": 64, "type": { "tag": "struct", "name": "", "id": 44, "location": "/usr/include/yaml.h:741:13", "bit-size": 192, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "start", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_node_item_t" } } }, { "tag": "field", "name": "end", "bit-offset": 64, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_node_item_t" } } }, { "tag": "field", "name": "top", "bit-offset": 128, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_node_item_t" } } }] } }, { "tag": "field", "name": "style", "bit-offset": 192, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "yaml_sequence_style_t" } }] } }, { "tag": "field", "name": "mapping", "bit-offset": 0, "bit-size": 256, "bit-alignment": 64, "type": { "tag": "struct", "name": "", "id": 45, "location": "/usr/include/yaml.h:754:9", "bit-size": 256, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "pairs", "bit-offset": 0, "bit-size": 192, "bit-alignment": 64, "type": { "tag": "struct", "name": "", "id": 46, "location": "/usr/include/yaml.h:756:13", "bit-size": 192, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "start", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_node_pair_t" } } }, { "tag": "field", "name": "end", "bit-offset": 64, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_node_pair_t" } } }, { "tag": "field", "name": "top", "bit-offset": 128, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_node_pair_t" } } }] } }, { "tag": "field", "name": "style", "bit-offset": 192, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "yaml_mapping_style_t" } }] } }] } }, { "tag": "field", "name": "start_mark", "bit-offset": 384, "bit-size": 192, "bit-alignment": 64, "type": { "tag": "yaml_mark_t" } }, { "tag": "field", "name": "end_mark", "bit-offset": 576, "bit-size": 192, "bit-alignment": 64, "type": { "tag": "yaml_mark_t" } }] },
465
+{ "tag": "struct", "name": "yaml_document_s", "id": 0, "location": "/usr/include/yaml.h:778:16", "bit-size": 832, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "nodes", "bit-offset": 0, "bit-size": 192, "bit-alignment": 64, "type": { "tag": "struct", "name": "", "id": 47, "location": "/usr/include/yaml.h:781:5", "bit-size": 192, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "start", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_node_t" } } }, { "tag": "field", "name": "end", "bit-offset": 64, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_node_t" } } }, { "tag": "field", "name": "top", "bit-offset": 128, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_node_t" } } }] } }, { "tag": "field", "name": "version_directive", "bit-offset": 192, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_version_directive_t" } } }, { "tag": "field", "name": "tag_directives", "bit-offset": 256, "bit-size": 128, "bit-alignment": 64, "type": { "tag": "struct", "name": "", "id": 48, "location": "/usr/include/yaml.h:794:5", "bit-size": 128, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "start", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_tag_directive_t" } } }, { "tag": "field", "name": "end", "bit-offset": 64, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_tag_directive_t" } } }] } }, { "tag": "field", "name": "start_implicit", "bit-offset": 384, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "end_implicit", "bit-offset": 416, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "start_mark", "bit-offset": 448, "bit-size": 192, "bit-alignment": 64, "type": { "tag": "yaml_mark_t" } }, { "tag": "field", "name": "end_mark", "bit-offset": 640, "bit-size": 192, "bit-alignment": 64, "type": { "tag": "yaml_mark_t" } }] },
466
+{ "tag": "typedef", "name": "yaml_document_t", "location": "/usr/include/yaml.h:811:3", "type": { "tag": ":struct", "name": "yaml_document_s", "id": 0 } },
467
+{ "tag": "function", "name": "yaml_document_initialize", "location": "/usr/include/yaml.h:832:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "document", "type": { "tag": ":pointer", "type": { "tag": "yaml_document_t" } } }, { "tag": "parameter", "name": "version_directive", "type": { "tag": ":pointer", "type": { "tag": "yaml_version_directive_t" } } }, { "tag": "parameter", "name": "tag_directives_start", "type": { "tag": ":pointer", "type": { "tag": "yaml_tag_directive_t" } } }, { "tag": "parameter", "name": "tag_directives_end", "type": { "tag": ":pointer", "type": { "tag": "yaml_tag_directive_t" } } }, { "tag": "parameter", "name": "start_implicit", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "end_implicit", "type": { "tag": ":int" } }], "return-type": { "tag": ":int" } },
468
+{ "tag": "function", "name": "yaml_document_delete", "location": "/usr/include/yaml.h:845:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "document", "type": { "tag": ":pointer", "type": { "tag": "yaml_document_t" } } }], "return-type": { "tag": ":void" } },
469
+{ "tag": "function", "name": "yaml_document_get_node", "location": "/usr/include/yaml.h:860:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "document", "type": { "tag": ":pointer", "type": { "tag": "yaml_document_t" } } }, { "tag": "parameter", "name": "index", "type": { "tag": ":int" } }], "return-type": { "tag": ":pointer", "type": { "tag": "yaml_node_t" } } },
470
+{ "tag": "function", "name": "yaml_document_get_root_node", "location": "/usr/include/yaml.h:879:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "document", "type": { "tag": ":pointer", "type": { "tag": "yaml_document_t" } } }], "return-type": { "tag": ":pointer", "type": { "tag": "yaml_node_t" } } },
471
+{ "tag": "function", "name": "yaml_document_add_scalar", "location": "/usr/include/yaml.h:896:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "document", "type": { "tag": ":pointer", "type": { "tag": "yaml_document_t" } } }, { "tag": "parameter", "name": "tag", "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "parameter", "name": "value", "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "parameter", "name": "length", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "style", "type": { "tag": "yaml_scalar_style_t" } }], "return-type": { "tag": ":int" } },
472
+{ "tag": "function", "name": "yaml_document_add_sequence", "location": "/usr/include/yaml.h:913:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "document", "type": { "tag": ":pointer", "type": { "tag": "yaml_document_t" } } }, { "tag": "parameter", "name": "tag", "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "parameter", "name": "style", "type": { "tag": "yaml_sequence_style_t" } }], "return-type": { "tag": ":int" } },
473
+{ "tag": "function", "name": "yaml_document_add_mapping", "location": "/usr/include/yaml.h:929:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "document", "type": { "tag": ":pointer", "type": { "tag": "yaml_document_t" } } }, { "tag": "parameter", "name": "tag", "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "parameter", "name": "style", "type": { "tag": "yaml_mapping_style_t" } }], "return-type": { "tag": ":int" } },
474
+{ "tag": "function", "name": "yaml_document_append_sequence_item", "location": "/usr/include/yaml.h:943:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "document", "type": { "tag": ":pointer", "type": { "tag": "yaml_document_t" } } }, { "tag": "parameter", "name": "sequence", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "item", "type": { "tag": ":int" } }], "return-type": { "tag": ":int" } },
475
+{ "tag": "function", "name": "yaml_document_append_mapping_pair", "location": "/usr/include/yaml.h:958:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "document", "type": { "tag": ":pointer", "type": { "tag": "yaml_document_t" } } }, { "tag": "parameter", "name": "mapping", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "key", "type": { "tag": ":int" } }, { "tag": "parameter", "name": "value", "type": { "tag": ":int" } }], "return-type": { "tag": ":int" } },
476
+{ "tag": "typedef", "name": "yaml_read_handler_t", "location": "/usr/include/yaml.h:986:13", "type": { "tag": ":function" } },
477
+{ "tag": "struct", "name": "yaml_simple_key_s", "id": 0, "location": "/usr/include/yaml.h:993:16", "bit-size": 320, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "possible", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "required", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "token_number", "bit-offset": 64, "bit-size": 64, "bit-alignment": 64, "type": { "tag": "size_t" } }, { "tag": "field", "name": "mark", "bit-offset": 128, "bit-size": 192, "bit-alignment": 64, "type": { "tag": "yaml_mark_t" } }] },
478
+{ "tag": "typedef", "name": "yaml_simple_key_t", "location": "/usr/include/yaml.h:1005:3", "type": { "tag": ":struct", "name": "yaml_simple_key_s", "id": 0 } },
479
+{ "tag": "enum", "name": "yaml_parser_state_e", "id": 0, "location": "/usr/include/yaml.h:1010:14", "fields": [{ "tag": "field", "name": "YAML_PARSE_STREAM_START_STATE", "value": 0 }, { "tag": "field", "name": "YAML_PARSE_IMPLICIT_DOCUMENT_START_STATE", "value": 1 }, { "tag": "field", "name": "YAML_PARSE_DOCUMENT_START_STATE", "value": 2 }, { "tag": "field", "name": "YAML_PARSE_DOCUMENT_CONTENT_STATE", "value": 3 }, { "tag": "field", "name": "YAML_PARSE_DOCUMENT_END_STATE", "value": 4 }, { "tag": "field", "name": "YAML_PARSE_BLOCK_NODE_STATE", "value": 5 }, { "tag": "field", "name": "YAML_PARSE_BLOCK_NODE_OR_INDENTLESS_SEQUENCE_STATE", "value": 6 }, { "tag": "field", "name": "YAML_PARSE_FLOW_NODE_STATE", "value": 7 }, { "tag": "field", "name": "YAML_PARSE_BLOCK_SEQUENCE_FIRST_ENTRY_STATE", "value": 8 }, { "tag": "field", "name": "YAML_PARSE_BLOCK_SEQUENCE_ENTRY_STATE", "value": 9 }, { "tag": "field", "name": "YAML_PARSE_INDENTLESS_SEQUENCE_ENTRY_STATE", "value": 10 }, { "tag": "field", "name": "YAML_PARSE_BLOCK_MAPPING_FIRST_KEY_STATE", "value": 11 }, { "tag": "field", "name": "YAML_PARSE_BLOCK_MAPPING_KEY_STATE", "value": 12 }, { "tag": "field", "name": "YAML_PARSE_BLOCK_MAPPING_VALUE_STATE", "value": 13 }, { "tag": "field", "name": "YAML_PARSE_FLOW_SEQUENCE_FIRST_ENTRY_STATE", "value": 14 }, { "tag": "field", "name": "YAML_PARSE_FLOW_SEQUENCE_ENTRY_STATE", "value": 15 }, { "tag": "field", "name": "YAML_PARSE_FLOW_SEQUENCE_ENTRY_MAPPING_KEY_STATE", "value": 16 }, { "tag": "field", "name": "YAML_PARSE_FLOW_SEQUENCE_ENTRY_MAPPING_VALUE_STATE", "value": 17 }, { "tag": "field", "name": "YAML_PARSE_FLOW_SEQUENCE_ENTRY_MAPPING_END_STATE", "value": 18 }, { "tag": "field", "name": "YAML_PARSE_FLOW_MAPPING_FIRST_KEY_STATE", "value": 19 }, { "tag": "field", "name": "YAML_PARSE_FLOW_MAPPING_KEY_STATE", "value": 20 }, { "tag": "field", "name": "YAML_PARSE_FLOW_MAPPING_VALUE_STATE", "value": 21 }, { "tag": "field", "name": "YAML_PARSE_FLOW_MAPPING_EMPTY_VALUE_STATE", "value": 22 }, { "tag": "field", "name": "YAML_PARSE_END_STATE", "value": 23 }] },
480
+{ "tag": "typedef", "name": "yaml_parser_state_t", "location": "/usr/include/yaml.h:1059:3", "type": { "tag": ":enum", "name": "yaml_parser_state_e", "id": 0 } },
481
+{ "tag": "struct", "name": "yaml_alias_data_s", "id": 0, "location": "/usr/include/yaml.h:1065:16", "bit-size": 320, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "anchor", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "field", "name": "index", "bit-offset": 64, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "mark", "bit-offset": 128, "bit-size": 192, "bit-alignment": 64, "type": { "tag": "yaml_mark_t" } }] },
482
+{ "tag": "typedef", "name": "yaml_alias_data_t", "location": "/usr/include/yaml.h:1072:3", "type": { "tag": ":struct", "name": "yaml_alias_data_s", "id": 0 } },
483
+{ "tag": "struct", "name": "yaml_parser_s", "id": 0, "location": "/usr/include/yaml.h:1081:16", "bit-size": 3840, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "error", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "yaml_error_type_t" } }, { "tag": "field", "name": "problem", "bit-offset": 64, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "field", "name": "problem_offset", "bit-offset": 128, "bit-size": 64, "bit-alignment": 64, "type": { "tag": "size_t" } }, { "tag": "field", "name": "problem_value", "bit-offset": 192, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "problem_mark", "bit-offset": 256, "bit-size": 192, "bit-alignment": 64, "type": { "tag": "yaml_mark_t" } }, { "tag": "field", "name": "context", "bit-offset": 448, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "field", "name": "context_mark", "bit-offset": 512, "bit-size": 192, "bit-alignment": 64, "type": { "tag": "yaml_mark_t" } }, { "tag": "field", "name": "read_handler", "bit-offset": 704, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":function-pointer" } }, { "tag": "field", "name": "read_handler_data", "bit-offset": 768, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "field", "name": "input", "bit-offset": 832, "bit-size": 192, "bit-alignment": 64, "type": { "tag": "union", "name": "", "id": 49, "location": "/usr/include/yaml.h:1119:5", "bit-size": 192, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "string", "bit-offset": 0, "bit-size": 192, "bit-alignment": 64, "type": { "tag": "struct", "name": "", "id": 50, "location": "/usr/include/yaml.h:1121:9", "bit-size": 192, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "start", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":unsigned-char" } } }, { "tag": "field", "name": "end", "bit-offset": 64, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":unsigned-char" } } }, { "tag": "field", "name": "current", "bit-offset": 128, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":unsigned-char" } } }] } }, { "tag": "field", "name": "file", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }] } }, { "tag": "field", "name": "eof", "bit-offset": 1024, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "buffer", "bit-offset": 1088, "bit-size": 256, "bit-alignment": 64, "type": { "tag": "struct", "name": "", "id": 51, "location": "/usr/include/yaml.h:1138:5", "bit-size": 256, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "start", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "field", "name": "end", "bit-offset": 64, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "field", "name": "pointer", "bit-offset": 128, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "field", "name": "last", "bit-offset": 192, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }] } }, { "tag": "field", "name": "unread", "bit-offset": 1344, "bit-size": 64, "bit-alignment": 64, "type": { "tag": "size_t" } }, { "tag": "field", "name": "raw_buffer", "bit-offset": 1408, "bit-size": 256, "bit-alignment": 64, "type": { "tag": "struct", "name": "", "id": 52, "location": "/usr/include/yaml.h:1153:5", "bit-size": 256, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "start", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":unsigned-char" } } }, { "tag": "field", "name": "end", "bit-offset": 64, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":unsigned-char" } } }, { "tag": "field", "name": "pointer", "bit-offset": 128, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":unsigned-char" } } }, { "tag": "field", "name": "last", "bit-offset": 192, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":unsigned-char" } } }] } }, { "tag": "field", "name": "encoding", "bit-offset": 1664, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "yaml_encoding_t" } }, { "tag": "field", "name": "offset", "bit-offset": 1728, "bit-size": 64, "bit-alignment": 64, "type": { "tag": "size_t" } }, { "tag": "field", "name": "mark", "bit-offset": 1792, "bit-size": 192, "bit-alignment": 64, "type": { "tag": "yaml_mark_t" } }, { "tag": "field", "name": "stream_start_produced", "bit-offset": 1984, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "stream_end_produced", "bit-offset": 2016, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "flow_level", "bit-offset": 2048, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "tokens", "bit-offset": 2112, "bit-size": 256, "bit-alignment": 64, "type": { "tag": "struct", "name": "", "id": 53, "location": "/usr/include/yaml.h:1192:5", "bit-size": 256, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "start", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_token_t" } } }, { "tag": "field", "name": "end", "bit-offset": 64, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_token_t" } } }, { "tag": "field", "name": "head", "bit-offset": 128, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_token_t" } } }, { "tag": "field", "name": "tail", "bit-offset": 192, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_token_t" } } }] } }, { "tag": "field", "name": "tokens_parsed", "bit-offset": 2368, "bit-size": 64, "bit-alignment": 64, "type": { "tag": "size_t" } }, { "tag": "field", "name": "token_available", "bit-offset": 2432, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "indents", "bit-offset": 2496, "bit-size": 192, "bit-alignment": 64, "type": { "tag": "struct", "name": "", "id": 54, "location": "/usr/include/yaml.h:1210:5", "bit-size": 192, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "start", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":int" } } }, { "tag": "field", "name": "end", "bit-offset": 64, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":int" } } }, { "tag": "field", "name": "top", "bit-offset": 128, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":int" } } }] } }, { "tag": "field", "name": "indent", "bit-offset": 2688, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "simple_key_allowed", "bit-offset": 2720, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "simple_keys", "bit-offset": 2752, "bit-size": 192, "bit-alignment": 64, "type": { "tag": "struct", "name": "", "id": 55, "location": "/usr/include/yaml.h:1226:5", "bit-size": 192, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "start", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_simple_key_t" } } }, { "tag": "field", "name": "end", "bit-offset": 64, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_simple_key_t" } } }, { "tag": "field", "name": "top", "bit-offset": 128, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_simple_key_t" } } }] } }, { "tag": "field", "name": "states", "bit-offset": 2944, "bit-size": 192, "bit-alignment": 64, "type": { "tag": "struct", "name": "", "id": 56, "location": "/usr/include/yaml.h:1245:5", "bit-size": 192, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "start", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_parser_state_t" } } }, { "tag": "field", "name": "end", "bit-offset": 64, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_parser_state_t" } } }, { "tag": "field", "name": "top", "bit-offset": 128, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_parser_state_t" } } }] } }, { "tag": "field", "name": "state", "bit-offset": 3136, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "yaml_parser_state_t" } }, { "tag": "field", "name": "marks", "bit-offset": 3200, "bit-size": 192, "bit-alignment": 64, "type": { "tag": "struct", "name": "", "id": 57, "location": "/usr/include/yaml.h:1258:5", "bit-size": 192, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "start", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_mark_t" } } }, { "tag": "field", "name": "end", "bit-offset": 64, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_mark_t" } } }, { "tag": "field", "name": "top", "bit-offset": 128, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_mark_t" } } }] } }, { "tag": "field", "name": "tag_directives", "bit-offset": 3392, "bit-size": 192, "bit-alignment": 64, "type": { "tag": "struct", "name": "", "id": 58, "location": "/usr/include/yaml.h:1268:5", "bit-size": 192, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "start", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_tag_directive_t" } } }, { "tag": "field", "name": "end", "bit-offset": 64, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_tag_directive_t" } } }, { "tag": "field", "name": "top", "bit-offset": 128, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_tag_directive_t" } } }] } }, { "tag": "field", "name": "aliases", "bit-offset": 3584, "bit-size": 192, "bit-alignment": 64, "type": { "tag": "struct", "name": "", "id": 59, "location": "/usr/include/yaml.h:1287:5", "bit-size": 192, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "start", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_alias_data_t" } } }, { "tag": "field", "name": "end", "bit-offset": 64, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_alias_data_t" } } }, { "tag": "field", "name": "top", "bit-offset": 128, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_alias_data_t" } } }] } }, { "tag": "field", "name": "document", "bit-offset": 3776, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_document_t" } } }] },
484
+{ "tag": "typedef", "name": "yaml_parser_t", "location": "/usr/include/yaml.h:1303:3", "type": { "tag": ":struct", "name": "yaml_parser_s", "id": 0 } },
485
+{ "tag": "function", "name": "yaml_parser_initialize", "location": "/usr/include/yaml.h:1317:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "parser", "type": { "tag": ":pointer", "type": { "tag": "yaml_parser_t" } } }], "return-type": { "tag": ":int" } },
486
+{ "tag": "function", "name": "yaml_parser_delete", "location": "/usr/include/yaml.h:1326:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "parser", "type": { "tag": ":pointer", "type": { "tag": "yaml_parser_t" } } }], "return-type": { "tag": ":void" } },
487
+{ "tag": "function", "name": "yaml_parser_set_input_string", "location": "/usr/include/yaml.h:1341:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "parser", "type": { "tag": ":pointer", "type": { "tag": "yaml_parser_t" } } }, { "tag": "parameter", "name": "input", "type": { "tag": ":pointer", "type": { "tag": ":unsigned-char" } } }, { "tag": "parameter", "name": "size", "type": { "tag": "size_t" } }], "return-type": { "tag": ":void" } },
488
+{ "tag": "function", "name": "yaml_parser_set_input_file", "location": "/usr/include/yaml.h:1355:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "parser", "type": { "tag": ":pointer", "type": { "tag": "yaml_parser_t" } } }, { "tag": "parameter", "name": "file", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":void" } },
489
+{ "tag": "function", "name": "yaml_parser_set_input", "location": "/usr/include/yaml.h:1367:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "parser", "type": { "tag": ":pointer", "type": { "tag": "yaml_parser_t" } } }, { "tag": "parameter", "name": "handler", "type": { "tag": ":function-pointer" } }, { "tag": "parameter", "name": "data", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": ":void" } },
490
+{ "tag": "function", "name": "yaml_parser_set_encoding", "location": "/usr/include/yaml.h:1378:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "parser", "type": { "tag": ":pointer", "type": { "tag": "yaml_parser_t" } } }, { "tag": "parameter", "name": "encoding", "type": { "tag": "yaml_encoding_t" } }], "return-type": { "tag": ":void" } },
491
+{ "tag": "function", "name": "yaml_parser_scan", "location": "/usr/include/yaml.h:1402:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "parser", "type": { "tag": ":pointer", "type": { "tag": "yaml_parser_t" } } }, { "tag": "parameter", "name": "token", "type": { "tag": ":pointer", "type": { "tag": "yaml_token_t" } } }], "return-type": { "tag": ":int" } },
492
+{ "tag": "function", "name": "yaml_parser_parse", "location": "/usr/include/yaml.h:1426:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "parser", "type": { "tag": ":pointer", "type": { "tag": "yaml_parser_t" } } }, { "tag": "parameter", "name": "event", "type": { "tag": ":pointer", "type": { "tag": "yaml_event_t" } } }], "return-type": { "tag": ":int" } },
493
+{ "tag": "function", "name": "yaml_parser_load", "location": "/usr/include/yaml.h:1451:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "parser", "type": { "tag": ":pointer", "type": { "tag": "yaml_parser_t" } } }, { "tag": "parameter", "name": "document", "type": { "tag": ":pointer", "type": { "tag": "yaml_document_t" } } }], "return-type": { "tag": ":int" } },
494
+{ "tag": "typedef", "name": "yaml_write_handler_t", "location": "/usr/include/yaml.h:1476:13", "type": { "tag": ":function" } },
495
+{ "tag": "enum", "name": "yaml_emitter_state_e", "id": 0, "location": "/usr/include/yaml.h:1479:14", "fields": [{ "tag": "field", "name": "YAML_EMIT_STREAM_START_STATE", "value": 0 }, { "tag": "field", "name": "YAML_EMIT_FIRST_DOCUMENT_START_STATE", "value": 1 }, { "tag": "field", "name": "YAML_EMIT_DOCUMENT_START_STATE", "value": 2 }, { "tag": "field", "name": "YAML_EMIT_DOCUMENT_CONTENT_STATE", "value": 3 }, { "tag": "field", "name": "YAML_EMIT_DOCUMENT_END_STATE", "value": 4 }, { "tag": "field", "name": "YAML_EMIT_FLOW_SEQUENCE_FIRST_ITEM_STATE", "value": 5 }, { "tag": "field", "name": "YAML_EMIT_FLOW_SEQUENCE_ITEM_STATE", "value": 6 }, { "tag": "field", "name": "YAML_EMIT_FLOW_MAPPING_FIRST_KEY_STATE", "value": 7 }, { "tag": "field", "name": "YAML_EMIT_FLOW_MAPPING_KEY_STATE", "value": 8 }, { "tag": "field", "name": "YAML_EMIT_FLOW_MAPPING_SIMPLE_VALUE_STATE", "value": 9 }, { "tag": "field", "name": "YAML_EMIT_FLOW_MAPPING_VALUE_STATE", "value": 10 }, { "tag": "field", "name": "YAML_EMIT_BLOCK_SEQUENCE_FIRST_ITEM_STATE", "value": 11 }, { "tag": "field", "name": "YAML_EMIT_BLOCK_SEQUENCE_ITEM_STATE", "value": 12 }, { "tag": "field", "name": "YAML_EMIT_BLOCK_MAPPING_FIRST_KEY_STATE", "value": 13 }, { "tag": "field", "name": "YAML_EMIT_BLOCK_MAPPING_KEY_STATE", "value": 14 }, { "tag": "field", "name": "YAML_EMIT_BLOCK_MAPPING_SIMPLE_VALUE_STATE", "value": 15 }, { "tag": "field", "name": "YAML_EMIT_BLOCK_MAPPING_VALUE_STATE", "value": 16 }, { "tag": "field", "name": "YAML_EMIT_END_STATE", "value": 17 }] },
496
+{ "tag": "typedef", "name": "yaml_emitter_state_t", "location": "/usr/include/yaml.h:1516:3", "type": { "tag": ":enum", "name": "yaml_emitter_state_e", "id": 0 } },
497
+{ "tag": "struct", "name": "yaml_emitter_s", "id": 0, "location": "/usr/include/yaml.h:1525:16", "bit-size": 3456, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "error", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "yaml_error_type_t" } }, { "tag": "field", "name": "problem", "bit-offset": 64, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":char" } } }, { "tag": "field", "name": "write_handler", "bit-offset": 128, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":function-pointer" } }, { "tag": "field", "name": "write_handler_data", "bit-offset": 192, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":void" } } }, { "tag": "field", "name": "output", "bit-offset": 256, "bit-size": 192, "bit-alignment": 64, "type": { "tag": "union", "name": "", "id": 60, "location": "/usr/include/yaml.h:1553:5", "bit-size": 192, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "string", "bit-offset": 0, "bit-size": 192, "bit-alignment": 64, "type": { "tag": "struct", "name": "", "id": 61, "location": "/usr/include/yaml.h:1555:9", "bit-size": 192, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "buffer", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":unsigned-char" } } }, { "tag": "field", "name": "size", "bit-offset": 64, "bit-size": 64, "bit-alignment": 64, "type": { "tag": "size_t" } }, { "tag": "field", "name": "size_written", "bit-offset": 128, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "size_t" } } }] } }, { "tag": "field", "name": "file", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }] } }, { "tag": "field", "name": "buffer", "bit-offset": 448, "bit-size": 256, "bit-alignment": 64, "type": { "tag": "struct", "name": "", "id": 62, "location": "/usr/include/yaml.h:1569:5", "bit-size": 256, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "start", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "field", "name": "end", "bit-offset": 64, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "field", "name": "pointer", "bit-offset": 128, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "field", "name": "last", "bit-offset": 192, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }] } }, { "tag": "field", "name": "raw_buffer", "bit-offset": 704, "bit-size": 256, "bit-alignment": 64, "type": { "tag": "struct", "name": "", "id": 63, "location": "/usr/include/yaml.h:1581:5", "bit-size": 256, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "start", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":unsigned-char" } } }, { "tag": "field", "name": "end", "bit-offset": 64, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":unsigned-char" } } }, { "tag": "field", "name": "pointer", "bit-offset": 128, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":unsigned-char" } } }, { "tag": "field", "name": "last", "bit-offset": 192, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":unsigned-char" } } }] } }, { "tag": "field", "name": "encoding", "bit-offset": 960, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "yaml_encoding_t" } }, { "tag": "field", "name": "canonical", "bit-offset": 992, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "best_indent", "bit-offset": 1024, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "best_width", "bit-offset": 1056, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "unicode", "bit-offset": 1088, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "line_break", "bit-offset": 1120, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "yaml_break_t" } }, { "tag": "field", "name": "states", "bit-offset": 1152, "bit-size": 192, "bit-alignment": 64, "type": { "tag": "struct", "name": "", "id": 64, "location": "/usr/include/yaml.h:1616:5", "bit-size": 192, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "start", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_emitter_state_t" } } }, { "tag": "field", "name": "end", "bit-offset": 64, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_emitter_state_t" } } }, { "tag": "field", "name": "top", "bit-offset": 128, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_emitter_state_t" } } }] } }, { "tag": "field", "name": "state", "bit-offset": 1344, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "yaml_emitter_state_t" } }, { "tag": "field", "name": "events", "bit-offset": 1408, "bit-size": 256, "bit-alignment": 64, "type": { "tag": "struct", "name": "", "id": 65, "location": "/usr/include/yaml.h:1629:5", "bit-size": 256, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "start", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_event_t" } } }, { "tag": "field", "name": "end", "bit-offset": 64, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_event_t" } } }, { "tag": "field", "name": "head", "bit-offset": 128, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_event_t" } } }, { "tag": "field", "name": "tail", "bit-offset": 192, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_event_t" } } }] } }, { "tag": "field", "name": "indents", "bit-offset": 1664, "bit-size": 192, "bit-alignment": 64, "type": { "tag": "struct", "name": "", "id": 66, "location": "/usr/include/yaml.h:1641:5", "bit-size": 192, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "start", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":int" } } }, { "tag": "field", "name": "end", "bit-offset": 64, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":int" } } }, { "tag": "field", "name": "top", "bit-offset": 128, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": ":int" } } }] } }, { "tag": "field", "name": "tag_directives", "bit-offset": 1856, "bit-size": 192, "bit-alignment": 64, "type": { "tag": "struct", "name": "", "id": 67, "location": "/usr/include/yaml.h:1651:5", "bit-size": 192, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "start", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_tag_directive_t" } } }, { "tag": "field", "name": "end", "bit-offset": 64, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_tag_directive_t" } } }, { "tag": "field", "name": "top", "bit-offset": 128, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_tag_directive_t" } } }] } }, { "tag": "field", "name": "indent", "bit-offset": 2048, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "flow_level", "bit-offset": 2080, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "root_context", "bit-offset": 2112, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "sequence_context", "bit-offset": 2144, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "mapping_context", "bit-offset": 2176, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "simple_key_context", "bit-offset": 2208, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "line", "bit-offset": 2240, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "column", "bit-offset": 2272, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "whitespace", "bit-offset": 2304, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "indention", "bit-offset": 2336, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "open_ended", "bit-offset": 2368, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "anchor_data", "bit-offset": 2432, "bit-size": 192, "bit-alignment": 64, "type": { "tag": "struct", "name": "", "id": 68, "location": "/usr/include/yaml.h:1687:5", "bit-size": 192, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "anchor", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "field", "name": "anchor_length", "bit-offset": 64, "bit-size": 64, "bit-alignment": 64, "type": { "tag": "size_t" } }, { "tag": "field", "name": "alias", "bit-offset": 128, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }] } }, { "tag": "field", "name": "tag_data", "bit-offset": 2624, "bit-size": 256, "bit-alignment": 64, "type": { "tag": "struct", "name": "", "id": 69, "location": "/usr/include/yaml.h:1697:5", "bit-size": 256, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "handle", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "field", "name": "handle_length", "bit-offset": 64, "bit-size": 64, "bit-alignment": 64, "type": { "tag": "size_t" } }, { "tag": "field", "name": "suffix", "bit-offset": 128, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "field", "name": "suffix_length", "bit-offset": 192, "bit-size": 64, "bit-alignment": 64, "type": { "tag": "size_t" } }] } }, { "tag": "field", "name": "scalar_data", "bit-offset": 2880, "bit-size": 320, "bit-alignment": 64, "type": { "tag": "struct", "name": "", "id": 70, "location": "/usr/include/yaml.h:1709:5", "bit-size": 320, "bit-alignment": 64, "fields": [{ "tag": "field", "name": "value", "bit-offset": 0, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_char_t" } } }, { "tag": "field", "name": "length", "bit-offset": 64, "bit-size": 64, "bit-alignment": 64, "type": { "tag": "size_t" } }, { "tag": "field", "name": "multiline", "bit-offset": 128, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "flow_plain_allowed", "bit-offset": 160, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "block_plain_allowed", "bit-offset": 192, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "single_quoted_allowed", "bit-offset": 224, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "block_allowed", "bit-offset": 256, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "style", "bit-offset": 288, "bit-size": 32, "bit-alignment": 32, "type": { "tag": "yaml_scalar_style_t" } }] } }, { "tag": "field", "name": "opened", "bit-offset": 3200, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "closed", "bit-offset": 3232, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "anchors", "bit-offset": 3264, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "struct", "name": "", "id": 71, "location": "/usr/include/yaml.h:1743:5", "bit-size": 96, "bit-alignment": 32, "fields": [{ "tag": "field", "name": "references", "bit-offset": 0, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "anchor", "bit-offset": 32, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "serialized", "bit-offset": 64, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }] } } }, { "tag": "field", "name": "last_anchor_id", "bit-offset": 3328, "bit-size": 32, "bit-alignment": 32, "type": { "tag": ":int" } }, { "tag": "field", "name": "document", "bit-offset": 3392, "bit-size": 64, "bit-alignment": 64, "type": { "tag": ":pointer", "type": { "tag": "yaml_document_t" } } }] },
498
+{ "tag": "typedef", "name": "yaml_emitter_t", "location": "/usr/include/yaml.h:1762:3", "type": { "tag": ":struct", "name": "yaml_emitter_s", "id": 0 } },
499
+{ "tag": "function", "name": "yaml_emitter_initialize", "location": "/usr/include/yaml.h:1776:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "emitter", "type": { "tag": ":pointer", "type": { "tag": "yaml_emitter_t" } } }], "return-type": { "tag": ":int" } },
500
+{ "tag": "function", "name": "yaml_emitter_delete", "location": "/usr/include/yaml.h:1785:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "emitter", "type": { "tag": ":pointer", "type": { "tag": "yaml_emitter_t" } } }], "return-type": { "tag": ":void" } },
501
+{ "tag": "function", "name": "yaml_emitter_set_output_string", "location": "/usr/include/yaml.h:1803:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "emitter", "type": { "tag": ":pointer", "type": { "tag": "yaml_emitter_t" } } }, { "tag": "parameter", "name": "output", "type": { "tag": ":pointer", "type": { "tag": ":unsigned-char" } } }, { "tag": "parameter", "name": "size", "type": { "tag": "size_t" } }, { "tag": "parameter", "name": "size_written", "type": { "tag": ":pointer", "type": { "tag": "size_t" } } }], "return-type": { "tag": ":void" } },
502
+{ "tag": "function", "name": "yaml_emitter_set_output_file", "location": "/usr/include/yaml.h:1817:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "emitter", "type": { "tag": ":pointer", "type": { "tag": "yaml_emitter_t" } } }, { "tag": "parameter", "name": "file", "type": { "tag": ":pointer", "type": { "tag": "FILE" } } }], "return-type": { "tag": ":void" } },
503
+{ "tag": "function", "name": "yaml_emitter_set_output", "location": "/usr/include/yaml.h:1829:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "emitter", "type": { "tag": ":pointer", "type": { "tag": "yaml_emitter_t" } } }, { "tag": "parameter", "name": "handler", "type": { "tag": ":function-pointer" } }, { "tag": "parameter", "name": "data", "type": { "tag": ":pointer", "type": { "tag": ":void" } } }], "return-type": { "tag": ":void" } },
504
+{ "tag": "function", "name": "yaml_emitter_set_encoding", "location": "/usr/include/yaml.h:1840:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "emitter", "type": { "tag": ":pointer", "type": { "tag": "yaml_emitter_t" } } }, { "tag": "parameter", "name": "encoding", "type": { "tag": "yaml_encoding_t" } }], "return-type": { "tag": ":void" } },
505
+{ "tag": "function", "name": "yaml_emitter_set_canonical", "location": "/usr/include/yaml.h:1851:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "emitter", "type": { "tag": ":pointer", "type": { "tag": "yaml_emitter_t" } } }, { "tag": "parameter", "name": "canonical", "type": { "tag": ":int" } }], "return-type": { "tag": ":void" } },
506
+{ "tag": "function", "name": "yaml_emitter_set_indent", "location": "/usr/include/yaml.h:1861:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "emitter", "type": { "tag": ":pointer", "type": { "tag": "yaml_emitter_t" } } }, { "tag": "parameter", "name": "indent", "type": { "tag": ":int" } }], "return-type": { "tag": ":void" } },
507
+{ "tag": "function", "name": "yaml_emitter_set_width", "location": "/usr/include/yaml.h:1871:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "emitter", "type": { "tag": ":pointer", "type": { "tag": "yaml_emitter_t" } } }, { "tag": "parameter", "name": "width", "type": { "tag": ":int" } }], "return-type": { "tag": ":void" } },
508
+{ "tag": "function", "name": "yaml_emitter_set_unicode", "location": "/usr/include/yaml.h:1881:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "emitter", "type": { "tag": ":pointer", "type": { "tag": "yaml_emitter_t" } } }, { "tag": "parameter", "name": "unicode", "type": { "tag": ":int" } }], "return-type": { "tag": ":void" } },
509
+{ "tag": "function", "name": "yaml_emitter_set_break", "location": "/usr/include/yaml.h:1891:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "emitter", "type": { "tag": ":pointer", "type": { "tag": "yaml_emitter_t" } } }, { "tag": "parameter", "name": "line_break", "type": { "tag": "yaml_break_t" } }], "return-type": { "tag": ":void" } },
510
+{ "tag": "function", "name": "yaml_emitter_emit", "location": "/usr/include/yaml.h:1908:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "emitter", "type": { "tag": ":pointer", "type": { "tag": "yaml_emitter_t" } } }, { "tag": "parameter", "name": "event", "type": { "tag": ":pointer", "type": { "tag": "yaml_event_t" } } }], "return-type": { "tag": ":int" } },
511
+{ "tag": "function", "name": "yaml_emitter_open", "location": "/usr/include/yaml.h:1921:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "emitter", "type": { "tag": ":pointer", "type": { "tag": "yaml_emitter_t" } } }], "return-type": { "tag": ":int" } },
512
+{ "tag": "function", "name": "yaml_emitter_close", "location": "/usr/include/yaml.h:1934:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "emitter", "type": { "tag": ":pointer", "type": { "tag": "yaml_emitter_t" } } }], "return-type": { "tag": ":int" } },
513
+{ "tag": "function", "name": "yaml_emitter_dump", "location": "/usr/include/yaml.h:1951:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "emitter", "type": { "tag": ":pointer", "type": { "tag": "yaml_emitter_t" } } }, { "tag": "parameter", "name": "document", "type": { "tag": ":pointer", "type": { "tag": "yaml_document_t" } } }], "return-type": { "tag": ":int" } },
514
+{ "tag": "function", "name": "yaml_emitter_flush", "location": "/usr/include/yaml.h:1962:1", "variadic": false, "parameters": [{ "tag": "parameter", "name": "emitter", "type": { "tag": ":pointer", "type": { "tag": "yaml_emitter_t" } } }], "return-type": { "tag": ":int" } }
515
+]
0 516
new file mode 100755
... ...
@@ -0,0 +1,179 @@
1
+(defpackage :yaml
2
+  (:use :cl :cffi :split-sequence)
3
+  (:import-from :libyaml
4
+                :yaml-parser-t
5
+                :yaml-parser-t.error
6
+                :yaml-parser-initialize
7
+                :yaml-parser-delete
8
+                :yaml-parser-set-input-string
9
+                :yaml-parser-parse
10
+                :yaml-event-t
11
+                :yaml-event-t.type
12
+                :yaml-event-t.data.scalar.value
13
+                :yaml-event-t.data.scalar.anchor
14
+                :yaml-event-t.data.alias.anchor
15
+                :yaml-event-delete
16
+                ;; Constants
17
+                :+yaml-document-start-event+
18
+                :+yaml-document-end-event+
19
+                :+yaml-stream-start-event+
20
+                :+yaml-stream-end-event+
21
+                :+yaml-scalar-event+
22
+                :+yaml-alias-event+
23
+                :+yaml-sequence-start-event+
24
+                :+yaml-sequence-end-event+
25
+                :+yaml-mapping-start-event+
26
+                :+yaml-mapping-end-event+)
27
+  (:import-from :autowrap
28
+                :alloc)
29
+  (:export :parse
30
+           :emit))
31
+(in-package :yaml)
32
+
33
+(define-foreign-library libyaml
34
+  (:unix "libyaml.so")
35
+  (t (:default "libyaml")))
36
+
37
+(cffi:use-foreign-library libyaml)
38
+
39
+(defmacro with-many-alloc ((&rest bindings) &body body)
40
+  `(let ,(mapcar #'(lambda (bind) `(,(car bind) (alloc ,(cadr bind))))
41
+          bindings)
42
+     (unwind-protect (progn ,@body)
43
+       ,@(mapcar #'(lambda (bind) `(cffi-sys:foreign-free (autowrap:ptr ,(car bind))))
44
+         bindings)
45
+       ,@(mapcar #'(lambda (bind) `(autowrap:invalidate ,(car bind)))
46
+         bindings))))
47
+
48
+(defmacro with-parser (&rest body)
49
+  `(with-many-alloc ((parser 'yaml-parser-t)
50
+                     (event 'yaml-event-t))
51
+    (unwind-protect
52
+      (if (eq (yaml-parser-initialize parser) 1)
53
+          (progn
54
+            ,@body)
55
+          (error "Failed to initialize YAML parser."))
56
+      (yaml-parser-delete parser))))
57
+
58
+(defun group-documents (tokens)
59
+  (split-sequence-if
60
+    #'(lambda (elem)
61
+      (or (eq (token-value elem) +yaml-document-end-event+)
62
+          (eq (token-value elem) +yaml-document-start-event+)))
63
+    tokens))
64
+
65
+(defun clean (documents)
66
+  "I am not a clever man."
67
+  (remove-if
68
+    #'(lambda (doc)
69
+        (or (null doc)
70
+	    (if (and (listp doc) (null (cdr doc)) (typep (car doc) 'token))
71
+		(let ((tok (token-value (car doc))))
72
+		  (or (null tok)
73
+		      (equal tok +yaml-stream-start-event+)
74
+		      (equal tok +yaml-stream-end-event+)))
75
+		nil)))
76
+    documents))
77
+
78
+(defstruct (token (:print-function (lambda (tok stream k)
79
+				     (format stream "~S" (token-value tok)))))
80
+  (anchor :string)
81
+  (value (or :string :fixnum)))
82
+
83
+(defun tokenize (str &optional (len (length str)))
84
+  (with-parser
85
+    (yaml-parser-set-input-string parser str len)
86
+    (loop while (not (eq (yaml-event-t.type event) +yaml-stream-end-event+))
87
+      collecting
88
+      (if (eq (yaml-parser-parse parser event) 0)
89
+          (error "Parsing error: ~a" (yaml-parser-t.error parser))
90
+          (let ((type (yaml-event-t.type event)))
91
+	    (prog1
92
+              (cond
93
+                ((eq type +yaml-scalar-event+)
94
+                  (make-token :value (foreign-string-to-lisp (yaml-event-t.data.scalar.value event))
95
+			      :anchor (foreign-string-to-lisp (yaml-event-t.data.scalar.anchor event))))
96
+                ((eq type +yaml-alias-event+)
97
+                  (make-token :value (foreign-string-to-lisp (yaml-event-t.data.alias.anchor event))
98
+			      :anchor nil))
99
+                (t
100
+                  (make-token :value type :anchor nil)))
101
+              (when (not (eq type +yaml-stream-end-event+))
102
+                    (yaml-event-delete event)))))
103
+      into tokens
104
+      finally (progn
105
+                (yaml-event-delete event)
106
+                (return (clean (group-documents tokens)))))))
107
+
108
+(defmacro with-string-input (str &optional len)
109
+  (let ((str-name (gensym)))
110
+    `(let ((,str-name ,str))
111
+       (with-foreign-string (s ,str-name)
112
+	 (tokenize s (if ,len ,len (length ,str-name)))))))
113
+
114
+(defmacro with-preserved-case (&rest code)
115
+  `(unwind-protect
116
+     (progn
117
+       (setf (readtable-case *readtable*) :preserve)
118
+       ,@code)
119
+     (setf (readtable-case *readtable*) :upcase)))
120
+
121
+(defun extract-type (val)
122
+  (handler-case
123
+    (let ((res
124
+	   (if (position #\Space val)
125
+	       val
126
+	       (with-preserved-case
127
+	         (read-from-string val)))))
128
+      (if (symbolp res)
129
+	  (symbol-name res)
130
+	  res))
131
+    (error () val)))
132
+
133
+(defun parse% (documents)
134
+  (loop for tokens in documents collecting
135
+    (let ((contexts (list nil)))
136
+      (loop for tok in tokens do
137
+        (let ((val (token-value tok)))
138
+	  (cond
139
+	    ((eql val +yaml-sequence-start-event+)
140
+	     (push (list) contexts))
141
+	    ((eql val +yaml-sequence-end-event+)
142
+	     (let ((con (pop contexts)))
143
+	       (setf (first contexts) (append (first contexts) (list con)))))
144
+	    ((eql val +yaml-mapping-start-event+)
145
+	     (push (list) contexts))
146
+	    ((eql val +yaml-mapping-end-event+)
147
+	     (let ((con (pop contexts)))
148
+	       (setf (first contexts)(append (first contexts)
149
+					     (list (alexandria:plist-hash-table con :test #'equal))))))
150
+	    (t
151
+	     (setf (first contexts) (append (first contexts) (list (extract-type val))))))))
152
+    (caar contexts))))
153
+
154
+(defun post-process (documents)
155
+  (if (cdr documents)
156
+      (mapcar #'(lambda (doc) (append (list :doc) doc)) documents)
157
+      (car documents)))
158
+
159
+(defun slurp-stream (stream)
160
+  (let ((seq (make-string (file-length stream))))
161
+    (read-sequence seq stream)
162
+    seq))
163
+
164
+(defun parse (src)
165
+  (typecase src
166
+    (string
167
+      (post-process (parse% (with-string-input src))))
168
+    (pathname
169
+      ;; Path
170
+      (post-process
171
+        (parse%
172
+          (with-string-input
173
+	    (with-open-file (stream src :direction :input :if-does-not-exist :error)
174
+	      (slurp-stream stream))))))
175
+    (t
176
+      (error "Unknown input to yaml:load."))))
177
+
178
+(defun emit (obj)
179
+  "")
0 180
new file mode 100755
... ...
@@ -0,0 +1,8 @@
1
+(defpackage :libyaml)
2
+(in-package :libyaml)
3
+
4
+(autowrap:c-include "/usr/include/yaml.h"
5
+  :exclude-sources ("/usr/include/bits/waitstatus.h"
6
+                    "/usr/include/stdio.h"
7
+                    "/usr/include/libio.h")
8
+  :spec-path '(cl-yaml "spec"))