1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
use crate::libc;
use core::ops::Deref;
use core::ptr::{self, addr_of};

pub(crate) use self::{
    YamlEncodingT::*, YamlEventTypeT::*, YamlNodeTypeT::*,
};
pub use core::primitive::{
    i64 as ptrdiff_t, u64 as size_t, u8 as yaml_char_t,
};

/// The version directive data.
#[derive(Copy, Clone, Debug, Default)]
#[repr(C)]
#[non_exhaustive]
pub struct YamlVersionDirectiveT {
    /// The major version number.
    pub major: libc::c_int,
    /// The minor version number.
    pub minor: libc::c_int,
}

impl YamlVersionDirectiveT {
    /// Constructor for `YamlVersionDirectiveT`.
    pub fn new(major: libc::c_int, minor: libc::c_int) -> Self {
        YamlVersionDirectiveT {
            major,
            minor,
            // Initialize any future fields with their default values
        }
    }
}

/// The tag directive data.
#[derive(Copy, Clone, Debug)]
#[repr(C)]
#[non_exhaustive]
pub struct YamlTagDirectiveT {
    /// The tag handle.
    pub handle: *mut yaml_char_t,
    /// The tag prefix.
    pub prefix: *mut yaml_char_t,
}

/// The stream encoding.
#[derive(Copy, Clone, PartialEq, Eq, PartialOrd, Ord, Hash, Debug)]
#[repr(u32)]
#[non_exhaustive]
pub enum YamlEncodingT {
    /// Let the parser choose the encoding.
    YamlAnyEncoding = 0,
    /// The default UTF-8 encoding.
    YamlUtf8Encoding = 1,
    /// The UTF-16-LE encoding with BOM.
    YamlUtf16leEncoding = 2,
    /// The UTF-16-BE encoding with BOM.
    YamlUtf16beEncoding = 3,
}

/// Line break type.
#[derive(Copy, Clone, PartialEq, Eq, PartialOrd, Ord, Hash, Debug)]
#[repr(u32)]
#[non_exhaustive]
pub enum YamlBreakT {
    /// Let the parser choose the break type.
    YamlAnyBreak = 0,
    /// Use CR for line breaks (Mac style).
    YamlCrBreak = 1,
    /// Use LN for line breaks (Unix style).
    YamlLnBreak = 2,
    /// Use CR LN for line breaks (DOS style).
    YamlCrlnBreak = 3,
}

/// Many bad things could happen with the parser and emitter.
#[derive(Copy, Clone, PartialEq, Eq, PartialOrd, Ord, Hash, Debug)]
#[repr(u32)]
#[non_exhaustive]
pub enum YamlErrorTypeT {
    /// No error.
    YamlNoError = 0,
    /// Cannot allocate or reallocate a block of memory.
    YamlMemoryError = 1,
    /// Cannot read or decode the input stream.
    YamlReaderError = 2,
    /// Cannot scan the input stream.
    YamlScannerError = 3,
    /// Cannot parse the input stream.
    YamlParserError = 4,
    /// Cannot compose a YAML document.
    YamlComposerError = 5,
    /// Cannot write to the output stream.
    YamlWriterError = 6,
    /// Cannot emit a YAML stream.
    YamlEmitterError = 7,
}

impl Default for YamlErrorTypeT {
    fn default() -> Self {
        YamlErrorTypeT::YamlNoError
    }
}

/// The pointer position.
#[derive(Copy, Clone, Debug, Default)]
#[repr(C)]
#[non_exhaustive]
pub struct YamlMarkT {
    /// The position index.
    pub index: size_t,
    /// The position line.
    pub line: size_t,
    /// The position column.
    pub column: size_t,
}

/// Scalar styles.
#[derive(Copy, Clone, PartialEq, Eq, PartialOrd, Ord, Hash, Debug)]
#[repr(u32)]
#[non_exhaustive]
pub enum YamlScalarStyleT {
    /// Let the emitter choose the style.
    YamlAnyScalarStyle = 0,
    /// The plain scalar style.
    YamlPlainScalarStyle = 1,
    /// The single-quoted scalar style.
    YamlSingleQuotedScalarStyle = 2,
    /// The double-quoted scalar style.
    YamlDoubleQuotedScalarStyle = 3,
    /// The literal scalar style.
    YamlLiteralScalarStyle = 4,
    /// The folded scalar style.
    YamlFoldedScalarStyle = 5,
}

/// Sequence styles.
#[derive(Copy, Clone, PartialEq, Eq, PartialOrd, Ord, Hash, Debug)]
#[repr(u32)]
#[non_exhaustive]
pub enum YamlSequenceStyleT {
    /// Let the emitter choose the style.
    YamlAnySequenceStyle = 0,
    /// The block sequence style.
    YamlBlockSequenceStyle = 1,
    /// The flow sequence style.
    YamlFlowSequenceStyle = 2,
}

/// Mapping styles.
#[derive(Copy, Clone, PartialEq, Eq, PartialOrd, Ord, Hash, Debug)]
#[repr(u32)]
#[non_exhaustive]
pub enum YamlMappingStyleT {
    /// Let the emitter choose the style.
    YamlAnyMappingStyle = 0,
    /// The block mapping style.
    YamlBlockMappingStyle = 1,
    /// The flow mapping style.
    YamlFlowMappingStyle = 2,
}

/// The token types.
#[derive(Copy, Clone, PartialEq, Eq, PartialOrd, Ord, Hash, Debug)]
#[repr(u32)]
#[non_exhaustive]
pub enum YamlTokenTypeT {
    /// An empty token.
    YamlNoToken = 0,
    /// A stream-start token.
    YamlStreamStartToken = 1,
    /// A stream-end token.
    YamlStreamEndToken = 2,
    /// A version-directive token.
    YamlVersionDirectiveToken = 3,
    /// A tag-directive token.
    YamlTagDirectiveToken = 4,
    /// A document-start token.
    YamlDocumentStartToken = 5,
    /// A document-end token.
    YamlDocumentEndToken = 6,
    /// A block-sequence-start token.
    YamlBlockSequenceStartToken = 7,
    /// A block-mapping-start token.
    YamlBlockMappingStartToken = 8,
    /// A block-end token.
    YamlBlockEndToken = 9,
    /// A flow-sequence-start token.
    YamlFlowSequenceStartToken = 10,
    /// A flow-sequence-end token.
    YamlFlowSequenceEndToken = 11,
    /// A flow-mapping-start token.
    YamlFlowMappingStartToken = 12,
    /// A flow-mapping-end token.
    YamlFlowMappingEndToken = 13,
    /// A block-entry token.
    YamlBlockEntryToken = 14,
    /// A flow-entry token.
    YamlFlowEntryToken = 15,
    /// A key token.
    YamlKeyToken = 16,
    /// A value token.
    YamlValueToken = 17,
    /// An alias token.
    YamlAliasToken = 18,
    /// An anchor token.
    YamlAnchorToken = 19,
    /// A tag token.
    YamlTagToken = 20,
    /// A scalar token.
    YamlScalarToken = 21,
}

