simplicity-sys 0.6.2

FFI bindings to libsimplicity
Documentation
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
/* This file has been automatically generated. */

use crate::ffi::c_void;
use crate::{CElementsTxEnv, CFrameItem};

extern "C" {
    #[link_name = "rustsimplicity_0_6_c_add_16"]
    pub fn add_16(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_add_32"]
    pub fn add_32(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_add_64"]
    pub fn add_64(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_add_8"]
    pub fn add_8(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_all_16"]
    pub fn all_16(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_all_32"]
    pub fn all_32(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_all_64"]
    pub fn all_64(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_all_8"]
    pub fn all_8(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_and_1"]
    pub fn and_1(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_and_16"]
    pub fn and_16(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_and_32"]
    pub fn and_32(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_and_64"]
    pub fn and_64(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_and_8"]
    pub fn and_8(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_annex_hash"]
    pub fn annex_hash(dst: *mut CFrameItem, src: *const CFrameItem, env: *const CElementsTxEnv) -> bool;
    #[link_name = "rustsimplicity_0_6_c_asset_amount_hash"]
    pub fn asset_amount_hash(dst: *mut CFrameItem, src: *const CFrameItem, env: *const CElementsTxEnv) -> bool;
    #[link_name = "rustsimplicity_0_6_c_bip_0340_verify"]
    pub fn bip_0340_verify(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_build_tapbranch"]
    pub fn build_tapbranch(dst: *mut CFrameItem, src: *const CFrameItem, env: *const CElementsTxEnv) -> bool;
    #[link_name = "rustsimplicity_0_6_c_build_tapleaf_simplicity"]
    pub fn build_tapleaf_simplicity(dst: *mut CFrameItem, src: *const CFrameItem, env: *const CElementsTxEnv) -> bool;
    #[link_name = "rustsimplicity_0_6_c_build_taptweak"]
    pub fn build_taptweak(dst: *mut CFrameItem, src: *const CFrameItem, env: *const CElementsTxEnv) -> bool;
    #[link_name = "rustsimplicity_0_6_c_calculate_asset"]
    pub fn calculate_asset(dst: *mut CFrameItem, src: *const CFrameItem, env: *const CElementsTxEnv) -> bool;
    #[link_name = "rustsimplicity_0_6_c_calculate_confidential_token"]
    pub fn calculate_confidential_token(dst: *mut CFrameItem, src: *const CFrameItem, env: *const CElementsTxEnv) -> bool;
    #[link_name = "rustsimplicity_0_6_c_calculate_explicit_token"]
    pub fn calculate_explicit_token(dst: *mut CFrameItem, src: *const CFrameItem, env: *const CElementsTxEnv) -> bool;
    #[link_name = "rustsimplicity_0_6_c_calculate_issuance_entropy"]
    pub fn calculate_issuance_entropy(dst: *mut CFrameItem, src: *const CFrameItem, env: *const CElementsTxEnv) -> bool;
    #[link_name = "rustsimplicity_0_6_c_ch_1"]
    pub fn ch_1(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_ch_16"]
    pub fn ch_16(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_ch_32"]
    pub fn ch_32(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_ch_64"]
    pub fn ch_64(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_ch_8"]
    pub fn ch_8(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_check_lock_distance"]
    pub fn check_lock_distance(dst: *mut CFrameItem, src: *const CFrameItem, env: *const CElementsTxEnv) -> bool;
    #[link_name = "rustsimplicity_0_6_c_check_lock_duration"]
    pub fn check_lock_duration(dst: *mut CFrameItem, src: *const CFrameItem, env: *const CElementsTxEnv) -> bool;
    #[link_name = "rustsimplicity_0_6_c_check_lock_height"]
    pub fn check_lock_height(dst: *mut CFrameItem, src: *const CFrameItem, env: *const CElementsTxEnv) -> bool;
    #[link_name = "rustsimplicity_0_6_c_check_lock_time"]
    pub fn check_lock_time(dst: *mut CFrameItem, src: *const CFrameItem, env: *const CElementsTxEnv) -> bool;
    #[link_name = "rustsimplicity_0_6_c_check_sig_verify"]
    pub fn check_sig_verify(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_complement_1"]
    pub fn complement_1(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_complement_16"]
    pub fn complement_16(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_complement_32"]
    pub fn complement_32(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_complement_64"]
    pub fn complement_64(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_complement_8"]
    pub fn complement_8(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_current_amount"]
    pub fn current_amount(dst: *mut CFrameItem, src: *const CFrameItem, env: *const CElementsTxEnv) -> bool;
    #[link_name = "rustsimplicity_0_6_c_current_annex_hash"]
    pub fn current_annex_hash(dst: *mut CFrameItem, src: *const CFrameItem, env: *const CElementsTxEnv) -> bool;
    #[link_name = "rustsimplicity_0_6_c_current_asset"]
    pub fn current_asset(dst: *mut CFrameItem, src: *const CFrameItem, env: *const CElementsTxEnv) -> bool;
    #[link_name = "rustsimplicity_0_6_c_current_index"]
    pub fn current_index(dst: *mut CFrameItem, src: *const CFrameItem, env: *const CElementsTxEnv) -> bool;
    #[link_name = "rustsimplicity_0_6_c_current_issuance_asset_amount"]
    pub fn current_issuance_asset_amount(dst: *mut CFrameItem, src: *const CFrameItem, env: *const CElementsTxEnv) -> bool;
    #[link_name = "rustsimplicity_0_6_c_current_issuance_asset_proof"]
    pub fn current_issuance_asset_proof(dst: *mut CFrameItem, src: *const CFrameItem, env: *const CElementsTxEnv) -> bool;
    #[link_name = "rustsimplicity_0_6_c_current_issuance_token_amount"]
    pub fn current_issuance_token_amount(dst: *mut CFrameItem, src: *const CFrameItem, env: *const CElementsTxEnv) -> bool;
    #[link_name = "rustsimplicity_0_6_c_current_issuance_token_proof"]
    pub fn current_issuance_token_proof(dst: *mut CFrameItem, src: *const CFrameItem, env: *const CElementsTxEnv) -> bool;
    #[link_name = "rustsimplicity_0_6_c_current_new_issuance_contract"]
    pub fn current_new_issuance_contract(dst: *mut CFrameItem, src: *const CFrameItem, env: *const CElementsTxEnv) -> bool;
    #[link_name = "rustsimplicity_0_6_c_current_pegin"]
    pub fn current_pegin(dst: *mut CFrameItem, src: *const CFrameItem, env: *const CElementsTxEnv) -> bool;
    #[link_name = "rustsimplicity_0_6_c_current_prev_outpoint"]
    pub fn current_prev_outpoint(dst: *mut CFrameItem, src: *const CFrameItem, env: *const CElementsTxEnv) -> bool;
    #[link_name = "rustsimplicity_0_6_c_current_reissuance_blinding"]
    pub fn current_reissuance_blinding(dst: *mut CFrameItem, src: *const CFrameItem, env: *const CElementsTxEnv) -> bool;
    #[link_name = "rustsimplicity_0_6_c_current_reissuance_entropy"]
    pub fn current_reissuance_entropy(dst: *mut CFrameItem, src: *const CFrameItem, env: *const CElementsTxEnv) -> bool;
    #[link_name = "rustsimplicity_0_6_c_current_script_hash"]
    pub fn current_script_hash(dst: *mut CFrameItem, src: *const CFrameItem, env: *const CElementsTxEnv) -> bool;
    #[link_name = "rustsimplicity_0_6_c_current_script_sig_hash"]
    pub fn current_script_sig_hash(dst: *mut CFrameItem, src: *const CFrameItem, env: *const CElementsTxEnv) -> bool;
    #[link_name = "rustsimplicity_0_6_c_current_sequence"]
    pub fn current_sequence(dst: *mut CFrameItem, src: *const CFrameItem, env: *const CElementsTxEnv) -> bool;
    #[link_name = "rustsimplicity_0_6_c_decompress"]
    pub fn decompress(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_decrement_16"]
    pub fn decrement_16(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_decrement_32"]
    pub fn decrement_32(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_decrement_64"]
    pub fn decrement_64(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_decrement_8"]
    pub fn decrement_8(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_div_mod_128_64"]
    pub fn div_mod_128_64(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_div_mod_16"]
    pub fn div_mod_16(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_div_mod_32"]
    pub fn div_mod_32(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_div_mod_64"]
    pub fn div_mod_64(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_div_mod_8"]
    pub fn div_mod_8(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_divide_16"]
    pub fn divide_16(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_divide_32"]
    pub fn divide_32(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_divide_64"]
    pub fn divide_64(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_divide_8"]
    pub fn divide_8(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_divides_16"]
    pub fn divides_16(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_divides_32"]
    pub fn divides_32(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_divides_64"]
    pub fn divides_64(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_divides_8"]
    pub fn divides_8(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_eq_1"]
    pub fn eq_1(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_eq_16"]
    pub fn eq_16(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_eq_256"]
    pub fn eq_256(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_eq_32"]
    pub fn eq_32(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_eq_64"]
    pub fn eq_64(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_eq_8"]
    pub fn eq_8(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_fe_add"]
    pub fn fe_add(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_fe_invert"]
    pub fn fe_invert(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_fe_is_odd"]
    pub fn fe_is_odd(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_fe_is_zero"]
    pub fn fe_is_zero(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_fe_multiply"]
    pub fn fe_multiply(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_fe_multiply_beta"]
    pub fn fe_multiply_beta(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_fe_negate"]
    pub fn fe_negate(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_fe_normalize"]
    pub fn fe_normalize(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_fe_square"]
    pub fn fe_square(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_fe_square_root"]
    pub fn fe_square_root(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_full_add_16"]
    pub fn full_add_16(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_full_add_32"]
    pub fn full_add_32(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_full_add_64"]
    pub fn full_add_64(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_full_add_8"]
    pub fn full_add_8(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_full_decrement_16"]
    pub fn full_decrement_16(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_full_decrement_32"]
    pub fn full_decrement_32(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_full_decrement_64"]
    pub fn full_decrement_64(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_full_decrement_8"]
    pub fn full_decrement_8(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_full_increment_16"]
    pub fn full_increment_16(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_full_increment_32"]
    pub fn full_increment_32(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_full_increment_64"]
    pub fn full_increment_64(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_full_increment_8"]
    pub fn full_increment_8(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_full_left_shift_16_1"]
    pub fn full_left_shift_16_1(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_full_left_shift_16_2"]
    pub fn full_left_shift_16_2(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_full_left_shift_16_4"]
    pub fn full_left_shift_16_4(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_full_left_shift_16_8"]
    pub fn full_left_shift_16_8(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_full_left_shift_32_1"]
    pub fn full_left_shift_32_1(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_full_left_shift_32_16"]
    pub fn full_left_shift_32_16(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_full_left_shift_32_2"]
    pub fn full_left_shift_32_2(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_full_left_shift_32_4"]
    pub fn full_left_shift_32_4(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_full_left_shift_32_8"]
    pub fn full_left_shift_32_8(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_full_left_shift_64_1"]
    pub fn full_left_shift_64_1(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_full_left_shift_64_16"]
    pub fn full_left_shift_64_16(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_full_left_shift_64_2"]
    pub fn full_left_shift_64_2(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_full_left_shift_64_32"]
    pub fn full_left_shift_64_32(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_full_left_shift_64_4"]
    pub fn full_left_shift_64_4(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_full_left_shift_64_8"]
    pub fn full_left_shift_64_8(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_full_left_shift_8_1"]
    pub fn full_left_shift_8_1(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_full_left_shift_8_2"]
    pub fn full_left_shift_8_2(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_full_left_shift_8_4"]
    pub fn full_left_shift_8_4(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_full_multiply_16"]
    pub fn full_multiply_16(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_full_multiply_32"]
    pub fn full_multiply_32(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_full_multiply_64"]
    pub fn full_multiply_64(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_full_multiply_8"]
    pub fn full_multiply_8(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_full_right_shift_16_1"]
    pub fn full_right_shift_16_1(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_full_right_shift_16_2"]
    pub fn full_right_shift_16_2(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_full_right_shift_16_4"]
    pub fn full_right_shift_16_4(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_full_right_shift_16_8"]
    pub fn full_right_shift_16_8(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_full_right_shift_32_1"]
    pub fn full_right_shift_32_1(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_full_right_shift_32_16"]
    pub fn full_right_shift_32_16(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_full_right_shift_32_2"]
    pub fn full_right_shift_32_2(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_full_right_shift_32_4"]
    pub fn full_right_shift_32_4(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_full_right_shift_32_8"]
    pub fn full_right_shift_32_8(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_full_right_shift_64_1"]
    pub fn full_right_shift_64_1(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_full_right_shift_64_16"]
    pub fn full_right_shift_64_16(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_full_right_shift_64_2"]
    pub fn full_right_shift_64_2(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_full_right_shift_64_32"]
    pub fn full_right_shift_64_32(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_full_right_shift_64_4"]
    pub fn full_right_shift_64_4(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_full_right_shift_64_8"]
    pub fn full_right_shift_64_8(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_full_right_shift_8_1"]
    pub fn full_right_shift_8_1(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_full_right_shift_8_2"]
    pub fn full_right_shift_8_2(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_full_right_shift_8_4"]
    pub fn full_right_shift_8_4(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_full_subtract_16"]
    pub fn full_subtract_16(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_full_subtract_32"]
    pub fn full_subtract_32(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_full_subtract_64"]
    pub fn full_subtract_64(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_full_subtract_8"]
    pub fn full_subtract_8(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_ge_is_on_curve"]
    pub fn ge_is_on_curve(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_ge_negate"]
    pub fn ge_negate(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_gej_add"]
    pub fn gej_add(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_gej_double"]
    pub fn gej_double(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_gej_equiv"]
    pub fn gej_equiv(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_gej_ge_add"]
    pub fn gej_ge_add(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_gej_ge_add_ex"]
    pub fn gej_ge_add_ex(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_gej_ge_equiv"]
    pub fn gej_ge_equiv(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_gej_infinity"]
    pub fn gej_infinity(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_gej_is_infinity"]
    pub fn gej_is_infinity(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_gej_is_on_curve"]
    pub fn gej_is_on_curve(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_gej_negate"]
    pub fn gej_negate(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_gej_normalize"]
    pub fn gej_normalize(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_gej_rescale"]
    pub fn gej_rescale(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_gej_x_equiv"]
    pub fn gej_x_equiv(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_gej_y_is_odd"]
    pub fn gej_y_is_odd(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_generate"]
    pub fn generate(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_genesis_block_hash"]
    pub fn genesis_block_hash(dst: *mut CFrameItem, src: *const CFrameItem, env: *const CElementsTxEnv) -> bool;
    #[link_name = "rustsimplicity_0_6_c_hash_to_curve"]
    pub fn hash_to_curve(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_high_1"]
    pub fn high_1(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_high_16"]
    pub fn high_16(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_high_32"]
    pub fn high_32(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_high_64"]
    pub fn high_64(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_high_8"]
    pub fn high_8(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_increment_16"]
    pub fn increment_16(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_increment_32"]
    pub fn increment_32(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_increment_64"]
    pub fn increment_64(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_increment_8"]
    pub fn increment_8(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_input_amount"]
    pub fn input_amount(dst: *mut CFrameItem, src: *const CFrameItem, env: *const CElementsTxEnv) -> bool;
    #[link_name = "rustsimplicity_0_6_c_input_amounts_hash"]
    pub fn input_amounts_hash(dst: *mut CFrameItem, src: *const CFrameItem, env: *const CElementsTxEnv) -> bool;
    #[link_name = "rustsimplicity_0_6_c_input_annex_hash"]
    pub fn input_annex_hash(dst: *mut CFrameItem, src: *const CFrameItem, env: *const CElementsTxEnv) -> bool;
    #[link_name = "rustsimplicity_0_6_c_input_annexes_hash"]
    pub fn input_annexes_hash(dst: *mut CFrameItem, src: *const CFrameItem, env: *const CElementsTxEnv) -> bool;
    #[link_name = "rustsimplicity_0_6_c_input_asset"]
    pub fn input_asset(dst: *mut CFrameItem, src: *const CFrameItem, env: *const CElementsTxEnv) -> bool;
    #[link_name = "rustsimplicity_0_6_c_input_hash"]
    pub fn input_hash(dst: *mut CFrameItem, src: *const CFrameItem, env: *const CElementsTxEnv) -> bool;
    #[link_name = "rustsimplicity_0_6_c_input_outpoints_hash"]
    pub fn input_outpoints_hash(dst: *mut CFrameItem, src: *const CFrameItem, env: *const CElementsTxEnv) -> bool;
    #[link_name = "rustsimplicity_0_6_c_input_pegin"]
    pub fn input_pegin(dst: *mut CFrameItem, src: *const CFrameItem, env: *const CElementsTxEnv) -> bool;
    #[link_name = "rustsimplicity_0_6_c_input_prev_outpoint"]
    pub fn input_prev_outpoint(dst: *mut CFrameItem, src: *const CFrameItem, env: *const CElementsTxEnv) -> bool;
    #[link_name = "rustsimplicity_0_6_c_input_script_hash"]
    pub fn input_script_hash(dst: *mut CFrameItem, src: *const CFrameItem, env: *const CElementsTxEnv) -> bool;
    #[link_name = "rustsimplicity_0_6_c_input_script_sig_hash"]
    pub fn input_script_sig_hash(dst: *mut CFrameItem, src: *const CFrameItem, env: *const CElementsTxEnv) -> bool;
    #[link_name = "rustsimplicity_0_6_c_input_script_sigs_hash"]
    pub fn input_script_sigs_hash(dst: *mut CFrameItem, src: *const CFrameItem, env: *const CElementsTxEnv) -> bool;
    #[link_name = "rustsimplicity_0_6_c_input_scripts_hash"]
    pub fn input_scripts_hash(dst: *mut CFrameItem, src: *const CFrameItem, env: *const CElementsTxEnv) -> bool;
    #[link_name = "rustsimplicity_0_6_c_input_sequence"]
    pub fn input_sequence(dst: *mut CFrameItem, src: *const CFrameItem, env: *const CElementsTxEnv) -> bool;
    #[link_name = "rustsimplicity_0_6_c_input_sequences_hash"]
    pub fn input_sequences_hash(dst: *mut CFrameItem, src: *const CFrameItem, env: *const CElementsTxEnv) -> bool;
    #[link_name = "rustsimplicity_0_6_c_input_utxo_hash"]
    pub fn input_utxo_hash(dst: *mut CFrameItem, src: *const CFrameItem, env: *const CElementsTxEnv) -> bool;
    #[link_name = "rustsimplicity_0_6_c_input_utxos_hash"]
    pub fn input_utxos_hash(dst: *mut CFrameItem, src: *const CFrameItem, env: *const CElementsTxEnv) -> bool;
    #[link_name = "rustsimplicity_0_6_c_inputs_hash"]
    pub fn inputs_hash(dst: *mut CFrameItem, src: *const CFrameItem, env: *const CElementsTxEnv) -> bool;
    #[link_name = "rustsimplicity_0_6_c_internal_key"]
    pub fn internal_key(dst: *mut CFrameItem, src: *const CFrameItem, env: *const CElementsTxEnv) -> bool;
    #[link_name = "rustsimplicity_0_6_c_is_one_16"]
    pub fn is_one_16(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_is_one_32"]
    pub fn is_one_32(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_is_one_64"]
    pub fn is_one_64(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_is_one_8"]
    pub fn is_one_8(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_is_zero_16"]
    pub fn is_zero_16(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_is_zero_32"]
    pub fn is_zero_32(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_is_zero_64"]
    pub fn is_zero_64(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_is_zero_8"]
    pub fn is_zero_8(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_issuance"]
    pub fn issuance(dst: *mut CFrameItem, src: *const CFrameItem, env: *const CElementsTxEnv) -> bool;
    #[link_name = "rustsimplicity_0_6_c_issuance_asset"]
    pub fn issuance_asset(dst: *mut CFrameItem, src: *const CFrameItem, env: *const CElementsTxEnv) -> bool;
    #[link_name = "rustsimplicity_0_6_c_issuance_asset_amount"]
    pub fn issuance_asset_amount(dst: *mut CFrameItem, src: *const CFrameItem, env: *const CElementsTxEnv) -> bool;
    #[link_name = "rustsimplicity_0_6_c_issuance_asset_amounts_hash"]
    pub fn issuance_asset_amounts_hash(dst: *mut CFrameItem, src: *const CFrameItem, env: *const CElementsTxEnv) -> bool;
    #[link_name = "rustsimplicity_0_6_c_issuance_asset_proof"]
    pub fn issuance_asset_proof(dst: *mut CFrameItem, src: *const CFrameItem, env: *const CElementsTxEnv) -> bool;
    #[link_name = "rustsimplicity_0_6_c_issuance_blinding_entropy_hash"]
    pub fn issuance_blinding_entropy_hash(dst: *mut CFrameItem, src: *const CFrameItem, env: *const CElementsTxEnv) -> bool;
    #[link_name = "rustsimplicity_0_6_c_issuance_entropy"]
    pub fn issuance_entropy(dst: *mut CFrameItem, src: *const CFrameItem, env: *const CElementsTxEnv) -> bool;
    #[link_name = "rustsimplicity_0_6_c_issuance_hash"]
    pub fn issuance_hash(dst: *mut CFrameItem, src: *const CFrameItem, env: *const CElementsTxEnv) -> bool;
    #[link_name = "rustsimplicity_0_6_c_issuance_range_proofs_hash"]
    pub fn issuance_range_proofs_hash(dst: *mut CFrameItem, src: *const CFrameItem, env: *const CElementsTxEnv) -> bool;
    #[link_name = "rustsimplicity_0_6_c_issuance_token"]
    pub fn issuance_token(dst: *mut CFrameItem, src: *const CFrameItem, env: *const CElementsTxEnv) -> bool;
    #[link_name = "rustsimplicity_0_6_c_issuance_token_amount"]
    pub fn issuance_token_amount(dst: *mut CFrameItem, src: *const CFrameItem, env: *const CElementsTxEnv) -> bool;
    #[link_name = "rustsimplicity_0_6_c_issuance_token_amounts_hash"]
    pub fn issuance_token_amounts_hash(dst: *mut CFrameItem, src: *const CFrameItem, env: *const CElementsTxEnv) -> bool;
    #[link_name = "rustsimplicity_0_6_c_issuance_token_proof"]
    pub fn issuance_token_proof(dst: *mut CFrameItem, src: *const CFrameItem, env: *const CElementsTxEnv) -> bool;
    #[link_name = "rustsimplicity_0_6_c_issuances_hash"]
    pub fn issuances_hash(dst: *mut CFrameItem, src: *const CFrameItem, env: *const CElementsTxEnv) -> bool;
    #[link_name = "rustsimplicity_0_6_c_lbtc_asset"]
    pub fn lbtc_asset(dst: *mut CFrameItem, src: *const CFrameItem, env: *const CElementsTxEnv) -> bool;
    #[link_name = "rustsimplicity_0_6_c_le_16"]
    pub fn le_16(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_le_32"]
    pub fn le_32(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_le_64"]
    pub fn le_64(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_le_8"]
    pub fn le_8(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_left_extend_16_32"]
    pub fn left_extend_16_32(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_left_extend_16_64"]
    pub fn left_extend_16_64(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_left_extend_1_16"]
    pub fn left_extend_1_16(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_left_extend_1_32"]
    pub fn left_extend_1_32(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_left_extend_1_64"]
    pub fn left_extend_1_64(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_left_extend_1_8"]
    pub fn left_extend_1_8(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_left_extend_32_64"]
    pub fn left_extend_32_64(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_left_extend_8_16"]
    pub fn left_extend_8_16(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_left_extend_8_32"]
    pub fn left_extend_8_32(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_left_extend_8_64"]
    pub fn left_extend_8_64(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_left_pad_high_16_32"]
    pub fn left_pad_high_16_32(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_left_pad_high_16_64"]
    pub fn left_pad_high_16_64(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_left_pad_high_1_16"]
    pub fn left_pad_high_1_16(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_left_pad_high_1_32"]
    pub fn left_pad_high_1_32(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_left_pad_high_1_64"]
    pub fn left_pad_high_1_64(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_left_pad_high_1_8"]
    pub fn left_pad_high_1_8(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_left_pad_high_32_64"]
    pub fn left_pad_high_32_64(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_left_pad_high_8_16"]
    pub fn left_pad_high_8_16(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_left_pad_high_8_32"]
    pub fn left_pad_high_8_32(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_left_pad_high_8_64"]
    pub fn left_pad_high_8_64(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_left_pad_low_16_32"]
    pub fn left_pad_low_16_32(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_left_pad_low_16_64"]
    pub fn left_pad_low_16_64(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_left_pad_low_1_16"]
    pub fn left_pad_low_1_16(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_left_pad_low_1_32"]
    pub fn left_pad_low_1_32(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_left_pad_low_1_64"]
    pub fn left_pad_low_1_64(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_left_pad_low_1_8"]
    pub fn left_pad_low_1_8(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_left_pad_low_32_64"]
    pub fn left_pad_low_32_64(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_left_pad_low_8_16"]
    pub fn left_pad_low_8_16(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_left_pad_low_8_32"]
    pub fn left_pad_low_8_32(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_left_pad_low_8_64"]
    pub fn left_pad_low_8_64(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_left_rotate_16"]
    pub fn left_rotate_16(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_left_rotate_32"]
    pub fn left_rotate_32(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_left_rotate_64"]
    pub fn left_rotate_64(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_left_rotate_8"]
    pub fn left_rotate_8(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_left_shift_16"]
    pub fn left_shift_16(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_left_shift_32"]
    pub fn left_shift_32(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_left_shift_64"]
    pub fn left_shift_64(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_left_shift_8"]
    pub fn left_shift_8(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_left_shift_with_16"]
    pub fn left_shift_with_16(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_left_shift_with_32"]
    pub fn left_shift_with_32(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_left_shift_with_64"]
    pub fn left_shift_with_64(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_left_shift_with_8"]
    pub fn left_shift_with_8(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_leftmost_16_1"]
    pub fn leftmost_16_1(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_leftmost_16_2"]
    pub fn leftmost_16_2(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_leftmost_16_4"]
    pub fn leftmost_16_4(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_leftmost_16_8"]
    pub fn leftmost_16_8(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_leftmost_32_1"]
    pub fn leftmost_32_1(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_leftmost_32_16"]
    pub fn leftmost_32_16(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_leftmost_32_2"]
    pub fn leftmost_32_2(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_leftmost_32_4"]
    pub fn leftmost_32_4(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_leftmost_32_8"]
    pub fn leftmost_32_8(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_leftmost_64_1"]
    pub fn leftmost_64_1(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_leftmost_64_16"]
    pub fn leftmost_64_16(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_leftmost_64_2"]
    pub fn leftmost_64_2(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_leftmost_64_32"]
    pub fn leftmost_64_32(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_leftmost_64_4"]
    pub fn leftmost_64_4(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_leftmost_64_8"]
    pub fn leftmost_64_8(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_leftmost_8_1"]
    pub fn leftmost_8_1(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_leftmost_8_2"]
    pub fn leftmost_8_2(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_leftmost_8_4"]
    pub fn leftmost_8_4(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_linear_combination_1"]
    pub fn linear_combination_1(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_linear_verify_1"]
    pub fn linear_verify_1(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_lock_time"]
    pub fn lock_time(dst: *mut CFrameItem, src: *const CFrameItem, env: *const CElementsTxEnv) -> bool;
    #[link_name = "rustsimplicity_0_6_c_low_1"]
    pub fn low_1(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_low_16"]
    pub fn low_16(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_low_32"]
    pub fn low_32(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_low_64"]
    pub fn low_64(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_low_8"]
    pub fn low_8(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_lt_16"]
    pub fn lt_16(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_lt_32"]
    pub fn lt_32(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_lt_64"]
    pub fn lt_64(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_lt_8"]
    pub fn lt_8(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_maj_1"]
    pub fn maj_1(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_maj_16"]
    pub fn maj_16(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_maj_32"]
    pub fn maj_32(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_maj_64"]
    pub fn maj_64(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_maj_8"]
    pub fn maj_8(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_max_16"]
    pub fn max_16(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_max_32"]
    pub fn max_32(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_max_64"]
    pub fn max_64(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_max_8"]
    pub fn max_8(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_median_16"]
    pub fn median_16(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_median_32"]
    pub fn median_32(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_median_64"]
    pub fn median_64(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_median_8"]
    pub fn median_8(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_min_16"]
    pub fn min_16(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_min_32"]
    pub fn min_32(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_min_64"]
    pub fn min_64(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_min_8"]
    pub fn min_8(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_modulo_16"]
    pub fn modulo_16(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_modulo_32"]
    pub fn modulo_32(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_modulo_64"]
    pub fn modulo_64(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_modulo_8"]
    pub fn modulo_8(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_multiply_16"]
    pub fn multiply_16(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_multiply_32"]
    pub fn multiply_32(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_multiply_64"]
    pub fn multiply_64(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_multiply_8"]
    pub fn multiply_8(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_negate_16"]
    pub fn negate_16(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_negate_32"]
    pub fn negate_32(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_negate_64"]
    pub fn negate_64(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_negate_8"]
    pub fn negate_8(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_new_issuance_contract"]
    pub fn new_issuance_contract(dst: *mut CFrameItem, src: *const CFrameItem, env: *const CElementsTxEnv) -> bool;
    #[link_name = "rustsimplicity_0_6_c_nonce_hash"]
    pub fn nonce_hash(dst: *mut CFrameItem, src: *const CFrameItem, env: *const CElementsTxEnv) -> bool;
    #[link_name = "rustsimplicity_0_6_c_num_inputs"]
    pub fn num_inputs(dst: *mut CFrameItem, src: *const CFrameItem, env: *const CElementsTxEnv) -> bool;
    #[link_name = "rustsimplicity_0_6_c_num_outputs"]
    pub fn num_outputs(dst: *mut CFrameItem, src: *const CFrameItem, env: *const CElementsTxEnv) -> bool;
    #[link_name = "rustsimplicity_0_6_c_one_16"]
    pub fn one_16(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_one_32"]
    pub fn one_32(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_one_64"]
    pub fn one_64(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_one_8"]
    pub fn one_8(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_or_1"]
    pub fn or_1(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_or_16"]
    pub fn or_16(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_or_32"]
    pub fn or_32(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_or_64"]
    pub fn or_64(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_or_8"]
    pub fn or_8(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_outpoint_hash"]
    pub fn outpoint_hash(dst: *mut CFrameItem, src: *const CFrameItem, env: *const CElementsTxEnv) -> bool;
    #[link_name = "rustsimplicity_0_6_c_output_amount"]
    pub fn output_amount(dst: *mut CFrameItem, src: *const CFrameItem, env: *const CElementsTxEnv) -> bool;
    #[link_name = "rustsimplicity_0_6_c_output_amounts_hash"]
    pub fn output_amounts_hash(dst: *mut CFrameItem, src: *const CFrameItem, env: *const CElementsTxEnv) -> bool;
    #[link_name = "rustsimplicity_0_6_c_output_asset"]
    pub fn output_asset(dst: *mut CFrameItem, src: *const CFrameItem, env: *const CElementsTxEnv) -> bool;
    #[link_name = "rustsimplicity_0_6_c_output_hash"]
    pub fn output_hash(dst: *mut CFrameItem, src: *const CFrameItem, env: *const CElementsTxEnv) -> bool;
    #[link_name = "rustsimplicity_0_6_c_output_is_fee"]
    pub fn output_is_fee(dst: *mut CFrameItem, src: *const CFrameItem, env: *const CElementsTxEnv) -> bool;
    #[link_name = "rustsimplicity_0_6_c_output_nonce"]
    pub fn output_nonce(dst: *mut CFrameItem, src: *const CFrameItem, env: *const CElementsTxEnv) -> bool;
    #[link_name = "rustsimplicity_0_6_c_output_nonces_hash"]
    pub fn output_nonces_hash(dst: *mut CFrameItem, src: *const CFrameItem, env: *const CElementsTxEnv) -> bool;
    #[link_name = "rustsimplicity_0_6_c_output_null_datum"]
    pub fn output_null_datum(dst: *mut CFrameItem, src: *const CFrameItem, env: *const CElementsTxEnv) -> bool;
    #[link_name = "rustsimplicity_0_6_c_output_range_proof"]
    pub fn output_range_proof(dst: *mut CFrameItem, src: *const CFrameItem, env: *const CElementsTxEnv) -> bool;
    #[link_name = "rustsimplicity_0_6_c_output_range_proofs_hash"]
    pub fn output_range_proofs_hash(dst: *mut CFrameItem, src: *const CFrameItem, env: *const CElementsTxEnv) -> bool;
    #[link_name = "rustsimplicity_0_6_c_output_script_hash"]
    pub fn output_script_hash(dst: *mut CFrameItem, src: *const CFrameItem, env: *const CElementsTxEnv) -> bool;
    #[link_name = "rustsimplicity_0_6_c_output_scripts_hash"]
    pub fn output_scripts_hash(dst: *mut CFrameItem, src: *const CFrameItem, env: *const CElementsTxEnv) -> bool;
    #[link_name = "rustsimplicity_0_6_c_output_surjection_proof"]
    pub fn output_surjection_proof(dst: *mut CFrameItem, src: *const CFrameItem, env: *const CElementsTxEnv) -> bool;
    #[link_name = "rustsimplicity_0_6_c_output_surjection_proofs_hash"]
    pub fn output_surjection_proofs_hash(dst: *mut CFrameItem, src: *const CFrameItem, env: *const CElementsTxEnv) -> bool;
    #[link_name = "rustsimplicity_0_6_c_outputs_hash"]
    pub fn outputs_hash(dst: *mut CFrameItem, src: *const CFrameItem, env: *const CElementsTxEnv) -> bool;
    #[link_name = "rustsimplicity_0_6_c_parse_lock"]
    pub fn parse_lock(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_parse_sequence"]
    pub fn parse_sequence(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_point_verify_1"]
    pub fn point_verify_1(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_reissuance_blinding"]
    pub fn reissuance_blinding(dst: *mut CFrameItem, src: *const CFrameItem, env: *const CElementsTxEnv) -> bool;
    #[link_name = "rustsimplicity_0_6_c_reissuance_entropy"]
    pub fn reissuance_entropy(dst: *mut CFrameItem, src: *const CFrameItem, env: *const CElementsTxEnv) -> bool;
    #[link_name = "rustsimplicity_0_6_c_right_extend_16_32"]
    pub fn right_extend_16_32(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_right_extend_16_64"]
    pub fn right_extend_16_64(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_right_extend_32_64"]
    pub fn right_extend_32_64(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_right_extend_8_16"]
    pub fn right_extend_8_16(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_right_extend_8_32"]
    pub fn right_extend_8_32(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_right_extend_8_64"]
    pub fn right_extend_8_64(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_right_pad_high_16_32"]
    pub fn right_pad_high_16_32(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_right_pad_high_16_64"]
    pub fn right_pad_high_16_64(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_right_pad_high_1_16"]
    pub fn right_pad_high_1_16(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_right_pad_high_1_32"]
    pub fn right_pad_high_1_32(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_right_pad_high_1_64"]
    pub fn right_pad_high_1_64(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_right_pad_high_1_8"]
    pub fn right_pad_high_1_8(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_right_pad_high_32_64"]
    pub fn right_pad_high_32_64(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_right_pad_high_8_16"]
    pub fn right_pad_high_8_16(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_right_pad_high_8_32"]
    pub fn right_pad_high_8_32(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_right_pad_high_8_64"]
    pub fn right_pad_high_8_64(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_right_pad_low_16_32"]
    pub fn right_pad_low_16_32(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_right_pad_low_16_64"]
    pub fn right_pad_low_16_64(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_right_pad_low_1_16"]
    pub fn right_pad_low_1_16(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_right_pad_low_1_32"]
    pub fn right_pad_low_1_32(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_right_pad_low_1_64"]
    pub fn right_pad_low_1_64(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_right_pad_low_1_8"]
    pub fn right_pad_low_1_8(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_right_pad_low_32_64"]
    pub fn right_pad_low_32_64(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_right_pad_low_8_16"]
    pub fn right_pad_low_8_16(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_right_pad_low_8_32"]
    pub fn right_pad_low_8_32(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_right_pad_low_8_64"]
    pub fn right_pad_low_8_64(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_right_rotate_16"]
    pub fn right_rotate_16(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_right_rotate_32"]
    pub fn right_rotate_32(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_right_rotate_64"]
    pub fn right_rotate_64(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_right_rotate_8"]
    pub fn right_rotate_8(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_right_shift_16"]
    pub fn right_shift_16(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_right_shift_32"]
    pub fn right_shift_32(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_right_shift_64"]
    pub fn right_shift_64(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_right_shift_8"]
    pub fn right_shift_8(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_right_shift_with_16"]
    pub fn right_shift_with_16(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_right_shift_with_32"]
    pub fn right_shift_with_32(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_right_shift_with_64"]
    pub fn right_shift_with_64(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_right_shift_with_8"]
    pub fn right_shift_with_8(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_rightmost_16_1"]
    pub fn rightmost_16_1(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_rightmost_16_2"]
    pub fn rightmost_16_2(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_rightmost_16_4"]
    pub fn rightmost_16_4(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_rightmost_16_8"]
    pub fn rightmost_16_8(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_rightmost_32_1"]
    pub fn rightmost_32_1(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_rightmost_32_16"]
    pub fn rightmost_32_16(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_rightmost_32_2"]
    pub fn rightmost_32_2(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_rightmost_32_4"]
    pub fn rightmost_32_4(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_rightmost_32_8"]
    pub fn rightmost_32_8(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_rightmost_64_1"]
    pub fn rightmost_64_1(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_rightmost_64_16"]
    pub fn rightmost_64_16(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_rightmost_64_2"]
    pub fn rightmost_64_2(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_rightmost_64_32"]
    pub fn rightmost_64_32(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_rightmost_64_4"]
    pub fn rightmost_64_4(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_rightmost_64_8"]
    pub fn rightmost_64_8(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_rightmost_8_1"]
    pub fn rightmost_8_1(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_rightmost_8_2"]
    pub fn rightmost_8_2(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_rightmost_8_4"]
    pub fn rightmost_8_4(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_scalar_add"]
    pub fn scalar_add(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_scalar_invert"]
    pub fn scalar_invert(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_scalar_is_zero"]
    pub fn scalar_is_zero(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_scalar_multiply"]
    pub fn scalar_multiply(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_scalar_multiply_lambda"]
    pub fn scalar_multiply_lambda(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_scalar_negate"]
    pub fn scalar_negate(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_scalar_normalize"]
    pub fn scalar_normalize(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_scalar_square"]
    pub fn scalar_square(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_scale"]
    pub fn scale(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_script_cmr"]
    pub fn script_cmr(dst: *mut CFrameItem, src: *const CFrameItem, env: *const CElementsTxEnv) -> bool;
    #[link_name = "rustsimplicity_0_6_c_sha_256_block"]
    pub fn sha_256_block(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_sha_256_ctx_8_add_1"]
    pub fn sha_256_ctx_8_add_1(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_sha_256_ctx_8_add_128"]
    pub fn sha_256_ctx_8_add_128(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_sha_256_ctx_8_add_16"]
    pub fn sha_256_ctx_8_add_16(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_sha_256_ctx_8_add_2"]
    pub fn sha_256_ctx_8_add_2(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_sha_256_ctx_8_add_256"]
    pub fn sha_256_ctx_8_add_256(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_sha_256_ctx_8_add_32"]
    pub fn sha_256_ctx_8_add_32(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_sha_256_ctx_8_add_4"]
    pub fn sha_256_ctx_8_add_4(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_sha_256_ctx_8_add_512"]
    pub fn sha_256_ctx_8_add_512(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_sha_256_ctx_8_add_64"]
    pub fn sha_256_ctx_8_add_64(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_sha_256_ctx_8_add_8"]
    pub fn sha_256_ctx_8_add_8(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_sha_256_ctx_8_add_buffer_511"]
    pub fn sha_256_ctx_8_add_buffer_511(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_sha_256_ctx_8_finalize"]
    pub fn sha_256_ctx_8_finalize(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_sha_256_ctx_8_init"]
    pub fn sha_256_ctx_8_init(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_sha_256_iv"]
    pub fn sha_256_iv(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_sig_all_hash"]
    pub fn sig_all_hash(dst: *mut CFrameItem, src: *const CFrameItem, env: *const CElementsTxEnv) -> bool;
    #[link_name = "rustsimplicity_0_6_c_some_1"]
    pub fn some_1(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_some_16"]
    pub fn some_16(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_some_32"]
    pub fn some_32(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_some_64"]
    pub fn some_64(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_some_8"]
    pub fn some_8(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_subtract_16"]
    pub fn subtract_16(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_subtract_32"]
    pub fn subtract_32(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_subtract_64"]
    pub fn subtract_64(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_subtract_8"]
    pub fn subtract_8(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_swu"]
    pub fn swu(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_tap_env_hash"]
    pub fn tap_env_hash(dst: *mut CFrameItem, src: *const CFrameItem, env: *const CElementsTxEnv) -> bool;
    #[link_name = "rustsimplicity_0_6_c_tapdata_init"]
    pub fn tapdata_init(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_tapleaf_hash"]
    pub fn tapleaf_hash(dst: *mut CFrameItem, src: *const CFrameItem, env: *const CElementsTxEnv) -> bool;
    #[link_name = "rustsimplicity_0_6_c_tapleaf_version"]
    pub fn tapleaf_version(dst: *mut CFrameItem, src: *const CFrameItem, env: *const CElementsTxEnv) -> bool;
    #[link_name = "rustsimplicity_0_6_c_tappath"]
    pub fn tappath(dst: *mut CFrameItem, src: *const CFrameItem, env: *const CElementsTxEnv) -> bool;
    #[link_name = "rustsimplicity_0_6_c_tappath_hash"]
    pub fn tappath_hash(dst: *mut CFrameItem, src: *const CFrameItem, env: *const CElementsTxEnv) -> bool;
    #[link_name = "rustsimplicity_0_6_c_total_fee"]
    pub fn total_fee(dst: *mut CFrameItem, src: *const CFrameItem, env: *const CElementsTxEnv) -> bool;
    #[link_name = "rustsimplicity_0_6_c_transaction_id"]
    pub fn transaction_id(dst: *mut CFrameItem, src: *const CFrameItem, env: *const CElementsTxEnv) -> bool;
    #[link_name = "rustsimplicity_0_6_c_tx_hash"]
    pub fn tx_hash(dst: *mut CFrameItem, src: *const CFrameItem, env: *const CElementsTxEnv) -> bool;
    #[link_name = "rustsimplicity_0_6_c_tx_is_final"]
    pub fn tx_is_final(dst: *mut CFrameItem, src: *const CFrameItem, env: *const CElementsTxEnv) -> bool;
    #[link_name = "rustsimplicity_0_6_c_tx_lock_distance"]
    pub fn tx_lock_distance(dst: *mut CFrameItem, src: *const CFrameItem, env: *const CElementsTxEnv) -> bool;
    #[link_name = "rustsimplicity_0_6_c_tx_lock_duration"]
    pub fn tx_lock_duration(dst: *mut CFrameItem, src: *const CFrameItem, env: *const CElementsTxEnv) -> bool;
    #[link_name = "rustsimplicity_0_6_c_tx_lock_height"]
    pub fn tx_lock_height(dst: *mut CFrameItem, src: *const CFrameItem, env: *const CElementsTxEnv) -> bool;
    #[link_name = "rustsimplicity_0_6_c_tx_lock_time"]
    pub fn tx_lock_time(dst: *mut CFrameItem, src: *const CFrameItem, env: *const CElementsTxEnv) -> bool;
    #[link_name = "rustsimplicity_0_6_c_verify"]
    pub fn verify(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_version"]
    pub fn version(dst: *mut CFrameItem, src: *const CFrameItem, env: *const CElementsTxEnv) -> bool;
    #[link_name = "rustsimplicity_0_6_c_xor_1"]
    pub fn xor_1(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_xor_16"]
    pub fn xor_16(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_xor_32"]
    pub fn xor_32(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_xor_64"]
    pub fn xor_64(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_xor_8"]
    pub fn xor_8(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_xor_xor_1"]
    pub fn xor_xor_1(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_xor_xor_16"]
    pub fn xor_xor_16(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_xor_xor_32"]
    pub fn xor_xor_32(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_xor_xor_64"]
    pub fn xor_xor_64(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
    #[link_name = "rustsimplicity_0_6_c_xor_xor_8"]
    pub fn xor_xor_8(dst: *mut CFrameItem, src: *const CFrameItem, env: *const c_void) -> bool;
}