/// The token structure.
#[derive(Copy, Clone, Debug)]
#[repr(C)]
#[non_exhaustive]
pub struct YamlTokenT {
    /// The token type.
    pub type_: YamlTokenTypeT,
    /// The token data.
    pub data: UnnamedYamlTokenTData,
    /// The beginning of the token.
    pub start_mark: YamlMarkT,
    /// The end of the token.
    pub end_mark: YamlMarkT,
}

#[derive(Copy, Clone, Debug, Default)]
#[repr(C)]
/// The data structure for YAML tokens.
pub struct UnnamedYamlTokenTData {
    /// The stream start (for YamlStreamStartToken).
    pub stream_start: UnnamedYamlTokenTdataStreamStart,
    /// The alias (for YamlAliasToken).
    pub alias: UnnamedYamlTokenTdataAlias,
    /// The anchor (for YamlAnchorToken).
    pub anchor: UnnamedYamlTokenTdataAnchor,
    /// The tag (for YamlTagToken).
    pub tag: UnnamedYamlTokenTdataTag,
    /// The scalar value (for YamlScalarToken).
    pub scalar: UnnamedYamlTokenTdataScalar,
    /// The version directive (for YamlVersionDirectiveToken).
    pub version_directive: UnnamedYamlTokenTdataVersionDirective,
    /// The tag directive (for YamlTagDirectiveToken).
    pub tag_directive: UnnamedYamlTokenTdataTagDirective,
}

/// Represents the start of a YAML data stream.
#[derive(Copy, Clone, Debug)]
#[repr(C)]
#[non_exhaustive]
pub struct UnnamedYamlTokenTdataStreamStart {
    /// The stream encoding.
    pub encoding: YamlEncodingT,
}

/// Represents an alias in a YAML document.
#[derive(Copy, Clone, Debug)]
#[repr(C)]
#[non_exhaustive]
pub struct UnnamedYamlTokenTdataAlias {
    /// The alias value.
    pub value: *mut yaml_char_t,
}

/// Represents an anchor in a YAML document.
#[derive(Copy, Clone, Debug)]
#[repr(C)]
#[non_exhaustive]
pub struct UnnamedYamlTokenTdataAnchor {
    /// The anchor value.
    pub value: *mut yaml_char_t,
}

/// Represents a tag in a YAML document.
#[derive(Copy, Clone, Debug)]
#[repr(C)]
#[non_exhaustive]
pub struct UnnamedYamlTokenTdataTag {
    /// The tag handle.
    pub handle: *mut yaml_char_t,
    /// The tag suffix.
    pub suffix: *mut yaml_char_t,
}

/// Represents a scalar value in a YAML document.
#[derive(Copy, Clone, Debug)]
#[repr(C)]
#[non_exhaustive]
pub struct UnnamedYamlTokenTdataScalar {
    /// The scalar value.
    pub value: *mut yaml_char_t,
    /// The length of the scalar value.
    pub length: size_t,
    /// The scalar style.
    pub style: YamlScalarStyleT,
}

/// Represents the version directive in a YAML document.
#[derive(Copy, Clone, Debug, Default)]
#[repr(C)]
#[non_exhaustive]
pub struct UnnamedYamlTokenTdataVersionDirective {
    /// The major version number.
    pub major: libc::c_int,
    /// The minor version number.
    pub minor: libc::c_int,
}

/// Represents the tag directive in a YAML document.
#[derive(Copy, Clone, Debug)]
#[repr(C)]
#[non_exhaustive]
pub struct UnnamedYamlTokenTdataTagDirective {
    /// The tag handle.
    pub handle: *mut yaml_char_t,
    /// The tag prefix.
    pub prefix: *mut yaml_char_t,
}

/// Event types.
#[derive(Copy, Clone, PartialEq, Eq, PartialOrd, Ord, Hash, Debug)]
#[repr(u32)]
#[non_exhaustive]
pub enum YamlEventTypeT {
    /// An empty event.
    YamlNoEvent = 0,
    /// A stream-start event.
    YamlStreamStartEvent = 1,
    /// A stream-end event.
    YamlStreamEndEvent = 2,
    /// A document-start event.
    YamlDocumentStartEvent = 3,
    /// A document-end event.
    YamlDocumentEndEvent = 4,
    /// An alias event.
    YamlAliasEvent = 5,
    /// A scalar event.
    YamlScalarEvent = 6,
    /// A sequence-start event.
    YamlSequenceStartEvent = 7,
    /// A sequence-end event.
    YamlSequenceEndEvent = 8,
    /// A mapping-start event.
    YamlMappingStartEvent = 9,
    /// A mapping-end event.
    YamlMappingEndEvent = 10,
}

/// The event structure.
#[derive(Copy, Clone, Debug)]
#[repr(C)]
#[non_exhaustive]
pub struct YamlEventT {
    /// The event type.
    pub type_: YamlEventTypeT,
    /// The event data.
    pub data: UnnamedYamlEventTData,
    /// The beginning of the event.
    pub start_mark: YamlMarkT,
    /// The end of the event.
    pub end_mark: YamlMarkT,
}

/// Represents the data associated with a YAML event.
#[derive(Copy, Clone, Debug)]
#[repr(C)]
pub struct UnnamedYamlEventTData {
    /// The stream parameters (for YamlStreamStartEvent).
    pub stream_start: UnnamedYamlEventTdataStreamStart,
    /// The document parameters (for YamlDocumentStartEvent).
    pub document_start: UnnamedYamlEventTdataDocumentStart,
    /// The document end parameters (for YamlDocumentEndEvent).
    pub document_end: UnnamedYamlEventTdataDocumentEnd,
    /// The alias parameters (for YamlAliasEvent).
    pub alias: UnnamedYamlEventTdataAlias,
    /// The scalar parameters (for YamlScalarEvent).
    pub scalar: UnnamedYamlEventTdataScalar,
    /// The sequence parameters (for YamlSequenceStartEvent).
    pub sequence_start: UnnamedYamlEventTdataSequenceStart,
    /// The mapping parameters (for YamlMappingStartEvent).
    pub mapping_start: UnnamedYamlEventTdataMappingStart,
}

/// Represents the data associated with the start of a YAML stream.
#[derive(Copy, Clone, Debug)]
#[repr(C)]
#[non_exhaustive]
pub struct UnnamedYamlEventTdataStreamStart {
    /// The document encoding.
    pub encoding: YamlEncodingT,
}

/// Represents the data associated with the start of a YAML document.
#[derive(Copy, Clone, Debug)]
#[repr(C)]
#[non_exhaustive]
pub struct UnnamedYamlEventTdataDocumentStart {
    /// The version directive.
    pub version_directive: *mut YamlVersionDirectiveT,
    /// The list of tag directives.
    pub tag_directives: UnnamedYamlEventTdataDocumentStartTagDirectives,
    /// Is the document indicator implicit?
    pub implicit: bool,
}

/// Represents the list of tag directives at the start of a YAML document.
#[derive(Copy, Clone, Debug)]
#[repr(C)]
#[non_exhaustive]
pub struct UnnamedYamlEventTdataDocumentStartTagDirectives {
    /// The beginning of the tag directives list.
    pub start: *mut YamlTagDirectiveT,
    /// The end of the tag directives list.
    pub end: *mut YamlTagDirectiveT,
}

/// Represents the data associated with the end of a YAML document.
#[derive(Copy, Clone, Debug)]
#[repr(C)]
#[non_exhaustive]
pub struct UnnamedYamlEventTdataDocumentEnd {
    /// Is the document end indicator implicit?
    pub implicit: bool,
}

/// Represents the data associated with a YAML alias event.
#[derive(Copy, Clone, Debug)]
#[repr(C)]
#[non_exhaustive]
pub struct UnnamedYamlEventTdataAlias {
    /// The anchor.
    pub anchor: *mut yaml_char_t,
}

/// Represents the data associated with a YAML scalar event.
#[derive(Copy, Clone, Debug)]
#[repr(C)]
#[non_exhaustive]
pub struct UnnamedYamlEventTdataScalar {
    /// The anchor.
    pub anchor: *mut yaml_char_t,
    /// The tag.
    pub tag: *mut yaml_char_t,
    /// The scalar value.
    pub value: *mut yaml_char_t,
    /// The length of the scalar value.
    pub length: size_t,
    /// Is the tag optional for the plain style?
    pub plain_implicit: bool,
    /// Is the tag optional for any non-plain style?
    pub quoted_implicit: bool,
    /// The scalar style.
    pub style: YamlScalarStyleT,
}

/// Represents the data associated with the start of a YAML sequence.
#[derive(Copy, Clone, Debug)]
#[repr(C)]
#[non_exhaustive]
pub struct UnnamedYamlEventTdataSequenceStart {
    /// The anchor.
    pub anchor: *mut yaml_char_t,
    /// The tag.
    pub tag: *mut yaml_char_t,
    /// Is the tag optional?
    pub implicit: bool,
    /// The sequence style.
    pub style: YamlSequenceStyleT,
}

/// Represents the data associated with the start of a YAML mapping.
#[derive(Copy, Clone, Debug)]
#[repr(C)]
#[non_exhaustive]
pub struct UnnamedYamlEventTdataMappingStart {
    /// The anchor.
    pub anchor: *mut yaml_char_t,
    /// The tag.
    pub tag: *mut yaml_char_t,
    /// Is the tag optional?
    pub implicit: bool,
    /// The mapping style.
    pub style: YamlMappingStyleT,
}

/// Node types.
#[derive(Copy, Clone, PartialEq, Eq, PartialOrd, Ord, Hash, Debug)]
#[repr(u32)]
#[non_exhaustive]
pub enum YamlNodeTypeT {
    /// An empty node.
    YamlNoNode = 0,
    /// A scalar node.
    YamlScalarNode = 1,
    /// A sequence node.
    YamlSequenceNode = 2,
    /// A mapping node.
    YamlMappingNode = 3,
}

/// The node structure.
#[derive(Copy, Clone, Debug)]
#[repr(C)]
#[non_exhaustive]
pub struct YamlNodeT {
    /// The node type.
    pub type_: YamlNodeTypeT,
    /// The node tag.
    pub tag: *mut yaml_char_t,
    /// The node data.
    pub data: UnnamedYamlNodeTData,
    /// The beginning of the node.
    pub start_mark: YamlMarkT,
    /// The end of the node.
    pub end_mark: YamlMarkT,
}

/// Represents the data associated with a YAML node.
#[derive(Copy, Clone, Debug)]
#[repr(C)]
pub struct UnnamedYamlNodeTData {
    /// The scalar parameters (for YamlScalarNode).
    pub scalar: UnnamedYamlNodeTDataScalar,
    /// The sequence parameters (for YamlSequenceNode).
    pub sequence: UnnamedYamlNodeTDataSequence,
    /// The mapping parameters (for YamlMappingNode).
    pub mapping: UnnamedYamlNodeTDataMapping,
}

/// Represents the data associated with a YAML scalar node.
#[derive(Copy, Clone, Debug)]
#[repr(C)]
#[non_exhaustive]
pub struct UnnamedYamlNodeTDataScalar {
    /// The scalar value.
    pub value: *mut yaml_char_t,
    /// The length of the scalar value.
    pub length: size_t,
    /// The scalar style.
    pub style: YamlScalarStyleT,
}

/// Represents an element of a YAML sequence node.
pub type YamlNodeItemT = libc::c_int;

/// Represents the data associated with a YAML sequence node.
#[derive(Copy, Clone, Debug)]
#[repr(C)]
#[non_exhaustive]
pub struct UnnamedYamlNodeTDataSequence {
    /// The stack of sequence items.
    pub items: YamlStackT<YamlNodeItemT>,
    /// The sequence style.
    pub style: YamlSequenceStyleT,
}

/// Represents the data associated with a YAML mapping node.
#[derive(Copy, Clone, Debug)]
#[repr(C)]
#[non_exhaustive]
pub struct UnnamedYamlNodeTDataMapping {
    /// The stack of mapping pairs (key, value).
    pub pairs: YamlStackT<YamlNodePairT>,
    /// The mapping style.
    pub style: YamlMappingStyleT,
}

/// An element of a mapping node.
#[derive(Copy, Clone, Debug)]
#[repr(C)]
#[non_exhaustive]
pub struct YamlNodePairT {
    /// The key of the element.
    pub key: libc::c_int,
    /// The value of the element.
    pub value: libc::c_int,
}

/// The document structure.
#[derive(Clone, Debug)]
#[repr(C)]
#[non_exhaustive]
pub struct YamlDocumentT {
    /// The document nodes.
    pub nodes: YamlStackT<YamlNodeT>,
    /// The version directive.
    pub version_directive: *mut YamlVersionDirectiveT,
    /// The list of tag directives.
    pub tag_directives: UnnamedYamlDocumentTTagDirectives,
    /// Is the document start indicator implicit?
    pub start_implicit: bool,
    /// Is the document end indicator implicit?
    pub end_implicit: bool,
    /// The beginning of the document.
    pub start_mark: YamlMarkT,
    /// The end of the document.
    pub end_mark: YamlMarkT,
}

/// Represents the list of tag directives in a YAML document.
#[derive(Copy, Clone, Debug)]
#[repr(C)]
#[non_exhaustive]
pub struct UnnamedYamlDocumentTTagDirectives {
    /// The beginning of the tag directives list.
    pub start: *mut YamlTagDirectiveT,
    /// The end of the tag directives list.
    pub end: *mut YamlTagDirectiveT,
}

/// The prototype of a read handler.
///
/// The read handler is called when the parser needs to read more bytes from the
/// source. The handler should write not more than `size` bytes to the `buffer`.
/// The number of written bytes should be set to the `length` variable.
///
/// On success, the handler should return 1. If the handler failed, the returned
/// value should be 0. On EOF, the handler should set the `size_read` to 0 and
/// return 1.
pub type YamlReadHandlerT = unsafe fn(
    data: *mut libc::c_void,
    buffer: *mut libc::c_uchar,
    size: size_t,
    size_read: *mut size_t,
) -> libc::c_int;

/// This structure holds information about a potential simple key.
#[derive(Copy, Clone, Debug, Default)]
#[repr(C)]
#[non_exhaustive]
pub struct YamlSimpleKeyT {
    /// Is a simple key possible?
    pub possible: bool,
    /// Is a simple key required?
    pub required: bool,
    /// The number of the token.
    pub token_number: size_t,
    /// The position mark.
    pub mark: YamlMarkT,
}

/// The states of the parser.
#[derive(Copy, Clone, PartialEq, Eq, PartialOrd, Ord, Hash, Debug)]
#[repr(u32)]
#[non_exhaustive]
pub enum YamlParserStateT {
    /// Expect stream-start.
    YamlParseStreamStartState = 0,
    /// Expect the beginning of an implicit document.
    YamlParseImplicitDocumentStartState = 1,
    /// Expect document-start.
    YamlParseDocumentStartState = 2,
    /// Expect the content of a document.
    YamlParseDocumentContentState = 3,
    /// Expect document-end.
    YamlParseDocumentEndState = 4,
    /// Expect a block node.
    YamlParseBlockNodeState = 5,
    /// Expect a block node or indentless sequence.
    YamlParseBlockNodeOrIndentlessSequenceState = 6,
    /// Expect a flow node.
    YamlParseFlowNodeState = 7,
    /// Expect the first entry of a block sequence.
    YamlParseBlockSequenceFirstEntryState = 8,
    /// Expect an entry of a block sequence.
    YamlParseBlockSequenceEntryState = 9,
    /// Expect an entry of an indentless sequence.
    YamlParseIndentlessSequenceEntryState = 10,
    /// Expect the first key of a block mapping.
    YamlParseBlockMappingFirstKeyState = 11,
    /// Expect a block mapping key.
    YamlParseBlockMappingKeyState = 12,
    /// Expect a block mapping value.
    YamlParseBlockMappingValueState = 13,
    /// Expect the first entry of a flow sequence.
    YamlParseFlowSequenceFirstEntryState = 14,
    /// Expect an entry of a flow sequence.
    YamlParseFlowSequenceEntryState = 15,
    /// Expect a key of an ordered mapping.
    YamlParseFlowSequenceEntryMappingKeyState = 16,
    /// Expect a value of an ordered mapping.
    YamlParseFlowSequenceEntryMappingValueState = 17,
    /// Expect the and of an ordered mapping entry.
    YamlParseFlowSequenceEntryMappingEndState = 18,
    /// Expect the first key of a flow mapping.
    YamlParseFlowMappingFirstKeyState = 19,
    /// Expect a key of a flow mapping.
    YamlParseFlowMappingKeyState = 20,
    /// Expect a value of a flow mapping.
    YamlParseFlowMappingValueState = 21,
    /// Expect an empty value of a flow mapping.
    YamlParseFlowMappingEmptyValueState = 22,
    /// Expect nothing.
    YamlParseEndState = 23,
}

/// This structure holds aliases data.
#[derive(Copy, Clone, Debug)]
#[repr(C)]
#[non_exhaustive]
pub struct YamlAliasDataT {
    /// The anchor.
    pub anchor: *mut yaml_char_t,
    /// The node id.
    pub index: libc::c_int,
    /// The anchor mark.
    pub mark: YamlMarkT,
}

/// The parser structure.
///
/// All members are internal. Manage the structure using the `yaml_parser_`
/// family of functions.
#[derive(Clone, Debug)]
#[repr(C)]
#[non_exhaustive]
pub struct YamlParserT {
    /// Error type.
    #[cfg(doc)]
    pub error: YamlErrorTypeT,
    #[cfg(not(doc))]
    pub(crate) error: YamlErrorTypeT,
    /// Error description.
    #[cfg(doc)]
    pub problem: *const libc::c_char,
    #[cfg(not(doc))]
    pub(crate) problem: *const libc::c_char,
    /// The byte about which the problem occurred.
    #[cfg(doc)]
    pub problem_offset: size_t,
    #[cfg(not(doc))]
    pub(crate) problem_offset: size_t,
    /// The problematic value (-1 is none).
    #[cfg(doc)]
    pub problem_value: libc::c_int,
    #[cfg(not(doc))]
    pub(crate) problem_value: libc::c_int,
    /// The problem position.
    #[cfg(doc)]
    pub problem_mark: YamlMarkT,
    #[cfg(not(doc))]
    pub(crate) problem_mark: YamlMarkT,
    /// The error context.
    #[cfg(doc)]
    pub context: *const libc::c_char,
    #[cfg(not(doc))]
    pub(crate) context: *const libc::c_char,
    /// The context position.
    #[cfg(doc)]
    pub context_mark: YamlMarkT,
    #[cfg(not(doc))]
    pub(crate) context_mark: YamlMarkT,
    /// Read handler.
    pub(crate) read_handler: Option<YamlReadHandlerT>,
    /// A pointer for passing to the read handler.
    pub(crate) read_handler_data: *mut libc::c_void,
    /// Standard (string or file) input data.
    pub(crate) input: UnnamedYamlParserTInput,
    /// EOF flag
    pub(crate) eof: bool,
    /// The working buffer.
    pub(crate) buffer: YamlBufferT<yaml_char_t>,
    /// The number of unread characters in the buffer.
    pub(crate) unread: size_t,
    /// The raw buffer.
    pub(crate) raw_buffer: YamlBufferT<libc::c_uchar>,
    /// The input encoding.
    pub(crate) encoding: YamlEncodingT,
    /// The offset of the current position (in bytes).
    pub(crate) offset: size_t,
    /// The mark of the current position.
    pub(crate) mark: YamlMarkT,
    /// Have we started to scan the input stream?
    pub(crate) stream_start_produced: bool,
    /// Have we reached the end of the input stream?
    pub(crate) stream_end_produced: bool,
    /// The number of unclosed '[' and '{' indicators.
    pub(crate) flow_level: libc::c_int,
    /// The tokens queue.
    pub(crate) tokens: YamlQueueT<YamlTokenT>,
    /// The number of tokens fetched from the queue.
    pub(crate) tokens_parsed: size_t,
    /// Does the tokens queue contain a token ready for dequeueing.
    pub(crate) token_available: bool,
    /// The indentation levels stack.
    pub(crate) indents: YamlStackT<libc::c_int>,
    /// The current indentation level.
    pub(crate) indent: libc::c_int,
    /// May a simple key occur at the current position?
    pub(crate) simple_key_allowed: bool,
    /// The stack of simple keys.
    pub(crate) simple_keys: YamlStackT<YamlSimpleKeyT>,
    /// At least this many leading elements of simple_keys have possible=0.
    pub(crate) not_simple_keys: libc::c_int,
    /// The parser states stack.
    pub(crate) states: YamlStackT<YamlParserStateT>,
    /// The current parser state.
    pub(crate) state: YamlParserStateT,
    /// The stack of marks.
    pub(crate) marks: YamlStackT<YamlMarkT>,
    /// The list of TAG directives.
    pub(crate) tag_directives: YamlStackT<YamlTagDirectiveT>,
    /// The alias data.
    pub(crate) aliases: YamlStackT<YamlAliasDataT>,
    /// The currently parsed document.
    pub(crate) document: *mut YamlDocumentT,
}

/// Represents the prefix data associated with a YAML parser.
#[derive(Copy, Clone, Debug)]
#[repr(C)]
#[non_exhaustive]
pub struct YamlParserTPrefix {
    /// The error type.
    pub error: YamlErrorTypeT,
    /// The error description.
    pub problem: *const libc::c_char,
    /// The byte about which the problem occurred.
    pub problem_offset: size_t,
    /// The problematic value (-1 is none).
    pub problem_value: libc::c_int,
    /// The problem position.
    pub problem_mark: YamlMarkT,
    /// The error context.
    pub context: *const libc::c_char,
    /// The context position.
    pub context_mark: YamlMarkT,
}

#[doc(hidden)]
impl Deref for YamlParserT {
    type Target = YamlParserTPrefix;
    fn deref(&self) -> &Self::Target {
        unsafe { &*addr_of!(*self).cast() }
    }
}

#[derive(Copy, Clone, Debug, Default)]
#[repr(C)]
pub(crate) struct UnnamedYamlParserTInput {
    /// String input data.
    pub(crate) string: UnnamedYamlParserTInputString,
}

#[derive(Copy, Clone, Debug)]
#[repr(C)]
pub(crate) struct UnnamedYamlParserTInputString {
    /// The string start pointer.
    pub(crate) start: *const libc::c_uchar,
    /// The string end pointer.
    pub(crate) end: *const libc::c_uchar,
    /// The string current position.
    pub(crate) current: *const libc::c_uchar,
}

/// The prototype of a write handler.
///
/// The write handler is called when the emitter needs to flush the accumulated
/// characters to the output. The handler should write `size` bytes of the
/// `buffer` to the output.
///
/// On success, the handler should return 1. If the handler failed, the returned
/// value should be 0.
pub type YamlWriteHandlerT = unsafe fn(
    data: *mut libc::c_void,
    buffer: *mut libc::c_uchar,
    size: size_t,
) -> libc::c_int;

/// The emitter states.
#[derive(Copy, Clone, PartialEq, Eq, PartialOrd, Ord, Hash, Debug)]
#[repr(u32)]
#[non_exhaustive]
pub enum YamlEmitterStateT {
    /// Expect stream-start.
    YamlEmitStreamStartState = 0,
    /// Expect the first document-start or stream-end.
    YamlEmitFirstDocumentStartState = 1,
    /// Expect document-start or stream-end.
    YamlEmitDocumentStartState = 2,
    /// Expect the content of a document.
    YamlEmitDocumentContentState = 3,
    /// Expect document-end.
    YamlEmitDocumentEndState = 4,
    /// Expect the first item of a flow sequence.
    YamlEmitFlowSequenceFirstItemState = 5,
    /// Expect an item of a flow sequence.
    YamlEmitFlowSequenceItemState = 6,
    /// Expect the first key of a flow mapping.
    YamlEmitFlowMappingFirstKeyState = 7,
    /// Expect a key of a flow mapping.
    YamlEmitFlowMappingKeyState = 8,
    /// Expect a value for a simple key of a flow mapping.
    YamlEmitFlowMappingSimpleValueState = 9,
    /// Expect a value of a flow mapping.
    YamlEmitFlowMappingValueState = 10,
    /// Expect the first item of a block sequence.
    YamlEmitBlockSequenceFirstItemState = 11,
    /// Expect an item of a block sequence.
    YamlEmitBlockSequenceItemState = 12,
    /// Expect the first key of a block mapping.
    YamlEmitBlockMappingFirstKeyState = 13,
    /// Expect the key of a block mapping.
    YamlEmitBlockMappingKeyState = 14,
    /// Expect a value for a simple key of a block mapping.
    YamlEmitBlockMappingSimpleValueState = 15,
    /// Expect a value of a block mapping.
    YamlEmitBlockMappingValueState = 16,
    /// Expect nothing.
    YamlEmitEndState = 17,
}

#[derive(Copy, Clone, Debug)]
#[repr(C)]
pub(crate) struct YamlAnchorsT {
    /// The number of references.
    pub(crate) references: libc::c_int,
    /// The anchor id.
    pub(crate) anchor: libc::c_int,
    /// If the node has been emitted?
    pub(crate) serialized: bool,
}

/// The emitter structure.
///
/// All members are internal. Manage the structure using the `yaml_emitter_`
/// family of functions.
#[derive(Clone, Debug)]
#[repr(C)]
#[non_exhaustive]
pub struct YamlEmitterT {
    /// Error type.
    #[cfg(doc)]
    pub error: YamlErrorTypeT,
    #[cfg(not(doc))]
    pub(crate) error: YamlErrorTypeT,
    /// Error description.
    #[cfg(doc)]
    pub problem: *const libc::c_char,
    #[cfg(not(doc))]
    pub(crate) problem: *const libc::c_char,
    /// Write handler.
    pub write_handler: Option<YamlWriteHandlerT>,
    /// A pointer for passing to the write handler.
    pub(crate) write_handler_data: *mut libc::c_void,
    /// Standard (string or file) output data.
    pub output: UnnamedYamlEmitterTOutput,
    /// The working buffer.
    pub buffer: YamlBufferT<yaml_char_t>,
    /// The raw buffer.
    pub(crate) raw_buffer: YamlBufferT<libc::c_uchar>,
    /// The stream encoding.
    pub(crate) encoding: YamlEncodingT,
    /// If the output is in the canonical style?
    pub(crate) canonical: bool,
    /// The number of indentation spaces.
    pub(crate) best_indent: libc::c_int,
    /// The preferred width of the output lines.
    pub(crate) best_width: libc::c_int,
    /// Allow unescaped non-ASCII characters?
    pub(crate) unicode: bool,
    /// The preferred line break.
    pub(crate) line_break: YamlBreakT,
    /// The stack of states.
    pub(crate) states: YamlStackT<YamlEmitterStateT>,
    /// The current emitter state.
    pub(crate) state: YamlEmitterStateT,
    /// The event queue.
    pub(crate) events: YamlQueueT<YamlEventT>,
    /// The stack of indentation levels.
    pub(crate) indents: YamlStackT<libc::c_int>,
    /// The list of tag directives.
    pub(crate) tag_directives: YamlStackT<YamlTagDirectiveT>,
    /// The current indentation level.
    pub(crate) indent: libc::c_int,
    /// The current flow level.
    pub(crate) flow_level: libc::c_int,
    /// Is it the document root context?
    pub(crate) root_context: bool,
    /// Is it a sequence context?
    pub(crate) sequence_context: bool,
    /// Is it a mapping context?
    pub(crate) mapping_context: bool,
    /// Is it a simple mapping key context?
    pub(crate) simple_key_context: bool,
    /// The current line.
    pub(crate) line: libc::c_int,
    /// The current column.
    pub(crate) column: libc::c_int,
    /// If the last character was a whitespace?
    pub(crate) whitespace: bool,
    /// If the last character was an indentation character (' ', '-', '?', ':')?
    pub(crate) indention: bool,
    /// If an explicit document end is required?
    pub(crate) open_ended: libc::c_int,
    /// Anchor analysis.
    pub(crate) anchor_data: UnnamedYamlEmitterTAnchorData,
    /// Tag analysis.
    pub(crate) tag_data: UnnamedYamlEmitterTTagData,
    /// Scalar analysis.
    pub(crate) scalar_data: UnnamedYamlEmitterTScalarData,
    /// If the stream was already opened?
    pub opened: bool,
    /// If the stream was already closed?
    pub closed: bool,
    /// The information associated with the document nodes.
    pub(crate) anchors: *mut YamlAnchorsT,
    /// The last assigned anchor id.
    pub(crate) last_anchor_id: libc::c_int,
    /// The currently emitted document.
    pub(crate) document: *mut YamlDocumentT,
}

/// Represents the prefix data associated with a YAML emitter.
#[derive(Copy, Clone, Debug)]
#[repr(C)]
#[non_exhaustive]
pub struct YamlEmitterTPrefix {
    /// The error type.
    pub error: YamlErrorTypeT,
    /// The error description.
    pub problem: *const libc::c_char,
}

#[doc(hidden)]
impl Deref for YamlEmitterT {
    type Target = YamlEmitterTPrefix;
    fn deref(&self) -> &Self::Target {
        unsafe { &*addr_of!(*self).cast() }
    }
}

#[derive(Copy, Clone, Debug, Default)]
#[repr(C)]
/// Represents the output data associated with a YAML emitter.
pub struct UnnamedYamlEmitterTOutput {
    /// String output data.
    pub string: UnnamedYamlEmitterTOutputString,
}

#[derive(Copy, Clone, Debug)]
#[repr(C)]
/// Represents the unamed output string data associated with a YAML emitter.
pub struct UnnamedYamlEmitterTOutputString {
    /// The buffer pointer.
    pub buffer: *mut libc::c_uchar,
    /// The buffer size.
    pub size: size_t,
    /// The number of written bytes.
    pub size_written: *mut size_t,
}

#[derive(Copy, Clone, Debug)]
#[repr(C)]
pub(crate) struct UnnamedYamlEmitterTAnchorData {
    /// The anchor value.
    pub(crate) anchor: *mut yaml_char_t,
    /// The anchor length.
    pub(crate) anchor_length: size_t,
    /// Is it an alias?
    pub(crate) alias: bool,
}

#[derive(Copy, Clone, Debug, PartialEq, Eq, PartialOrd, Ord, Hash)]
#[repr(C)]
pub(crate) struct UnnamedYamlEmitterTTagData {
    /// The tag handle.
    pub(crate) handle: *mut yaml_char_t,
    /// The tag handle length.
    pub(crate) handle_length: size_t,
    /// The tag suffix.
    pub(crate) suffix: *mut yaml_char_t,
    /// The tag suffix length.
    pub(crate) suffix_length: size_t,
}

#[derive(Copy, Clone, Debug)]
#[repr(C)]
pub(crate) struct UnnamedYamlEmitterTScalarData {
    /// The scalar value.
    pub(crate) value: *mut yaml_char_t,
    /// The scalar length.
    pub(crate) length: size_t,
    /// Does the scalar contain line breaks?
    pub(crate) multiline: bool,
    /// Can the scalar be expressed in the flow plain style?
    pub(crate) flow_plain_allowed: bool,
    /// Can the scalar be expressed in the block plain style?
    pub(crate) block_plain_allowed: bool,
    /// Can the scalar be expressed in the single quoted style?
    pub(crate) single_quoted_allowed: bool,
    /// Can the scalar be expressed in the literal or folded styles?
    pub(crate) block_allowed: bool,
    /// The output style.
    pub(crate) style: YamlScalarStyleT,
}

#[derive(Copy, Clone, Debug)]
#[repr(C)]
pub(crate) struct YamlStringT {
    pub(crate) start: *mut yaml_char_t,
    pub(crate) end: *mut yaml_char_t,
    pub(crate) pointer: *mut yaml_char_t,
}

pub(crate) const NULL_STRING: YamlStringT = YamlStringT {
    start: ptr::null_mut::<yaml_char_t>(),
    end: ptr::null_mut::<yaml_char_t>(),
    pointer: ptr::null_mut::<yaml_char_t>(),
};

#[derive(Copy, Clone, Debug)]
#[repr(C)]
/// Represents the data associated with a YAML token.
pub struct YamlBufferT<T> {
    /// The beginning of the buffer.
    pub start: *mut T,
    /// The end of the buffer.
    pub end: *mut T,
    /// The current position of the buffer.
    pub pointer: *mut T,
    /// The last filled position of the buffer.
    pub last: *mut T,
}

impl<T> YamlBufferT<T> {
    /// Is the buffer empty?
    pub(crate) fn is_empty(&self) -> bool {
        self.pointer == self.last
    }

    /// Advances the buffer by one character.
    pub(crate) fn next(&mut self) {
        if !self.is_empty() {
            unsafe {
                self.pointer = self.pointer.add(1);
            }
        }
    }
}

impl<T> Default for YamlBufferT<T> {
    fn default() -> Self {
        YamlBufferT {
            start: ptr::null_mut(),
            end: ptr::null_mut(),
            pointer: ptr::null_mut(),
            last: ptr::null_mut(),
        }
    }
}

/// The beginning of the stack.
#[derive(Debug)]
#[repr(C)]
pub struct YamlStackT<T> {
    /// The beginning of the stack.
    pub start: *mut T,
    /// The end of the stack.
    pub end: *mut T,
    /// The top of the stack.
    pub top: *mut T,
}

impl<T> Copy for YamlStackT<T> {}
impl<T> Clone for YamlStackT<T> {
    fn clone(&self) -> Self {
        *self
    }
}

/// The beginning of the queue.
#[derive(Debug)]
#[repr(C)]
pub(crate) struct YamlQueueT<T> {
    /// The beginning of the queue.
    pub(crate) start: *mut T,
    /// The end of the queue.
    pub(crate) end: *mut T,
    /// The head of the queue.
    pub(crate) head: *mut T,
    /// The tail of the queue.
    pub(crate) tail: *mut T,
}

impl<T> Copy for YamlQueueT<T> {}
impl<T> Clone for YamlQueueT<T> {
    fn clone(&self) -> Self {
        *self
    }
}

impl<T: Default> Default for YamlQueueT<T> {
    fn default() -> Self {
        YamlQueueT {
            start: ptr::null_mut(),
            end: ptr::null_mut(),
            head: ptr::null_mut(),
            tail: ptr::null_mut(),
        }
    }
}

impl Default for YamlStringT {
    fn default() -> Self {
        YamlStringT {
            start: ptr::null_mut(),
            end: ptr::null_mut(),
            pointer: ptr::null_mut(),
        }
    }
}

impl Default for UnnamedYamlEmitterTScalarData {
    fn default() -> Self {
        UnnamedYamlEmitterTScalarData {
            value: ptr::null_mut(),
            length: 0,
            multiline: false,
            flow_plain_allowed: false,
            block_plain_allowed: false,
            single_quoted_allowed: false,
            block_allowed: false,
            style: YamlScalarStyleT::YamlAnyScalarStyle,
        }
    }
}

impl Default for UnnamedYamlEmitterTTagData {
    fn default() -> Self {
        UnnamedYamlEmitterTTagData {
            handle: ptr::null_mut(),
            handle_length: 0,
            suffix: ptr::null_mut(),
            suffix_length: 0,
        }
    }
}

impl Default for UnnamedYamlEmitterTAnchorData {
    fn default() -> Self {
        UnnamedYamlEmitterTAnchorData {
            anchor: ptr::null_mut(),
            anchor_length: 0,
            alias: false,
        }
    }
}

impl Default for UnnamedYamlEmitterTOutputString {
    fn default() -> Self {
        UnnamedYamlEmitterTOutputString {
            buffer: ptr::null_mut(),
            size: 0,
            size_written: ptr::null_mut(),
        }
    }
}

impl Default for UnnamedYamlParserTInputString {
    fn default() -> Self {
        UnnamedYamlParserTInputString {
            start: ptr::null(),
            end: ptr::null(),
            current: ptr::null(),
        }
    }
}

impl Default for UnnamedYamlDocumentTTagDirectives {
    fn default() -> Self {
        UnnamedYamlDocumentTTagDirectives {
            start: ptr::null_mut(),
            end: ptr::null_mut(),
        }
    }
}

impl Default for YamlEncodingT {
    fn default() -> Self {
        YamlAnyEncoding
    }
}

impl Default for YamlParserStateT {
    fn default() -> Self {
        YamlParserStateT::YamlParseStreamStartState
    }
}

impl Default for YamlScalarStyleT {
    fn default() -> Self {
        YamlScalarStyleT::YamlAnyScalarStyle
    }
}

impl Default for YamlTokenT {
    fn default() -> Self {
        YamlTokenT {
            type_: YamlTokenTypeT::YamlNoToken,
            data: UnnamedYamlTokenTData::default(),
            start_mark: YamlMarkT::default(),
            end_mark: YamlMarkT::default(),
        }
    }
}

impl Default for UnnamedYamlTokenTdataStreamStart {
    fn default() -> Self {
        UnnamedYamlTokenTdataStreamStart {
            encoding: YamlAnyEncoding,
        }
    }
}

impl Default for UnnamedYamlTokenTdataAlias {
    fn default() -> Self {
        UnnamedYamlTokenTdataAlias {
            value: ptr::null_mut(),
        }
    }
}

impl Default for UnnamedYamlTokenTdataAnchor {
    fn default() -> Self {
        UnnamedYamlTokenTdataAnchor {
            value: ptr::null_mut(),
        }
    }
}

impl Default for UnnamedYamlTokenTdataTag {
    fn default() -> Self {
        UnnamedYamlTokenTdataTag {
            handle: ptr::null_mut(),
            suffix: ptr::null_mut(),
        }
    }
}

impl Default for UnnamedYamlTokenTdataScalar {
    fn default() -> Self {
        UnnamedYamlTokenTdataScalar {
            value: ptr::null_mut(),
            length: 0,
            style: YamlScalarStyleT::YamlAnyScalarStyle,
        }
    }
}

impl Default for UnnamedYamlTokenTdataTagDirective {
    fn default() -> Self {
        UnnamedYamlTokenTdataTagDirective {
            handle: ptr::null_mut(),
            prefix: ptr::null_mut(),
        }
    }
}

impl Default for YamlStackT<YamlSimpleKeyT> {
    fn default() -> Self {
        YamlStackT {
            start: ptr::null_mut(),
            end: ptr::null_mut(),
            top: ptr::null_mut(),
        }
    }
}

impl Default for YamlStackT<YamlTagDirectiveT> {
    fn default() -> Self {
        YamlStackT {
            start: ptr::null_mut(),
            end: ptr::null_mut(),
            top: ptr::null_mut(),
        }
    }
}

impl Default for YamlStackT<YamlAliasDataT> {
    fn default() -> Self {
        YamlStackT {
            start: ptr::null_mut(),
            end: ptr::null_mut(),
            top: ptr::null_mut(),
        }
    }
}

impl Default for YamlTagDirectiveT {
    fn default() -> Self {
        YamlTagDirectiveT {
            handle: ptr::null_mut(),
            prefix: ptr::null_mut(),
        }
    }
}

impl Default for YamlBreakT {
    fn default() -> Self {
        YamlBreakT::YamlAnyBreak
    }
}

impl Default for YamlSequenceStyleT {
    fn default() -> Self {
        YamlSequenceStyleT::YamlAnySequenceStyle
    }
}

impl Default for YamlMappingStyleT {
    fn default() -> Self {
        YamlMappingStyleT::YamlAnyMappingStyle
    }
}

impl Default for YamlEventTypeT {
    fn default() -> Self {
        YamlNoEvent
    }
}

impl Default for YamlAliasDataT {
    fn default() -> Self {
        YamlAliasDataT {
            anchor: ptr::null_mut(),
            index: 0,
            mark: YamlMarkT::default(),
        }
    }
}

impl Default for YamlNodeTypeT {
    fn default() -> Self {
        YamlNoNode
    }
}

impl Default for YamlEmitterStateT {
    fn default() -> Self {
        YamlEmitterStateT::YamlEmitStreamStartState
    }
}

impl YamlDocumentT {
    /// Cleans up resources used by `YamlDocumentT`. This includes deallocating memory for
    /// version directives, tag directives, and nodes if they were allocated dynamically.
    ///
    /// # Safety
    ///
    /// This function is `unsafe` because it assumes that all pointers (e.g., version_directive,
    /// tag directives, and nodes) are either valid or null. It will attempt to free allocated
    /// memory, so the caller must ensure that:
    ///
    /// 1. The struct has been initialized properly.
    /// 2. No other code retains pointers to the data being freed here.
    /// 3. This method is not called concurrently with any operations that read from or write to
    ///    the pointed-to data.
    /// 4. The memory management strategy (allocation and deallocation) is correctly paired.
    ///    For instance, if `libc::malloc` is used to allocate, `libc::free` should be used to deallocate.
    ///
    pub unsafe fn cleanup(&mut self) {
        // Assuming `version_directive` and `tag_directives.start/end` are pointers that need to be freed.
        if !self.version_directive.is_null() {
            // Free version_directive if your logic requires it, e.g.,
            // libc::free(self.version_directive as *mut libc::c_void);
            self.version_directive = ptr::null_mut();
        }

        // Example of cleaning up tag directives if they were allocated dynamically
        let mut tag_directive = self.tag_directives.start;
        while tag_directive < self.tag_directives.end {
            // Free each tag directive if necessary
            // libc::free((*tag_directive).handle as *mut libc::c_void);
            // libc::free((*tag_directive).prefix as *mut libc::c_void);
            tag_directive = tag_directive.offset(1);
        }

        // Assuming `nodes` needs to be cleaned up
        let mut node = self.nodes.start;
        while node < self.nodes.top {
            // Free each node if necessary
            // libc::free((*node).tag as *mut libc::c_void);
            node = node.offset(1);
        }

        // Free the nodes array itself if it was dynamically allocated
        // libc::free(self.nodes.start as *mut libc::c_void);
        self.nodes.start = ptr::null_mut();
        self.nodes.end = ptr::null_mut();
        self.nodes.top = ptr::null_mut();
    }
}

impl Default for YamlDocumentT {
    fn default() -> Self {
        YamlDocumentT {
            nodes: YamlStackT {
                start: ptr::null_mut(),
                end: ptr::null_mut(),
                top: ptr::null_mut(),
            },
            version_directive: ptr::null_mut(),
            tag_directives: UnnamedYamlDocumentTTagDirectives::default(
            ),
            start_implicit: false,
            end_implicit: false,
            start_mark: YamlMarkT::default(),
            end_mark: YamlMarkT::default(),
        }
    }
}