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
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
4919
4920
4921
4922
4923
4924
4925
4926
4927
4928
4929
4930
4931
4932
4933
4934
4935
4936
4937
4938
4939
4940
4941
4942
4943
4944
4945
4946
4947
4948
4949
4950
4951
4952
4953
4954
4955
4956
4957
4958
4959
4960
4961
4962
4963
4964
4965
4966
4967
4968
4969
4970
4971
4972
4973
4974
4975
4976
4977
4978
4979
4980
4981
4982
4983
4984
4985
4986
4987
4988
4989
4990
4991
4992
4993
4994
4995
4996
4997
4998
4999
5000
5001
5002
5003
5004
5005
5006
5007
5008
5009
5010
5011
5012
5013
5014
5015
5016
5017
5018
5019
5020
5021
5022
5023
5024
5025
5026
5027
5028
5029
5030
5031
5032
5033
5034
5035
5036
5037
5038
5039
5040
5041
5042
5043
5044
5045
5046
5047
5048
5049
5050
5051
5052
5053
5054
5055
5056
5057
5058
5059
5060
5061
5062
5063
5064
5065
5066
5067
5068
5069
5070
5071
5072
5073
5074
5075
5076
5077
5078
5079
5080
5081
5082
5083
5084
5085
5086
5087
5088
5089
5090
5091
5092
5093
5094
5095
5096
5097
5098
5099
5100
5101
5102
5103
5104
5105
5106
5107
5108
5109
5110
5111
5112
5113
5114
5115
5116
5117
5118
5119
5120
5121
5122
5123
5124
5125
5126
5127
5128
5129
5130
5131
5132
5133
5134
5135
5136
5137
5138
5139
5140
5141
5142
5143
5144
5145
5146
5147
5148
5149
5150
5151
5152
5153
5154
5155
5156
5157
5158
5159
5160
5161
5162
5163
5164
5165
5166
5167
5168
5169
5170
5171
5172
5173
5174
5175
5176
5177
5178
5179
5180
5181
5182
5183
5184
5185
5186
5187
5188
5189
5190
5191
5192
5193
5194
5195
5196
5197
5198
5199
5200
5201
5202
5203
5204
5205
5206
5207
5208
5209
5210
5211
5212
5213
5214
5215
5216
5217
5218
5219
5220
5221
5222
5223
5224
5225
5226
5227
5228
5229
5230
5231
5232
5233
5234
5235
5236
5237
5238
5239
5240
5241
5242
5243
5244
5245
5246
5247
5248
5249
5250
5251
5252
5253
5254
5255
5256
5257
5258
5259
5260
5261
5262
5263
5264
5265
5266
5267
5268
5269
5270
5271
5272
5273
5274
5275
5276
5277
5278
5279
5280
5281
5282
5283
5284
5285
5286
5287
5288
5289
5290
5291
5292
5293
5294
5295
5296
5297
5298
5299
5300
5301
5302
5303
5304
5305
5306
5307
5308
5309
5310
5311
5312
5313
5314
5315
5316
5317
5318
5319
5320
5321
5322
5323
5324
5325
5326
5327
5328
5329
5330
5331
5332
5333
5334
5335
5336
5337
5338
5339
5340
5341
5342
5343
5344
5345
5346
5347
5348
5349
5350
5351
5352
5353
5354
5355
5356
5357
5358
5359
5360
5361
5362
5363
5364
5365
5366
5367
5368
5369
5370
5371
5372
5373
5374
5375
5376
5377
5378
5379
5380
5381
5382
5383
5384
5385
5386
5387
5388
5389
5390
5391
5392
5393
5394
5395
5396
5397
5398
5399
5400
5401
5402
5403
5404
5405
5406
5407
5408
5409
5410
5411
5412
5413
5414
5415
5416
5417
5418
5419
5420
5421
5422
5423
5424
5425
5426
5427
5428
5429
5430
5431
5432
5433
5434
5435
5436
5437
5438
5439
5440
5441
5442
5443
5444
5445
5446
5447
5448
5449
5450
5451
5452
5453
5454
5455
5456
5457
5458
5459
5460
5461
5462
5463
5464
5465
5466
5467
5468
5469
5470
5471
5472
5473
5474
5475
5476
5477
5478
5479
5480
5481
5482
5483
5484
5485
5486
5487
5488
5489
5490
5491
5492
5493
5494
5495
5496
5497
5498
5499
5500
5501
5502
5503
5504
5505
5506
5507
5508
5509
5510
5511
5512
5513
5514
5515
5516
5517
5518
5519
5520
5521
5522
5523
5524
5525
5526
5527
5528
5529
5530
5531
5532
5533
5534
5535
5536
5537
5538
5539
5540
5541
5542
5543
5544
5545
5546
5547
5548
5549
5550
5551
5552
5553
5554
5555
5556
5557
5558
5559
5560
5561
5562
5563
5564
5565
5566
5567
5568
5569
5570
5571
5572
5573
5574
5575
5576
5577
5578
5579
5580
5581
5582
5583
5584
5585
5586
5587
5588
5589
5590
5591
5592
5593
5594
5595
5596
5597
5598
5599
5600
5601
5602
5603
5604
5605
5606
5607
5608
5609
5610
5611
5612
5613
5614
5615
5616
5617
5618
5619
5620
5621
5622
5623
5624
5625
5626
5627
5628
5629
5630
5631
5632
5633
5634
5635
5636
5637
5638
5639
5640
5641
5642
5643
5644
5645
5646
5647
5648
5649
5650
5651
5652
5653
5654
5655
5656
5657
5658
5659
5660
5661
5662
5663
5664
5665
5666
5667
5668
5669
5670
5671
5672
5673
5674
5675
5676
5677
5678
5679
5680
5681
5682
5683
5684
5685
5686
5687
5688
5689
5690
5691
5692
5693
5694
5695
5696
5697
5698
5699
5700
5701
5702
5703
5704
5705
5706
5707
5708
5709
5710
5711
5712
5713
5714
5715
5716
5717
5718
5719
5720
5721
5722
5723
5724
5725
5726
5727
5728
5729
5730
5731
5732
5733
5734
5735
5736
5737
5738
5739
5740
5741
5742
5743
5744
5745
5746
5747
5748
5749
5750
5751
5752
5753
5754
5755
5756
5757
5758
5759
5760
5761
5762
5763
5764
5765
5766
5767
5768
5769
5770
5771
5772
5773
5774
5775
5776
5777
5778
5779
5780
5781
5782
5783
5784
5785
5786
5787
5788
5789
5790
5791
5792
5793
5794
5795
5796
5797
5798
5799
5800
5801
5802
5803
5804
5805
5806
5807
5808
5809
5810
5811
5812
5813
5814
5815
5816
5817
5818
5819
5820
5821
5822
5823
5824
5825
5826
5827
5828
5829
5830
5831
5832
5833
5834
5835
5836
5837
5838
5839
5840
5841
5842
5843
5844
5845
5846
5847
5848
5849
5850
5851
5852
5853
5854
5855
5856
5857
5858
5859
5860
5861
5862
5863
5864
5865
5866
5867
5868
5869
5870
5871
5872
5873
5874
5875
5876
5877
5878
5879
5880
5881
5882
5883
5884
5885
5886
5887
5888
5889
5890
5891
5892
5893
5894
5895
5896
5897
5898
5899
5900
5901
5902
5903
5904
5905
5906
5907
5908
5909
5910
5911
5912
5913
5914
5915
5916
5917
5918
5919
5920
5921
5922
5923
5924
5925
5926
5927
5928
5929
5930
5931
5932
5933
5934
5935
5936
5937
5938
5939
5940
5941
5942
5943
5944
5945
5946
5947
5948
5949
5950
5951
5952
5953
5954
5955
5956
5957
5958
5959
5960
5961
5962
5963
5964
5965
5966
5967
5968
5969
5970
5971
5972
5973
5974
5975
5976
5977
5978
5979
5980
5981
5982
5983
5984
5985
5986
5987
5988
5989
5990
5991
5992
5993
5994
5995
5996
5997
5998
5999
6000
6001
6002
6003
6004
6005
6006
6007
6008
6009
6010
6011
6012
6013
6014
6015
6016
6017
6018
6019
6020
6021
6022
6023
6024
6025
6026
6027
6028
6029
6030
6031
6032
6033
6034
6035
6036
6037
6038
6039
6040
6041
6042
6043
6044
6045
6046
6047
6048
6049
6050
6051
6052
6053
6054
6055
6056
6057
6058
6059
6060
6061
6062
6063
6064
6065
6066
6067
6068
6069
6070
6071
6072
6073
6074
6075
6076
6077
6078
6079
6080
6081
6082
6083
6084
6085
6086
6087
6088
6089
6090
6091
6092
6093
6094
6095
6096
6097
6098
6099
6100
6101
6102
6103
6104
6105
6106
6107
6108
6109
6110
6111
6112
6113
6114
6115
6116
6117
6118
6119
6120
6121
6122
6123
6124
6125
6126
6127
6128
6129
6130
6131
6132
6133
6134
6135
6136
6137
6138
6139
6140
6141
6142
6143
6144
6145
6146
6147
6148
6149
6150
6151
6152
6153
6154
6155
6156
6157
6158
6159
6160
6161
6162
6163
6164
6165
6166
6167
6168
6169
6170
6171
6172
6173
6174
6175
6176
6177
6178
6179
6180
6181
6182
6183
6184
6185
6186
6187
6188
6189
6190
6191
6192
6193
6194
6195
6196
6197
6198
6199
6200
6201
6202
6203
6204
6205
6206
6207
6208
6209
6210
6211
6212
6213
6214
6215
6216
6217
6218
6219
6220
6221
6222
6223
6224
6225
6226
6227
6228
6229
6230
6231
6232
6233
6234
6235
6236
6237
6238
6239
6240
6241
6242
6243
6244
6245
6246
6247
6248
6249
6250
6251
6252
6253
6254
6255
6256
6257
6258
6259
6260
6261
6262
6263
6264
6265
6266
6267
/* automatically generated by rust-bindgen */

pub type __int8_t = ::libc::c_char;
pub type __uint8_t = ::libc::c_uchar;
pub type __int16_t = ::libc::c_short;
pub type __uint16_t = ::libc::c_ushort;
pub type __int32_t = ::libc::c_int;
pub type __uint32_t = ::libc::c_uint;
pub type __int64_t = ::libc::c_longlong;
pub type __uint64_t = ::libc::c_ulonglong;
pub type __darwin_intptr_t = ::libc::c_long;
pub type __darwin_natural_t = ::libc::c_uint;
pub type __darwin_ct_rune_t = ::libc::c_int;
#[repr(C)]
pub struct Union_Unnamed1 {
    pub _bindgen_data_: [u64; 16usize],
}
impl Union_Unnamed1 {
    pub unsafe fn __mbstate8(&mut self) -> *mut [::libc::c_char; 128usize] {
        ::std::mem::transmute(&self._bindgen_data_)
    }
    pub unsafe fn _mbstateL(&mut self) -> *mut ::libc::c_longlong {
        ::std::mem::transmute(&self._bindgen_data_)
    }
}
impl ::std::default::Default for Union_Unnamed1 {
    fn default() -> Union_Unnamed1 { unsafe { ::std::mem::zeroed() } }
}
pub type __mbstate_t = Union_Unnamed1;
pub type __darwin_mbstate_t = __mbstate_t;
pub type __darwin_ptrdiff_t = ::libc::c_long;
pub type __darwin_size_t = ::libc::c_ulong;
//pub type __darwin_va_list = __builtin_va_list;
pub type __darwin_wchar_t = ::libc::c_int;
pub type __darwin_rune_t = __darwin_wchar_t;
pub type __darwin_wint_t = ::libc::c_int;
pub type __darwin_clock_t = ::libc::c_ulong;
pub type __darwin_socklen_t = __uint32_t;
pub type __darwin_ssize_t = ::libc::c_long;
pub type __darwin_time_t = ::libc::c_long;
pub type __darwin_blkcnt_t = __int64_t;
pub type __darwin_blksize_t = __int32_t;
pub type __darwin_dev_t = __int32_t;
pub type __darwin_fsblkcnt_t = ::libc::c_uint;
pub type __darwin_fsfilcnt_t = ::libc::c_uint;
pub type __darwin_gid_t = __uint32_t;
pub type __darwin_id_t = __uint32_t;
pub type __darwin_ino64_t = __uint64_t;
pub type __darwin_ino_t = __darwin_ino64_t;
pub type __darwin_mach_port_name_t = __darwin_natural_t;
pub type __darwin_mach_port_t = __darwin_mach_port_name_t;
pub type __darwin_mode_t = __uint16_t;
pub type __darwin_off_t = __int64_t;
pub type __darwin_pid_t = __int32_t;
pub type __darwin_sigset_t = __uint32_t;
pub type __darwin_suseconds_t = __int32_t;
pub type __darwin_uid_t = __uint32_t;
pub type __darwin_useconds_t = __uint32_t;
pub type __darwin_uuid_t = [::libc::c_uchar; 16usize];
pub type __darwin_uuid_string_t = [::libc::c_char; 37usize];
#[repr(C)]
pub struct Struct___darwin_pthread_handler_rec {
    pub __routine: ::std::option::Option<extern "C" fn
                                             (arg1: *mut ::libc::c_void)
                                             -> ()>,
    pub __arg: *mut ::libc::c_void,
    pub __next: *mut Struct___darwin_pthread_handler_rec,
}
impl ::std::default::Default for Struct___darwin_pthread_handler_rec {
    fn default() -> Struct___darwin_pthread_handler_rec {
        unsafe { ::std::mem::zeroed() }
    }
}
#[repr(C)]
pub struct Struct__opaque_pthread_attr_t {
    pub __sig: ::libc::c_long,
    pub __opaque: [::libc::c_char; 56usize],
}
impl ::std::default::Default for Struct__opaque_pthread_attr_t {
    fn default() -> Struct__opaque_pthread_attr_t {
        unsafe { ::std::mem::zeroed() }
    }
}
#[repr(C)]
pub struct Struct__opaque_pthread_cond_t {
    pub __sig: ::libc::c_long,
    pub __opaque: [::libc::c_char; 40usize],
}
impl ::std::default::Default for Struct__opaque_pthread_cond_t {
    fn default() -> Struct__opaque_pthread_cond_t {
        unsafe { ::std::mem::zeroed() }
    }
}
#[repr(C)]
pub struct Struct__opaque_pthread_condattr_t {
    pub __sig: ::libc::c_long,
    pub __opaque: [::libc::c_char; 8usize],
}
impl ::std::default::Default for Struct__opaque_pthread_condattr_t {
    fn default() -> Struct__opaque_pthread_condattr_t {
        unsafe { ::std::mem::zeroed() }
    }
}
#[repr(C)]
pub struct Struct__opaque_pthread_mutex_t {
    pub __sig: ::libc::c_long,
    pub __opaque: [::libc::c_char; 56usize],
}
impl ::std::default::Default for Struct__opaque_pthread_mutex_t {
    fn default() -> Struct__opaque_pthread_mutex_t {
        unsafe { ::std::mem::zeroed() }
    }
}
#[repr(C)]
pub struct Struct__opaque_pthread_mutexattr_t {
    pub __sig: ::libc::c_long,
    pub __opaque: [::libc::c_char; 8usize],
}
impl ::std::default::Default for Struct__opaque_pthread_mutexattr_t {
    fn default() -> Struct__opaque_pthread_mutexattr_t {
        unsafe { ::std::mem::zeroed() }
    }
}
#[repr(C)]
pub struct Struct__opaque_pthread_once_t {
    pub __sig: ::libc::c_long,
    pub __opaque: [::libc::c_char; 8usize],
}
impl ::std::default::Default for Struct__opaque_pthread_once_t {
    fn default() -> Struct__opaque_pthread_once_t {
        unsafe { ::std::mem::zeroed() }
    }
}
#[repr(C)]
pub struct Struct__opaque_pthread_rwlock_t {
    pub __sig: ::libc::c_long,
    pub __opaque: [::libc::c_char; 192usize],
}
impl ::std::default::Default for Struct__opaque_pthread_rwlock_t {
    fn default() -> Struct__opaque_pthread_rwlock_t {
        unsafe { ::std::mem::zeroed() }
    }
}
#[repr(C)]
pub struct Struct__opaque_pthread_rwlockattr_t {
    pub __sig: ::libc::c_long,
    pub __opaque: [::libc::c_char; 16usize],
}
impl ::std::default::Default for Struct__opaque_pthread_rwlockattr_t {
    fn default() -> Struct__opaque_pthread_rwlockattr_t {
        unsafe { ::std::mem::zeroed() }
    }
}
#[repr(C)]
pub struct Struct__opaque_pthread_t {
    pub __sig: ::libc::c_long,
    pub __cleanup_stack: *mut Struct___darwin_pthread_handler_rec,
    pub __opaque: [::libc::c_char; 8176usize],
}
impl ::std::default::Default for Struct__opaque_pthread_t {
    fn default() -> Struct__opaque_pthread_t {
        unsafe { ::std::mem::zeroed() }
    }
}
pub type __darwin_pthread_attr_t = Struct__opaque_pthread_attr_t;
pub type __darwin_pthread_cond_t = Struct__opaque_pthread_cond_t;
pub type __darwin_pthread_condattr_t = Struct__opaque_pthread_condattr_t;
pub type __darwin_pthread_key_t = ::libc::c_ulong;
pub type __darwin_pthread_mutex_t = Struct__opaque_pthread_mutex_t;
pub type __darwin_pthread_mutexattr_t = Struct__opaque_pthread_mutexattr_t;
pub type __darwin_pthread_once_t = Struct__opaque_pthread_once_t;
pub type __darwin_pthread_rwlock_t = Struct__opaque_pthread_rwlock_t;
pub type __darwin_pthread_rwlockattr_t = Struct__opaque_pthread_rwlockattr_t;
pub type __darwin_pthread_t = *mut Struct__opaque_pthread_t;
pub type __darwin_nl_item = ::libc::c_int;
pub type __darwin_wctrans_t = ::libc::c_int;
pub type __darwin_wctype_t = __uint32_t;
//pub type va_list = __builtin_va_list;
pub type size_t = __darwin_size_t;
pub type fpos_t = __darwin_off_t;
#[repr(C)]
pub struct Struct___sbuf {
    pub _base: *mut ::libc::c_uchar,
    pub _size: ::libc::c_int,
}
impl ::std::default::Default for Struct___sbuf {
    fn default() -> Struct___sbuf { unsafe { ::std::mem::zeroed() } }
}
pub enum Struct___sFILEX { }
#[repr(C)]
pub struct Struct___sFILE {
    pub _p: *mut ::libc::c_uchar,
    pub _r: ::libc::c_int,
    pub _w: ::libc::c_int,
    pub _flags: ::libc::c_short,
    pub _file: ::libc::c_short,
    pub _bf: Struct___sbuf,
    pub _lbfsize: ::libc::c_int,
    pub _cookie: *mut ::libc::c_void,
    pub _close: ::std::option::Option<extern "C" fn(arg1: *mut ::libc::c_void)
                                          -> ::libc::c_int>,
    pub _read: ::std::option::Option<extern "C" fn
                                         (arg1: *mut ::libc::c_void,
                                          arg2: *mut ::libc::c_char,
                                          arg3: ::libc::c_int)
                                         -> ::libc::c_int>,
    pub _seek: ::std::option::Option<extern "C" fn
                                         (arg1: *mut ::libc::c_void,
                                          arg2: fpos_t, arg3: ::libc::c_int)
                                         -> fpos_t>,
    pub _write: ::std::option::Option<extern "C" fn
                                          (arg1: *mut ::libc::c_void,
                                           arg2: *const ::libc::c_char,
                                           arg3: ::libc::c_int)
                                          -> ::libc::c_int>,
    pub _ub: Struct___sbuf,
    pub _extra: *mut Struct___sFILEX,
    pub _ur: ::libc::c_int,
    pub _ubuf: [::libc::c_uchar; 3usize],
    pub _nbuf: [::libc::c_uchar; 1usize],
    pub _lb: Struct___sbuf,
    pub _blksize: ::libc::c_int,
    pub _offset: fpos_t,
}
impl ::std::default::Default for Struct___sFILE {
    fn default() -> Struct___sFILE { unsafe { ::std::mem::zeroed() } }
}
pub type FILE = Struct___sFILE;
pub type off_t = __darwin_off_t;
pub type ssize_t = __darwin_ssize_t;
//pub type __gnuc_va_list = __builtin_va_list;
pub type ClientData = *mut ::libc::c_void;
pub type Tcl_WideInt = ::libc::c_long;
pub type Tcl_WideUInt = ::libc::c_ulong;
pub enum Struct_stat { }
pub type Tcl_StatBuf = Struct_stat;
#[repr(C)]
pub struct Struct_Tcl_Interp {
    pub resultDontUse: *mut ::libc::c_char,
    pub freeProcDontUse: ::std::option::Option<extern "C" fn
                                                   (arg1: *mut ::libc::c_char)
                                                   -> ()>,
    pub errorLineDontUse: ::libc::c_int,
}
impl ::std::default::Default for Struct_Tcl_Interp {
    fn default() -> Struct_Tcl_Interp { unsafe { ::std::mem::zeroed() } }
}
pub type Tcl_Interp = Struct_Tcl_Interp;
pub enum Struct_Tcl_AsyncHandler_ { }
pub type Tcl_AsyncHandler = *mut Struct_Tcl_AsyncHandler_;
pub enum Struct_Tcl_Channel_ { }
pub type Tcl_Channel = *mut Struct_Tcl_Channel_;
pub enum Struct_Tcl_ChannelTypeVersion_ { }
pub type Tcl_ChannelTypeVersion = *mut Struct_Tcl_ChannelTypeVersion_;
pub enum Struct_Tcl_Command_ { }
pub type Tcl_Command = *mut Struct_Tcl_Command_;
pub enum Struct_Tcl_Condition_ { }
pub type Tcl_Condition = *mut Struct_Tcl_Condition_;
pub enum Struct_Tcl_Dict_ { }
pub type Tcl_Dict = *mut Struct_Tcl_Dict_;
pub enum Struct_Tcl_EncodingState_ { }
pub type Tcl_EncodingState = *mut Struct_Tcl_EncodingState_;
pub enum Struct_Tcl_Encoding_ { }
pub type Tcl_Encoding = *mut Struct_Tcl_Encoding_;
pub type Tcl_Event = Struct_Tcl_Event;
pub enum Struct_Tcl_InterpState_ { }
pub type Tcl_InterpState = *mut Struct_Tcl_InterpState_;
pub enum Struct_Tcl_LoadHandle_ { }
pub type Tcl_LoadHandle = *mut Struct_Tcl_LoadHandle_;
pub enum Struct_Tcl_Mutex_ { }
pub type Tcl_Mutex = *mut Struct_Tcl_Mutex_;
pub enum Struct_Tcl_Pid_ { }
pub type Tcl_Pid = *mut Struct_Tcl_Pid_;
pub enum Struct_Tcl_RegExp_ { }
pub type Tcl_RegExp = *mut Struct_Tcl_RegExp_;
pub enum Struct_Tcl_ThreadDataKey_ { }
pub type Tcl_ThreadDataKey = *mut Struct_Tcl_ThreadDataKey_;
pub enum Struct_Tcl_ThreadId_ { }
pub type Tcl_ThreadId = *mut Struct_Tcl_ThreadId_;
pub enum Struct_Tcl_TimerToken_ { }
pub type Tcl_TimerToken = *mut Struct_Tcl_TimerToken_;
pub enum Struct_Tcl_Trace_ { }
pub type Tcl_Trace = *mut Struct_Tcl_Trace_;
pub enum Struct_Tcl_Var_ { }
pub type Tcl_Var = *mut Struct_Tcl_Var_;
pub enum Struct_Tcl_ZLibStream_ { }
pub type Tcl_ZlibStream = *mut Struct_Tcl_ZLibStream_;
pub type Tcl_ThreadCreateProc = extern "C" fn(clientData: ClientData) -> ();
#[repr(C)]
pub struct Struct_Tcl_RegExpIndices {
    pub start: ::libc::c_long,
    pub end: ::libc::c_long,
}
impl ::std::default::Default for Struct_Tcl_RegExpIndices {
    fn default() -> Struct_Tcl_RegExpIndices {
        unsafe { ::std::mem::zeroed() }
    }
}
pub type Tcl_RegExpIndices = Struct_Tcl_RegExpIndices;
#[repr(C)]
pub struct Struct_Tcl_RegExpInfo {
    pub nsubs: ::libc::c_int,
    pub matches: *mut Tcl_RegExpIndices,
    pub extendStart: ::libc::c_long,
    pub reserved: ::libc::c_long,
}
impl ::std::default::Default for Struct_Tcl_RegExpInfo {
    fn default() -> Struct_Tcl_RegExpInfo { unsafe { ::std::mem::zeroed() } }
}
pub type Tcl_RegExpInfo = Struct_Tcl_RegExpInfo;
pub type Tcl_Stat_ = *mut Tcl_StatBuf;
pub type Tcl_OldStat_ = *mut Struct_stat;
pub type Enum_Unnamed2 = ::libc::c_uint;
pub const TCL_INT: ::libc::c_uint = 0;
pub const TCL_DOUBLE: ::libc::c_uint = 1;
pub const TCL_EITHER: ::libc::c_uint = 2;
pub const TCL_WIDE_INT: ::libc::c_uint = 3;
pub type Tcl_ValueType = Enum_Unnamed2;
#[repr(C)]
pub struct Struct_Tcl_Value {
    pub _type: Tcl_ValueType,
    pub intValue: ::libc::c_long,
    pub doubleValue: ::libc::c_double,
    pub wideValue: Tcl_WideInt,
}
impl ::std::default::Default for Struct_Tcl_Value {
    fn default() -> Struct_Tcl_Value { unsafe { ::std::mem::zeroed() } }
}
pub type Tcl_Value = Struct_Tcl_Value;
pub type Tcl_AppInitProc =
    extern "C" fn(interp: *mut Tcl_Interp) -> ::libc::c_int;
pub type Tcl_AsyncProc =
    extern "C" fn
        (clientData: ClientData, interp: *mut Tcl_Interp, code: ::libc::c_int)
        -> ::libc::c_int;
pub type Tcl_ChannelProc =
    extern "C" fn(clientData: ClientData, mask: ::libc::c_int) -> ();
pub type Tcl_CloseProc = extern "C" fn(data: ClientData) -> ();
pub type Tcl_CmdDeleteProc = extern "C" fn(clientData: ClientData) -> ();
pub type Tcl_CmdProc =
    extern "C" fn
        (clientData: ClientData, interp: *mut Tcl_Interp, argc: ::libc::c_int,
         argv: *mut *const ::libc::c_char) -> ::libc::c_int;
pub type Tcl_CmdTraceProc =
    extern "C" fn
        (clientData: ClientData, interp: *mut Tcl_Interp,
         level: ::libc::c_int, command: *mut ::libc::c_char,
         _proc: *mut Tcl_CmdProc, cmdClientData: ClientData,
         argc: ::libc::c_int, argv: *mut *const ::libc::c_char) -> ();
pub type Tcl_CmdObjTraceProc =
    extern "C" fn
        (clientData: ClientData, interp: *mut Tcl_Interp,
         level: ::libc::c_int, command: *const ::libc::c_char,
         commandInfo: Tcl_Command, objc: ::libc::c_int,
         objv: *const *mut Struct_Tcl_Obj) -> ::libc::c_int;
pub type Tcl_CmdObjTraceDeleteProc =
    extern "C" fn(clientData: ClientData) -> ();
pub type Tcl_DupInternalRepProc =
    extern "C" fn(srcPtr: *mut Struct_Tcl_Obj, dupPtr: *mut Struct_Tcl_Obj)
        -> ();
pub type Tcl_EncodingConvertProc =
    extern "C" fn
        (clientData: ClientData, src: *const ::libc::c_char,
         srcLen: ::libc::c_int, flags: ::libc::c_int,
         statePtr: *mut Tcl_EncodingState, dst: *mut ::libc::c_char,
         dstLen: ::libc::c_int, srcReadPtr: *mut ::libc::c_int,
         dstWrotePtr: *mut ::libc::c_int, dstCharsPtr: *mut ::libc::c_int)
        -> ::libc::c_int;
pub type Tcl_EncodingFreeProc = extern "C" fn(clientData: ClientData) -> ();
pub type Tcl_EventProc =
    extern "C" fn(evPtr: *mut Tcl_Event, flags: ::libc::c_int)
        -> ::libc::c_int;
pub type Tcl_EventCheckProc =
    extern "C" fn(clientData: ClientData, flags: ::libc::c_int) -> ();
pub type Tcl_EventDeleteProc =
    extern "C" fn(evPtr: *mut Tcl_Event, clientData: ClientData)
        -> ::libc::c_int;
pub type Tcl_EventSetupProc =
    extern "C" fn(clientData: ClientData, flags: ::libc::c_int) -> ();
pub type Tcl_ExitProc = extern "C" fn(clientData: ClientData) -> ();
pub type Tcl_FileProc =
    extern "C" fn(clientData: ClientData, mask: ::libc::c_int) -> ();
pub type Tcl_FileFreeProc = extern "C" fn(clientData: ClientData) -> ();
pub type Tcl_FreeInternalRepProc =
    extern "C" fn(objPtr: *mut Struct_Tcl_Obj) -> ();
pub type Tcl_FreeProc = extern "C" fn(blockPtr: *mut ::libc::c_char) -> ();
pub type Tcl_IdleProc = extern "C" fn(clientData: ClientData) -> ();
pub type Tcl_InterpDeleteProc =
    extern "C" fn(clientData: ClientData, interp: *mut Tcl_Interp) -> ();
pub type Tcl_MathProc =
    extern "C" fn
        (clientData: ClientData, interp: *mut Tcl_Interp,
         args: *mut Tcl_Value, resultPtr: *mut Tcl_Value) -> ::libc::c_int;
pub type Tcl_NamespaceDeleteProc =
    extern "C" fn(clientData: ClientData) -> ();
pub type Tcl_ObjCmdProc =
    extern "C" fn
        (clientData: ClientData, interp: *mut Tcl_Interp, objc: ::libc::c_int,
         objv: *const *mut Struct_Tcl_Obj) -> ::libc::c_int;
pub type Tcl_PackageInitProc =
    extern "C" fn(interp: *mut Tcl_Interp) -> ::libc::c_int;
pub type Tcl_PackageUnloadProc =
    extern "C" fn(interp: *mut Tcl_Interp, flags: ::libc::c_int)
        -> ::libc::c_int;
pub type Tcl_PanicProc =
    extern "C" fn(format: *const ::libc::c_char, ...) -> ();
pub type Tcl_TcpAcceptProc =
    extern "C" fn
        (callbackData: ClientData, chan: Tcl_Channel,
         address: *mut ::libc::c_char, port: ::libc::c_int) -> ();
pub type Tcl_TimerProc = extern "C" fn(clientData: ClientData) -> ();
pub type Tcl_SetFromAnyProc =
    extern "C" fn(interp: *mut Tcl_Interp, objPtr: *mut Struct_Tcl_Obj)
        -> ::libc::c_int;
pub type Tcl_UpdateStringProc =
    extern "C" fn(objPtr: *mut Struct_Tcl_Obj) -> ();
pub type Tcl_VarTraceProc =
    extern "C" fn
        (clientData: ClientData, interp: *mut Tcl_Interp,
         part1: *const ::libc::c_char, part2: *const ::libc::c_char,
         flags: ::libc::c_int) -> *mut ::libc::c_char;
pub type Tcl_CommandTraceProc =
    extern "C" fn
        (clientData: ClientData, interp: *mut Tcl_Interp,
         oldName: *const ::libc::c_char, newName: *const ::libc::c_char,
         flags: ::libc::c_int) -> ();
pub type Tcl_CreateFileHandlerProc =
    extern "C" fn
        (fd: ::libc::c_int, mask: ::libc::c_int, _proc: *mut Tcl_FileProc,
         clientData: ClientData) -> ();
pub type Tcl_DeleteFileHandlerProc = extern "C" fn(fd: ::libc::c_int) -> ();
pub type Tcl_AlertNotifierProc = extern "C" fn(clientData: ClientData) -> ();
pub type Tcl_ServiceModeHookProc = extern "C" fn(mode: ::libc::c_int) -> ();
pub type Tcl_InitNotifierProc = extern "C" fn() -> *mut ::libc::c_void;
pub type Tcl_FinalizeNotifierProc =
    extern "C" fn(clientData: ClientData) -> ();
pub type Tcl_MainLoopProc = extern "C" fn() -> ();
#[repr(C)]
pub struct Struct_Tcl_ObjType {
    pub name: *const ::libc::c_char,
    pub freeIntRepProc: *mut Tcl_FreeInternalRepProc,
    pub dupIntRepProc: *mut Tcl_DupInternalRepProc,
    pub updateStringProc: *mut Tcl_UpdateStringProc,
    pub setFromAnyProc: *mut Tcl_SetFromAnyProc,
}
impl ::std::default::Default for Struct_Tcl_ObjType {
    fn default() -> Struct_Tcl_ObjType { unsafe { ::std::mem::zeroed() } }
}
pub type Tcl_ObjType = Struct_Tcl_ObjType;
#[repr(C)]
pub struct Struct_Tcl_Obj {
    pub refCount: ::libc::c_int,
    pub bytes: *mut ::libc::c_char,
    pub length: ::libc::c_int,
    pub typePtr: *const Tcl_ObjType,
    pub internalRep: Union_Unnamed3,
}
impl ::std::default::Default for Struct_Tcl_Obj {
    fn default() -> Struct_Tcl_Obj { unsafe { ::std::mem::zeroed() } }
}
#[repr(C)]
pub struct Union_Unnamed3 {
    pub _bindgen_data_: [u64; 2usize],
}
impl Union_Unnamed3 {
    pub unsafe fn longValue(&mut self) -> *mut ::libc::c_long {
        ::std::mem::transmute(&self._bindgen_data_)
    }
    pub unsafe fn doubleValue(&mut self) -> *mut ::libc::c_double {
        ::std::mem::transmute(&self._bindgen_data_)
    }
    pub unsafe fn otherValuePtr(&mut self) -> *mut *mut ::libc::c_void {
        ::std::mem::transmute(&self._bindgen_data_)
    }
    pub unsafe fn wideValue(&mut self) -> *mut Tcl_WideInt {
        ::std::mem::transmute(&self._bindgen_data_)
    }
    pub unsafe fn twoPtrValue(&mut self) -> *mut Struct_Unnamed4 {
        ::std::mem::transmute(&self._bindgen_data_)
    }
    pub unsafe fn ptrAndLongRep(&mut self) -> *mut Struct_Unnamed5 {
        ::std::mem::transmute(&self._bindgen_data_)
    }
}
impl ::std::default::Default for Union_Unnamed3 {
    fn default() -> Union_Unnamed3 { unsafe { ::std::mem::zeroed() } }
}
#[repr(C)]
pub struct Struct_Unnamed4 {
    pub ptr1: *mut ::libc::c_void,
    pub ptr2: *mut ::libc::c_void,
}
impl ::std::default::Default for Struct_Unnamed4 {
    fn default() -> Struct_Unnamed4 { unsafe { ::std::mem::zeroed() } }
}
#[repr(C)]
pub struct Struct_Unnamed5 {
    pub ptr: *mut ::libc::c_void,
    pub value: ::libc::c_ulong,
}
impl ::std::default::Default for Struct_Unnamed5 {
    fn default() -> Struct_Unnamed5 { unsafe { ::std::mem::zeroed() } }
}
pub type Tcl_Obj = Struct_Tcl_Obj;
#[repr(C)]
pub struct Struct_Tcl_SavedResult {
    pub result: *mut ::libc::c_char,
    pub freeProc: *mut Tcl_FreeProc,
    pub objResultPtr: *mut Tcl_Obj,
    pub appendResult: *mut ::libc::c_char,
    pub appendAvl: ::libc::c_int,
    pub appendUsed: ::libc::c_int,
    pub resultSpace: [::libc::c_char; 201usize],
}
impl ::std::default::Default for Struct_Tcl_SavedResult {
    fn default() -> Struct_Tcl_SavedResult { unsafe { ::std::mem::zeroed() } }
}
pub type Tcl_SavedResult = Struct_Tcl_SavedResult;
#[repr(C)]
pub struct Struct_Tcl_Namespace {
    pub name: *mut ::libc::c_char,
    pub fullName: *mut ::libc::c_char,
    pub clientData: ClientData,
    pub deleteProc: *mut Tcl_NamespaceDeleteProc,
    pub parentPtr: *mut Struct_Tcl_Namespace,
}
impl ::std::default::Default for Struct_Tcl_Namespace {
    fn default() -> Struct_Tcl_Namespace { unsafe { ::std::mem::zeroed() } }
}
pub type Tcl_Namespace = Struct_Tcl_Namespace;
#[repr(C)]
pub struct Struct_Tcl_CallFrame {
    pub nsPtr: *mut Tcl_Namespace,
    pub dummy1: ::libc::c_int,
    pub dummy2: ::libc::c_int,
    pub dummy3: *mut ::libc::c_void,
    pub dummy4: *mut ::libc::c_void,
    pub dummy5: *mut ::libc::c_void,
    pub dummy6: ::libc::c_int,
    pub dummy7: *mut ::libc::c_void,
    pub dummy8: *mut ::libc::c_void,
    pub dummy9: ::libc::c_int,
    pub dummy10: *mut ::libc::c_void,
    pub dummy11: *mut ::libc::c_void,
    pub dummy12: *mut ::libc::c_void,
    pub dummy13: *mut ::libc::c_void,
}
impl ::std::default::Default for Struct_Tcl_CallFrame {
    fn default() -> Struct_Tcl_CallFrame { unsafe { ::std::mem::zeroed() } }
}
pub type Tcl_CallFrame = Struct_Tcl_CallFrame;
#[repr(C)]
pub struct Struct_Tcl_CmdInfo {
    pub isNativeObjectProc: ::libc::c_int,
    pub objProc: *mut Tcl_ObjCmdProc,
    pub objClientData: ClientData,
    pub _proc: *mut Tcl_CmdProc,
    pub clientData: ClientData,
    pub deleteProc: *mut Tcl_CmdDeleteProc,
    pub deleteData: ClientData,
    pub namespacePtr: *mut Tcl_Namespace,
}
impl ::std::default::Default for Struct_Tcl_CmdInfo {
    fn default() -> Struct_Tcl_CmdInfo { unsafe { ::std::mem::zeroed() } }
}
pub type Tcl_CmdInfo = Struct_Tcl_CmdInfo;
#[repr(C)]
pub struct Struct_Tcl_DString {
    pub string: *mut ::libc::c_char,
    pub length: ::libc::c_int,
    pub spaceAvl: ::libc::c_int,
    pub staticSpace: [::libc::c_char; 200usize],
}
impl ::std::default::Default for Struct_Tcl_DString {
    fn default() -> Struct_Tcl_DString { unsafe { ::std::mem::zeroed() } }
}
pub type Tcl_DString = Struct_Tcl_DString;
pub type Tcl_HashKeyType = Struct_Tcl_HashKeyType;
pub type Tcl_HashTable = Struct_Tcl_HashTable;
pub type Tcl_HashEntry = Struct_Tcl_HashEntry;
pub type Tcl_HashKeyProc =
    extern "C" fn(tablePtr: *mut Tcl_HashTable, keyPtr: *mut ::libc::c_void)
        -> ::libc::c_uint;
pub type Tcl_CompareHashKeysProc =
    extern "C" fn(keyPtr: *mut ::libc::c_void, hPtr: *mut Tcl_HashEntry)
        -> ::libc::c_int;
pub type Tcl_AllocHashEntryProc =
    extern "C" fn(tablePtr: *mut Tcl_HashTable, keyPtr: *mut ::libc::c_void)
        -> *mut Struct_Tcl_HashEntry;
pub type Tcl_FreeHashEntryProc =
    extern "C" fn(hPtr: *mut Tcl_HashEntry) -> ();
#[repr(C)]
pub struct Struct_Tcl_HashEntry {
    pub nextPtr: *mut Tcl_HashEntry,
    pub tablePtr: *mut Tcl_HashTable,
    pub hash: *mut ::libc::c_void,
    pub clientData: ClientData,
    pub key: Union_Unnamed6,
}
impl ::std::default::Default for Struct_Tcl_HashEntry {
    fn default() -> Struct_Tcl_HashEntry { unsafe { ::std::mem::zeroed() } }
}
#[repr(C)]
pub struct Union_Unnamed6 {
    pub _bindgen_data_: [u64; 1usize],
}
impl Union_Unnamed6 {
    pub unsafe fn oneWordValue(&mut self) -> *mut *mut ::libc::c_char {
        ::std::mem::transmute(&self._bindgen_data_)
    }
    pub unsafe fn objPtr(&mut self) -> *mut *mut Tcl_Obj {
        ::std::mem::transmute(&self._bindgen_data_)
    }
    pub unsafe fn words(&mut self) -> *mut [::libc::c_int; 1usize] {
        ::std::mem::transmute(&self._bindgen_data_)
    }
    pub unsafe fn string(&mut self) -> *mut [::libc::c_char; 1usize] {
        ::std::mem::transmute(&self._bindgen_data_)
    }
}
impl ::std::default::Default for Union_Unnamed6 {
    fn default() -> Union_Unnamed6 { unsafe { ::std::mem::zeroed() } }
}
#[repr(C)]
pub struct Struct_Tcl_HashKeyType {
    pub version: ::libc::c_int,
    pub flags: ::libc::c_int,
    pub hashKeyProc: *mut Tcl_HashKeyProc,
    pub compareKeysProc: *mut Tcl_CompareHashKeysProc,
    pub allocEntryProc: *mut Tcl_AllocHashEntryProc,
    pub freeEntryProc: *mut Tcl_FreeHashEntryProc,
}
impl ::std::default::Default for Struct_Tcl_HashKeyType {
    fn default() -> Struct_Tcl_HashKeyType { unsafe { ::std::mem::zeroed() } }
}
#[repr(C)]
pub struct Struct_Tcl_HashTable {
    pub buckets: *mut *mut Tcl_HashEntry,
    pub staticBuckets: [*mut Tcl_HashEntry; 4usize],
    pub numBuckets: ::libc::c_int,
    pub numEntries: ::libc::c_int,
    pub rebuildSize: ::libc::c_int,
    pub downShift: ::libc::c_int,
    pub mask: ::libc::c_int,
    pub keyType: ::libc::c_int,
    pub findProc: ::std::option::Option<extern "C" fn
                                            (tablePtr: *mut Tcl_HashTable,
                                             key: *const ::libc::c_char)
                                            -> *mut Tcl_HashEntry>,
    pub createProc: ::std::option::Option<extern "C" fn
                                              (tablePtr: *mut Tcl_HashTable,
                                               key: *const ::libc::c_char,
                                               newPtr: *mut ::libc::c_int)
                                              -> *mut Tcl_HashEntry>,
    pub typePtr: *const Tcl_HashKeyType,
}
impl ::std::default::Default for Struct_Tcl_HashTable {
    fn default() -> Struct_Tcl_HashTable { unsafe { ::std::mem::zeroed() } }
}
#[repr(C)]
pub struct Struct_Tcl_HashSearch {
    pub tablePtr: *mut Tcl_HashTable,
    pub nextIndex: ::libc::c_int,
    pub nextEntryPtr: *mut Tcl_HashEntry,
}
impl ::std::default::Default for Struct_Tcl_HashSearch {
    fn default() -> Struct_Tcl_HashSearch { unsafe { ::std::mem::zeroed() } }
}
pub type Tcl_HashSearch = Struct_Tcl_HashSearch;
#[repr(C)]
pub struct Struct_Unnamed7 {
    pub next: *mut ::libc::c_void,
    pub epoch: ::libc::c_int,
    pub dictionaryPtr: Tcl_Dict,
}
impl ::std::default::Default for Struct_Unnamed7 {
    fn default() -> Struct_Unnamed7 { unsafe { ::std::mem::zeroed() } }
}
pub type Tcl_DictSearch = Struct_Unnamed7;
#[repr(C)]
pub struct Struct_Tcl_Event {
    pub _proc: *mut Tcl_EventProc,
    pub nextPtr: *mut Struct_Tcl_Event,
}
impl ::std::default::Default for Struct_Tcl_Event {
    fn default() -> Struct_Tcl_Event { unsafe { ::std::mem::zeroed() } }
}
pub type Enum_Unnamed8 = ::libc::c_uint;
pub const TCL_QUEUE_TAIL: ::libc::c_uint = 0;
pub const TCL_QUEUE_HEAD: ::libc::c_uint = 1;
pub const TCL_QUEUE_MARK: ::libc::c_uint = 2;
pub type Tcl_QueuePosition = Enum_Unnamed8;
#[repr(C)]
pub struct Struct_Tcl_Time {
    pub sec: ::libc::c_long,
    pub usec: ::libc::c_long,
}
impl ::std::default::Default for Struct_Tcl_Time {
    fn default() -> Struct_Tcl_Time { unsafe { ::std::mem::zeroed() } }
}
pub type Tcl_Time = Struct_Tcl_Time;
pub type Tcl_SetTimerProc = extern "C" fn(timePtr: *const Tcl_Time) -> ();
pub type Tcl_WaitForEventProc =
    extern "C" fn(timePtr: *const Tcl_Time) -> ::libc::c_int;
pub type Tcl_GetTimeProc =
    extern "C" fn(timebuf: *mut Tcl_Time, clientData: ClientData) -> ();
pub type Tcl_ScaleTimeProc =
    extern "C" fn(timebuf: *mut Tcl_Time, clientData: ClientData) -> ();
pub type Tcl_DriverBlockModeProc =
    extern "C" fn(instanceData: ClientData, mode: ::libc::c_int)
        -> ::libc::c_int;
pub type Tcl_DriverCloseProc =
    extern "C" fn(instanceData: ClientData, interp: *mut Tcl_Interp)
        -> ::libc::c_int;
pub type Tcl_DriverClose2Proc =
    extern "C" fn
        (instanceData: ClientData, interp: *mut Tcl_Interp,
         flags: ::libc::c_int) -> ::libc::c_int;
pub type Tcl_DriverInputProc =
    extern "C" fn
        (instanceData: ClientData, buf: *mut ::libc::c_char,
         toRead: ::libc::c_int, errorCodePtr: *mut ::libc::c_int)
        -> ::libc::c_int;
pub type Tcl_DriverOutputProc =
    extern "C" fn
        (instanceData: ClientData, buf: *const ::libc::c_char,
         toWrite: ::libc::c_int, errorCodePtr: *mut ::libc::c_int)
        -> ::libc::c_int;
pub type Tcl_DriverSeekProc =
    extern "C" fn
        (instanceData: ClientData, offset: ::libc::c_long,
         mode: ::libc::c_int, errorCodePtr: *mut ::libc::c_int)
        -> ::libc::c_int;
pub type Tcl_DriverSetOptionProc =
    extern "C" fn
        (instanceData: ClientData, interp: *mut Tcl_Interp,
         optionName: *const ::libc::c_char, value: *const ::libc::c_char)
        -> ::libc::c_int;
pub type Tcl_DriverGetOptionProc =
    extern "C" fn
        (instanceData: ClientData, interp: *mut Tcl_Interp,
         optionName: *const ::libc::c_char, dsPtr: *mut Tcl_DString)
        -> ::libc::c_int;
pub type Tcl_DriverWatchProc =
    extern "C" fn(instanceData: ClientData, mask: ::libc::c_int) -> ();
pub type Tcl_DriverGetHandleProc =
    extern "C" fn
        (instanceData: ClientData, direction: ::libc::c_int,
         handlePtr: *mut ClientData) -> ::libc::c_int;
pub type Tcl_DriverFlushProc =
    extern "C" fn(instanceData: ClientData) -> ::libc::c_int;
pub type Tcl_DriverHandlerProc =
    extern "C" fn(instanceData: ClientData, interestMask: ::libc::c_int)
        -> ::libc::c_int;
pub type Tcl_DriverWideSeekProc =
    extern "C" fn
        (instanceData: ClientData, offset: Tcl_WideInt, mode: ::libc::c_int,
         errorCodePtr: *mut ::libc::c_int) -> ::libc::c_long;
pub type Tcl_DriverThreadActionProc =
    extern "C" fn(instanceData: ClientData, action: ::libc::c_int) -> ();
pub type Tcl_DriverTruncateProc =
    extern "C" fn(instanceData: ClientData, length: Tcl_WideInt)
        -> ::libc::c_int;
#[repr(C)]
pub struct Struct_Tcl_ChannelType {
    pub typeName: *const ::libc::c_char,
    pub version: Tcl_ChannelTypeVersion,
    pub closeProc: *mut Tcl_DriverCloseProc,
    pub inputProc: *mut Tcl_DriverInputProc,
    pub outputProc: *mut Tcl_DriverOutputProc,
    pub seekProc: *mut Tcl_DriverSeekProc,
    pub setOptionProc: *mut Tcl_DriverSetOptionProc,
    pub getOptionProc: *mut Tcl_DriverGetOptionProc,
    pub watchProc: *mut Tcl_DriverWatchProc,
    pub getHandleProc: *mut Tcl_DriverGetHandleProc,
    pub close2Proc: *mut Tcl_DriverClose2Proc,
    pub blockModeProc: *mut Tcl_DriverBlockModeProc,
    pub flushProc: *mut Tcl_DriverFlushProc,
    pub handlerProc: *mut Tcl_DriverHandlerProc,
    pub wideSeekProc: *mut Tcl_DriverWideSeekProc,
    pub threadActionProc: *mut Tcl_DriverThreadActionProc,
    pub truncateProc: *mut Tcl_DriverTruncateProc,
}
impl ::std::default::Default for Struct_Tcl_ChannelType {
    fn default() -> Struct_Tcl_ChannelType { unsafe { ::std::mem::zeroed() } }
}
pub type Tcl_ChannelType = Struct_Tcl_ChannelType;
pub type Enum_Tcl_PathType = ::libc::c_uint;
pub const TCL_PATH_ABSOLUTE: ::libc::c_uint = 0;
pub const TCL_PATH_RELATIVE: ::libc::c_uint = 1;
pub const TCL_PATH_VOLUME_RELATIVE: ::libc::c_uint = 2;
pub type Tcl_PathType = Enum_Tcl_PathType;
#[repr(C)]
pub struct Struct_Tcl_GlobTypeData {
    pub _type: ::libc::c_int,
    pub perm: ::libc::c_int,
    pub macType: *mut Tcl_Obj,
    pub macCreator: *mut Tcl_Obj,
}
impl ::std::default::Default for Struct_Tcl_GlobTypeData {
    fn default() -> Struct_Tcl_GlobTypeData {
        unsafe { ::std::mem::zeroed() }
    }
}
pub type Tcl_GlobTypeData = Struct_Tcl_GlobTypeData;
pub type Tcl_FSStatProc =
    extern "C" fn(pathPtr: *mut Tcl_Obj, buf: *mut Tcl_StatBuf)
        -> ::libc::c_int;
pub type Tcl_FSAccessProc =
    extern "C" fn(pathPtr: *mut Tcl_Obj, mode: ::libc::c_int)
        -> ::libc::c_int;
pub type Tcl_FSOpenFileChannelProc =
    extern "C" fn
        (interp: *mut Tcl_Interp, pathPtr: *mut Tcl_Obj, mode: ::libc::c_int,
         permissions: ::libc::c_int) -> *mut Struct_Tcl_Channel_;
pub type Tcl_FSMatchInDirectoryProc =
    extern "C" fn
        (interp: *mut Tcl_Interp, result: *mut Tcl_Obj, pathPtr: *mut Tcl_Obj,
         pattern: *const ::libc::c_char, types: *mut Tcl_GlobTypeData)
        -> ::libc::c_int;
pub type Tcl_FSGetCwdProc =
    extern "C" fn(interp: *mut Tcl_Interp) -> *mut Struct_Tcl_Obj;
pub type Tcl_FSChdirProc =
    extern "C" fn(pathPtr: *mut Tcl_Obj) -> ::libc::c_int;
pub type Tcl_FSLstatProc =
    extern "C" fn(pathPtr: *mut Tcl_Obj, buf: *mut Tcl_StatBuf)
        -> ::libc::c_int;
pub type Tcl_FSCreateDirectoryProc =
    extern "C" fn(pathPtr: *mut Tcl_Obj) -> ::libc::c_int;
pub type Tcl_FSDeleteFileProc =
    extern "C" fn(pathPtr: *mut Tcl_Obj) -> ::libc::c_int;
pub type Tcl_FSCopyDirectoryProc =
    extern "C" fn
        (srcPathPtr: *mut Tcl_Obj, destPathPtr: *mut Tcl_Obj,
         errorPtr: *mut *mut Tcl_Obj) -> ::libc::c_int;
pub type Tcl_FSCopyFileProc =
    extern "C" fn(srcPathPtr: *mut Tcl_Obj, destPathPtr: *mut Tcl_Obj)
        -> ::libc::c_int;
pub type Tcl_FSRemoveDirectoryProc =
    extern "C" fn
        (pathPtr: *mut Tcl_Obj, recursive: ::libc::c_int,
         errorPtr: *mut *mut Tcl_Obj) -> ::libc::c_int;
pub type Tcl_FSRenameFileProc =
    extern "C" fn(srcPathPtr: *mut Tcl_Obj, destPathPtr: *mut Tcl_Obj)
        -> ::libc::c_int;
pub type Tcl_FSUnloadFileProc =
    extern "C" fn(loadHandle: Tcl_LoadHandle) -> ();
pub type Tcl_FSListVolumesProc = extern "C" fn() -> *mut Struct_Tcl_Obj;
pub enum Struct_utimbuf { }
pub type Tcl_FSUtimeProc =
    extern "C" fn(pathPtr: *mut Tcl_Obj, tval: *mut Struct_utimbuf)
        -> ::libc::c_int;
pub type Tcl_FSNormalizePathProc =
    extern "C" fn
        (interp: *mut Tcl_Interp, pathPtr: *mut Tcl_Obj,
         nextCheckpoint: ::libc::c_int) -> ::libc::c_int;
pub type Tcl_FSFileAttrsGetProc =
    extern "C" fn
        (interp: *mut Tcl_Interp, index: ::libc::c_int, pathPtr: *mut Tcl_Obj,
         objPtrRef: *mut *mut Tcl_Obj) -> ::libc::c_int;
pub type Tcl_FSFileAttrStringsProc =
    extern "C" fn(pathPtr: *mut Tcl_Obj, objPtrRef: *mut *mut Tcl_Obj)
        -> *const *const ::libc::c_char;
pub type Tcl_FSFileAttrsSetProc =
    extern "C" fn
        (interp: *mut Tcl_Interp, index: ::libc::c_int, pathPtr: *mut Tcl_Obj,
         objPtr: *mut Tcl_Obj) -> ::libc::c_int;
pub type Tcl_FSLinkProc =
    extern "C" fn
        (pathPtr: *mut Tcl_Obj, toPtr: *mut Tcl_Obj, linkType: ::libc::c_int)
        -> *mut Struct_Tcl_Obj;
pub type Tcl_FSLoadFileProc =
    extern "C" fn
        (interp: *mut Tcl_Interp, pathPtr: *mut Tcl_Obj,
         handlePtr: *mut Tcl_LoadHandle,
         unloadProcPtr: *mut *mut Tcl_FSUnloadFileProc) -> ::libc::c_int;
pub type Tcl_FSPathInFilesystemProc =
    extern "C" fn(pathPtr: *mut Tcl_Obj, clientDataPtr: *mut ClientData)
        -> ::libc::c_int;
pub type Tcl_FSFilesystemPathTypeProc =
    extern "C" fn(pathPtr: *mut Tcl_Obj) -> *mut Struct_Tcl_Obj;
pub type Tcl_FSFilesystemSeparatorProc =
    extern "C" fn(pathPtr: *mut Tcl_Obj) -> *mut Struct_Tcl_Obj;
pub type Tcl_FSFreeInternalRepProc =
    extern "C" fn(clientData: ClientData) -> ();
pub type Tcl_FSDupInternalRepProc =
    extern "C" fn(clientData: ClientData) -> *mut ::libc::c_void;
pub type Tcl_FSInternalToNormalizedProc =
    extern "C" fn(clientData: ClientData) -> *mut Struct_Tcl_Obj;
pub type Tcl_FSCreateInternalRepProc =
    extern "C" fn(pathPtr: *mut Tcl_Obj) -> *mut ::libc::c_void;
pub enum Struct_Tcl_FSVersion_ { }
pub type Tcl_FSVersion = *mut Struct_Tcl_FSVersion_;
#[repr(C)]
pub struct Struct_Tcl_Filesystem {
    pub typeName: *const ::libc::c_char,
    pub structureLength: ::libc::c_int,
    pub version: Tcl_FSVersion,
    pub pathInFilesystemProc: *mut Tcl_FSPathInFilesystemProc,
    pub dupInternalRepProc: *mut Tcl_FSDupInternalRepProc,
    pub freeInternalRepProc: *mut Tcl_FSFreeInternalRepProc,
    pub internalToNormalizedProc: *mut Tcl_FSInternalToNormalizedProc,
    pub createInternalRepProc: *mut Tcl_FSCreateInternalRepProc,
    pub normalizePathProc: *mut Tcl_FSNormalizePathProc,
    pub filesystemPathTypeProc: *mut Tcl_FSFilesystemPathTypeProc,
    pub filesystemSeparatorProc: *mut Tcl_FSFilesystemSeparatorProc,
    pub statProc: *mut Tcl_FSStatProc,
    pub accessProc: *mut Tcl_FSAccessProc,
    pub openFileChannelProc: *mut Tcl_FSOpenFileChannelProc,
    pub matchInDirectoryProc: *mut Tcl_FSMatchInDirectoryProc,
    pub utimeProc: *mut Tcl_FSUtimeProc,
    pub linkProc: *mut Tcl_FSLinkProc,
    pub listVolumesProc: *mut Tcl_FSListVolumesProc,
    pub fileAttrStringsProc: *mut Tcl_FSFileAttrStringsProc,
    pub fileAttrsGetProc: *mut Tcl_FSFileAttrsGetProc,
    pub fileAttrsSetProc: *mut Tcl_FSFileAttrsSetProc,
    pub createDirectoryProc: *mut Tcl_FSCreateDirectoryProc,
    pub removeDirectoryProc: *mut Tcl_FSRemoveDirectoryProc,
    pub deleteFileProc: *mut Tcl_FSDeleteFileProc,
    pub copyFileProc: *mut Tcl_FSCopyFileProc,
    pub renameFileProc: *mut Tcl_FSRenameFileProc,
    pub copyDirectoryProc: *mut Tcl_FSCopyDirectoryProc,
    pub lstatProc: *mut Tcl_FSLstatProc,
    pub loadFileProc: *mut Tcl_FSLoadFileProc,
    pub getCwdProc: *mut Tcl_FSGetCwdProc,
    pub chdirProc: *mut Tcl_FSChdirProc,
}
impl ::std::default::Default for Struct_Tcl_Filesystem {
    fn default() -> Struct_Tcl_Filesystem { unsafe { ::std::mem::zeroed() } }
}
pub type Tcl_Filesystem = Struct_Tcl_Filesystem;
#[repr(C)]
pub struct Struct_Tcl_NotifierProcs {
    pub setTimerProc: *mut Tcl_SetTimerProc,
    pub waitForEventProc: *mut Tcl_WaitForEventProc,
    pub createFileHandlerProc: *mut Tcl_CreateFileHandlerProc,
    pub deleteFileHandlerProc: *mut Tcl_DeleteFileHandlerProc,
    pub initNotifierProc: *mut Tcl_InitNotifierProc,
    pub finalizeNotifierProc: *mut Tcl_FinalizeNotifierProc,
    pub alertNotifierProc: *mut Tcl_AlertNotifierProc,
    pub serviceModeHookProc: *mut Tcl_ServiceModeHookProc,
}
impl ::std::default::Default for Struct_Tcl_NotifierProcs {
    fn default() -> Struct_Tcl_NotifierProcs {
        unsafe { ::std::mem::zeroed() }
    }
}
pub type Tcl_NotifierProcs = Struct_Tcl_NotifierProcs;
#[repr(C)]
pub struct Struct_Tcl_Token {
    pub _type: ::libc::c_int,
    pub start: *const ::libc::c_char,
    pub size: ::libc::c_int,
    pub numComponents: ::libc::c_int,
}
impl ::std::default::Default for Struct_Tcl_Token {
    fn default() -> Struct_Tcl_Token { unsafe { ::std::mem::zeroed() } }
}
pub type Tcl_Token = Struct_Tcl_Token;
#[repr(C)]
pub struct Struct_Tcl_Parse {
    pub commentStart: *const ::libc::c_char,
    pub commentSize: ::libc::c_int,
    pub commandStart: *const ::libc::c_char,
    pub commandSize: ::libc::c_int,
    pub numWords: ::libc::c_int,
    pub tokenPtr: *mut Tcl_Token,
    pub numTokens: ::libc::c_int,
    pub tokensAvailable: ::libc::c_int,
    pub errorType: ::libc::c_int,
    pub string: *const ::libc::c_char,
    pub end: *const ::libc::c_char,
    pub interp: *mut Tcl_Interp,
    pub term: *const ::libc::c_char,
    pub incomplete: ::libc::c_int,
    pub staticTokens: [Tcl_Token; 20usize],
}
impl ::std::default::Default for Struct_Tcl_Parse {
    fn default() -> Struct_Tcl_Parse { unsafe { ::std::mem::zeroed() } }
}
pub type Tcl_Parse = Struct_Tcl_Parse;
#[repr(C)]
pub struct Struct_Tcl_EncodingType {
    pub encodingName: *const ::libc::c_char,
    pub toUtfProc: *mut Tcl_EncodingConvertProc,
    pub fromUtfProc: *mut Tcl_EncodingConvertProc,
    pub freeProc: *mut Tcl_EncodingFreeProc,
    pub clientData: ClientData,
    pub nullSize: ::libc::c_int,
}
impl ::std::default::Default for Struct_Tcl_EncodingType {
    fn default() -> Struct_Tcl_EncodingType {
        unsafe { ::std::mem::zeroed() }
    }
}
pub type Tcl_EncodingType = Struct_Tcl_EncodingType;
pub type Tcl_UniChar = ::libc::c_ushort;
#[repr(C)]
pub struct Struct_Tcl_Config {
    pub key: *const ::libc::c_char,
    pub value: *const ::libc::c_char,
}
impl ::std::default::Default for Struct_Tcl_Config {
    fn default() -> Struct_Tcl_Config { unsafe { ::std::mem::zeroed() } }
}
pub type Tcl_Config = Struct_Tcl_Config;
pub type Tcl_LimitHandlerProc =
    extern "C" fn(clientData: ClientData, interp: *mut Tcl_Interp) -> ();
pub type Tcl_LimitHandlerDeleteProc =
    extern "C" fn(clientData: ClientData) -> ();
pub enum Struct_mp_int { }
pub type mp_int = Struct_mp_int;
pub type mp_digit = ::libc::c_uint;
#[repr(C)]
pub struct Struct_Unnamed9 {
    pub _type: ::libc::c_int,
    pub keyStr: *const ::libc::c_char,
    pub srcPtr: *mut ::libc::c_void,
    pub dstPtr: *mut ::libc::c_void,
    pub helpStr: *const ::libc::c_char,
    pub clientData: ClientData,
}
impl ::std::default::Default for Struct_Unnamed9 {
    fn default() -> Struct_Unnamed9 { unsafe { ::std::mem::zeroed() } }
}
pub type Tcl_ArgvInfo = Struct_Unnamed9;
pub type Tcl_ArgvFuncProc =
    extern "C" fn
        (clientData: ClientData, objPtr: *mut Tcl_Obj,
         dstPtr: *mut ::libc::c_void) -> ::libc::c_int;
pub type Tcl_ArgvGenFuncProc =
    extern "C" fn
        (clientData: ClientData, interp: *mut Tcl_Interp, objc: ::libc::c_int,
         objv: *const *mut Tcl_Obj, dstPtr: *mut ::libc::c_void)
        -> ::libc::c_int;
pub type Tcl_NRPostProc =
    extern "C" fn
        (data: *mut ClientData, interp: *mut Tcl_Interp,
         result: ::libc::c_int) -> ::libc::c_int;
pub enum Struct_TclIntStubs { }
pub enum Struct_TclIntPlatStubs { }
#[repr(C)]
pub struct Struct_Unnamed10 {
    pub tclPlatStubs: *const Struct_TclPlatStubs,
    pub tclIntStubs: *const Struct_TclIntStubs,
    pub tclIntPlatStubs: *const Struct_TclIntPlatStubs,
}
impl ::std::default::Default for Struct_Unnamed10 {
    fn default() -> Struct_Unnamed10 { unsafe { ::std::mem::zeroed() } }
}
pub type TclStubHooks = Struct_Unnamed10;
#[repr(C)]
pub struct Struct_TclStubs {
    pub magic: ::libc::c_int,
    pub hooks: *const TclStubHooks,
    pub tcl_PkgProvideEx: ::std::option::Option<extern "C" fn
                                                    (interp: *mut Tcl_Interp,
                                                     name:
                                                         *const ::libc::c_char,
                                                     version:
                                                         *const ::libc::c_char,
                                                     clientData:
                                                         *const ::libc::c_void)
                                                    -> ::libc::c_int>,
    pub tcl_PkgRequireEx: ::std::option::Option<extern "C" fn
                                                    (interp: *mut Tcl_Interp,
                                                     name:
                                                         *const ::libc::c_char,
                                                     version:
                                                         *const ::libc::c_char,
                                                     exact: ::libc::c_int,
                                                     clientDataPtr:
                                                         *mut ::libc::c_void)
                                                    -> *const ::libc::c_char>,
    pub tcl_Panic: ::std::option::Option<extern "C" fn
                                             (format:
                                                  *const ::libc::c_char, ...)
                                             -> ()>,
    pub tcl_Alloc: ::std::option::Option<extern "C" fn(size: ::libc::c_uint)
                                             -> *mut ::libc::c_char>,
    pub tcl_Free: ::std::option::Option<extern "C" fn
                                            (ptr: *mut ::libc::c_char) -> ()>,
    pub tcl_Realloc: ::std::option::Option<extern "C" fn
                                               (ptr: *mut ::libc::c_char,
                                                size: ::libc::c_uint)
                                               -> *mut ::libc::c_char>,
    pub tcl_DbCkalloc: ::std::option::Option<extern "C" fn
                                                 (size: ::libc::c_uint,
                                                  file: *const ::libc::c_char,
                                                  line: ::libc::c_int)
                                                 -> *mut ::libc::c_char>,
    pub tcl_DbCkfree: ::std::option::Option<extern "C" fn
                                                (ptr: *mut ::libc::c_char,
                                                 file: *const ::libc::c_char,
                                                 line: ::libc::c_int) -> ()>,
    pub tcl_DbCkrealloc: ::std::option::Option<extern "C" fn
                                                   (ptr: *mut ::libc::c_char,
                                                    size: ::libc::c_uint,
                                                    file:
                                                        *const ::libc::c_char,
                                                    line: ::libc::c_int)
                                                   -> *mut ::libc::c_char>,
    pub tcl_CreateFileHandler: ::std::option::Option<extern "C" fn
                                                         (fd: ::libc::c_int,
                                                          mask: ::libc::c_int,
                                                          _proc:
                                                              *mut Tcl_FileProc,
                                                          clientData:
                                                              ClientData)
                                                         -> ()>,
    pub tcl_DeleteFileHandler: ::std::option::Option<extern "C" fn
                                                         (fd: ::libc::c_int)
                                                         -> ()>,
    pub tcl_SetTimer: ::std::option::Option<extern "C" fn
                                                (timePtr: *const Tcl_Time)
                                                -> ()>,
    pub tcl_Sleep: ::std::option::Option<extern "C" fn(ms: ::libc::c_int)
                                             -> ()>,
    pub tcl_WaitForEvent: ::std::option::Option<extern "C" fn
                                                    (timePtr: *const Tcl_Time)
                                                    -> ::libc::c_int>,
    pub tcl_AppendAllObjTypes: ::std::option::Option<extern "C" fn
                                                         (interp:
                                                              *mut Tcl_Interp,
                                                          objPtr:
                                                              *mut Tcl_Obj)
                                                         -> ::libc::c_int>,
    pub tcl_AppendStringsToObj: ::std::option::Option<extern "C" fn
                                                          (objPtr:
                                                               *mut Tcl_Obj, ...)
                                                          -> ()>,
    pub tcl_AppendToObj: ::std::option::Option<extern "C" fn
                                                   (objPtr: *mut Tcl_Obj,
                                                    bytes:
                                                        *const ::libc::c_char,
                                                    length: ::libc::c_int)
                                                   -> ()>,
    pub tcl_ConcatObj: ::std::option::Option<extern "C" fn
                                                 (objc: ::libc::c_int,
                                                  objv: *const *mut Tcl_Obj)
                                                 -> *mut Tcl_Obj>,
    pub tcl_ConvertToType: ::std::option::Option<extern "C" fn
                                                     (interp: *mut Tcl_Interp,
                                                      objPtr: *mut Tcl_Obj,
                                                      typePtr:
                                                          *const Tcl_ObjType)
                                                     -> ::libc::c_int>,
    pub tcl_DbDecrRefCount: ::std::option::Option<extern "C" fn
                                                      (objPtr: *mut Tcl_Obj,
                                                       file:
                                                           *const ::libc::c_char,
                                                       line: ::libc::c_int)
                                                      -> ()>,
    pub tcl_DbIncrRefCount: ::std::option::Option<extern "C" fn
                                                      (objPtr: *mut Tcl_Obj,
                                                       file:
                                                           *const ::libc::c_char,
                                                       line: ::libc::c_int)
                                                      -> ()>,
    pub tcl_DbIsShared: ::std::option::Option<extern "C" fn
                                                  (objPtr: *mut Tcl_Obj,
                                                   file:
                                                       *const ::libc::c_char,
                                                   line: ::libc::c_int)
                                                  -> ::libc::c_int>,
    pub tcl_DbNewBooleanObj: ::std::option::Option<extern "C" fn
                                                       (boolValue:
                                                            ::libc::c_int,
                                                        file:
                                                            *const ::libc::c_char,
                                                        line: ::libc::c_int)
                                                       -> *mut Tcl_Obj>,
    pub tcl_DbNewByteArrayObj: ::std::option::Option<extern "C" fn
                                                         (bytes:
                                                              *const ::libc::c_uchar,
                                                          length:
                                                              ::libc::c_int,
                                                          file:
                                                              *const ::libc::c_char,
                                                          line: ::libc::c_int)
                                                         -> *mut Tcl_Obj>,
    pub tcl_DbNewDoubleObj: ::std::option::Option<extern "C" fn
                                                      (doubleValue:
                                                           ::libc::c_double,
                                                       file:
                                                           *const ::libc::c_char,
                                                       line: ::libc::c_int)
                                                      -> *mut Tcl_Obj>,
    pub tcl_DbNewListObj: ::std::option::Option<extern "C" fn
                                                    (objc: ::libc::c_int,
                                                     objv:
                                                         *const *mut Tcl_Obj,
                                                     file:
                                                         *const ::libc::c_char,
                                                     line: ::libc::c_int)
                                                    -> *mut Tcl_Obj>,
    pub tcl_DbNewLongObj: ::std::option::Option<extern "C" fn
                                                    (longValue:
                                                         ::libc::c_long,
                                                     file:
                                                         *const ::libc::c_char,
                                                     line: ::libc::c_int)
                                                    -> *mut Tcl_Obj>,
    pub tcl_DbNewObj: ::std::option::Option<extern "C" fn
                                                (file: *const ::libc::c_char,
                                                 line: ::libc::c_int)
                                                -> *mut Tcl_Obj>,
    pub tcl_DbNewStringObj: ::std::option::Option<extern "C" fn
                                                      (bytes:
                                                           *const ::libc::c_char,
                                                       length: ::libc::c_int,
                                                       file:
                                                           *const ::libc::c_char,
                                                       line: ::libc::c_int)
                                                      -> *mut Tcl_Obj>,
    pub tcl_DuplicateObj: ::std::option::Option<extern "C" fn
                                                    (objPtr: *mut Tcl_Obj)
                                                    -> *mut Tcl_Obj>,
    pub tclFreeObj: ::std::option::Option<extern "C" fn(objPtr: *mut Tcl_Obj)
                                              -> ()>,
    pub tcl_GetBoolean: ::std::option::Option<extern "C" fn
                                                  (interp: *mut Tcl_Interp,
                                                   src: *const ::libc::c_char,
                                                   boolPtr:
                                                       *mut ::libc::c_int)
                                                  -> ::libc::c_int>,
    pub tcl_GetBooleanFromObj: ::std::option::Option<extern "C" fn
                                                         (interp:
                                                              *mut Tcl_Interp,
                                                          objPtr:
                                                              *mut Tcl_Obj,
                                                          boolPtr:
                                                              *mut ::libc::c_int)
                                                         -> ::libc::c_int>,
    pub tcl_GetByteArrayFromObj: ::std::option::Option<extern "C" fn
                                                           (objPtr:
                                                                *mut Tcl_Obj,
                                                            lengthPtr:
                                                                *mut ::libc::c_int)
                                                           ->
                                                               *mut ::libc::c_uchar>,
    pub tcl_GetDouble: ::std::option::Option<extern "C" fn
                                                 (interp: *mut Tcl_Interp,
                                                  src: *const ::libc::c_char,
                                                  doublePtr:
                                                      *mut ::libc::c_double)
                                                 -> ::libc::c_int>,
    pub tcl_GetDoubleFromObj: ::std::option::Option<extern "C" fn
                                                        (interp:
                                                             *mut Tcl_Interp,
                                                         objPtr: *mut Tcl_Obj,
                                                         doublePtr:
                                                             *mut ::libc::c_double)
                                                        -> ::libc::c_int>,
    pub tcl_GetIndexFromObj: ::std::option::Option<extern "C" fn
                                                       (interp:
                                                            *mut Tcl_Interp,
                                                        objPtr: *mut Tcl_Obj,
                                                        tablePtr:
                                                            *const *const ::libc::c_char,
                                                        msg:
                                                            *const ::libc::c_char,
                                                        flags: ::libc::c_int,
                                                        indexPtr:
                                                            *mut ::libc::c_int)
                                                       -> ::libc::c_int>,
    pub tcl_GetInt: ::std::option::Option<extern "C" fn
                                              (interp: *mut Tcl_Interp,
                                               src: *const ::libc::c_char,
                                               intPtr: *mut ::libc::c_int)
                                              -> ::libc::c_int>,
    pub tcl_GetIntFromObj: ::std::option::Option<extern "C" fn
                                                     (interp: *mut Tcl_Interp,
                                                      objPtr: *mut Tcl_Obj,
                                                      intPtr:
                                                          *mut ::libc::c_int)
                                                     -> ::libc::c_int>,
    pub tcl_GetLongFromObj: ::std::option::Option<extern "C" fn
                                                      (interp:
                                                           *mut Tcl_Interp,
                                                       objPtr: *mut Tcl_Obj,
                                                       longPtr:
                                                           *mut ::libc::c_long)
                                                      -> ::libc::c_int>,
    pub tcl_GetObjType: ::std::option::Option<extern "C" fn
                                                  (typeName:
                                                       *const ::libc::c_char)
                                                  -> *const Tcl_ObjType>,
    pub tcl_GetStringFromObj: ::std::option::Option<extern "C" fn
                                                        (objPtr: *mut Tcl_Obj,
                                                         lengthPtr:
                                                             *mut ::libc::c_int)
                                                        ->
                                                            *mut ::libc::c_char>,
    pub tcl_InvalidateStringRep: ::std::option::Option<extern "C" fn
                                                           (objPtr:
                                                                *mut Tcl_Obj)
                                                           -> ()>,
    pub tcl_ListObjAppendList: ::std::option::Option<extern "C" fn
                                                         (interp:
                                                              *mut Tcl_Interp,
                                                          listPtr:
                                                              *mut Tcl_Obj,
                                                          elemListPtr:
                                                              *mut Tcl_Obj)
                                                         -> ::libc::c_int>,
    pub tcl_ListObjAppendElement: ::std::option::Option<extern "C" fn
                                                            (interp:
                                                                 *mut Tcl_Interp,
                                                             listPtr:
                                                                 *mut Tcl_Obj,
                                                             objPtr:
                                                                 *mut Tcl_Obj)
                                                            -> ::libc::c_int>,
    pub tcl_ListObjGetElements: ::std::option::Option<extern "C" fn
                                                          (interp:
                                                               *mut Tcl_Interp,
                                                           listPtr:
                                                               *mut Tcl_Obj,
                                                           objcPtr:
                                                               *mut ::libc::c_int,
                                                           objvPtr:
                                                               *mut *mut *mut Tcl_Obj)
                                                          -> ::libc::c_int>,
    pub tcl_ListObjIndex: ::std::option::Option<extern "C" fn
                                                    (interp: *mut Tcl_Interp,
                                                     listPtr: *mut Tcl_Obj,
                                                     index: ::libc::c_int,
                                                     objPtrPtr:
                                                         *mut *mut Tcl_Obj)
                                                    -> ::libc::c_int>,
    pub tcl_ListObjLength: ::std::option::Option<extern "C" fn
                                                     (interp: *mut Tcl_Interp,
                                                      listPtr: *mut Tcl_Obj,
                                                      lengthPtr:
                                                          *mut ::libc::c_int)
                                                     -> ::libc::c_int>,
    pub tcl_ListObjReplace: ::std::option::Option<extern "C" fn
                                                      (interp:
                                                           *mut Tcl_Interp,
                                                       listPtr: *mut Tcl_Obj,
                                                       first: ::libc::c_int,
                                                       count: ::libc::c_int,
                                                       objc: ::libc::c_int,
                                                       objv:
                                                           *const *mut Tcl_Obj)
                                                      -> ::libc::c_int>,
    pub tcl_NewBooleanObj: ::std::option::Option<extern "C" fn
                                                     (boolValue:
                                                          ::libc::c_int)
                                                     -> *mut Tcl_Obj>,
    pub tcl_NewByteArrayObj: ::std::option::Option<extern "C" fn
                                                       (bytes:
                                                            *const ::libc::c_uchar,
                                                        length: ::libc::c_int)
                                                       -> *mut Tcl_Obj>,
    pub tcl_NewDoubleObj: ::std::option::Option<extern "C" fn
                                                    (doubleValue:
                                                         ::libc::c_double)
                                                    -> *mut Tcl_Obj>,
    pub tcl_NewIntObj: ::std::option::Option<extern "C" fn
                                                 (intValue: ::libc::c_int)
                                                 -> *mut Tcl_Obj>,
    pub tcl_NewListObj: ::std::option::Option<extern "C" fn
                                                  (objc: ::libc::c_int,
                                                   objv: *const *mut Tcl_Obj)
                                                  -> *mut Tcl_Obj>,
    pub tcl_NewLongObj: ::std::option::Option<extern "C" fn
                                                  (longValue: ::libc::c_long)
                                                  -> *mut Tcl_Obj>,
    pub tcl_NewObj: ::std::option::Option<extern "C" fn() -> *mut Tcl_Obj>,
    pub tcl_NewStringObj: ::std::option::Option<extern "C" fn
                                                    (bytes:
                                                         *const ::libc::c_char,
                                                     length: ::libc::c_int)
                                                    -> *mut Tcl_Obj>,
    pub tcl_SetBooleanObj: ::std::option::Option<extern "C" fn
                                                     (objPtr: *mut Tcl_Obj,
                                                      boolValue:
                                                          ::libc::c_int)
                                                     -> ()>,
    pub tcl_SetByteArrayLength: ::std::option::Option<extern "C" fn
                                                          (objPtr:
                                                               *mut Tcl_Obj,
                                                           length:
                                                               ::libc::c_int)
                                                          ->
                                                              *mut ::libc::c_uchar>,
    pub tcl_SetByteArrayObj: ::std::option::Option<extern "C" fn
                                                       (objPtr: *mut Tcl_Obj,
                                                        bytes:
                                                            *const ::libc::c_uchar,
                                                        length: ::libc::c_int)
                                                       -> ()>,
    pub tcl_SetDoubleObj: ::std::option::Option<extern "C" fn
                                                    (objPtr: *mut Tcl_Obj,
                                                     doubleValue:
                                                         ::libc::c_double)
                                                    -> ()>,
    pub tcl_SetIntObj: ::std::option::Option<extern "C" fn
                                                 (objPtr: *mut Tcl_Obj,
                                                  intValue: ::libc::c_int)
                                                 -> ()>,
    pub tcl_SetListObj: ::std::option::Option<extern "C" fn
                                                  (objPtr: *mut Tcl_Obj,
                                                   objc: ::libc::c_int,
                                                   objv: *const *mut Tcl_Obj)
                                                  -> ()>,
    pub tcl_SetLongObj: ::std::option::Option<extern "C" fn
                                                  (objPtr: *mut Tcl_Obj,
                                                   longValue: ::libc::c_long)
                                                  -> ()>,
    pub tcl_SetObjLength: ::std::option::Option<extern "C" fn
                                                    (objPtr: *mut Tcl_Obj,
                                                     length: ::libc::c_int)
                                                    -> ()>,
    pub tcl_SetStringObj: ::std::option::Option<extern "C" fn
                                                    (objPtr: *mut Tcl_Obj,
                                                     bytes:
                                                         *const ::libc::c_char,
                                                     length: ::libc::c_int)
                                                    -> ()>,
    pub tcl_AddErrorInfo: ::std::option::Option<extern "C" fn
                                                    (interp: *mut Tcl_Interp,
                                                     message:
                                                         *const ::libc::c_char)
                                                    -> ()>,
    pub tcl_AddObjErrorInfo: ::std::option::Option<extern "C" fn
                                                       (interp:
                                                            *mut Tcl_Interp,
                                                        message:
                                                            *const ::libc::c_char,
                                                        length: ::libc::c_int)
                                                       -> ()>,
    pub tcl_AllowExceptions: ::std::option::Option<extern "C" fn
                                                       (interp:
                                                            *mut Tcl_Interp)
                                                       -> ()>,
    pub tcl_AppendElement: ::std::option::Option<extern "C" fn
                                                     (interp: *mut Tcl_Interp,
                                                      element:
                                                          *const ::libc::c_char)
                                                     -> ()>,
    pub tcl_AppendResult: ::std::option::Option<extern "C" fn
                                                    (interp:
                                                         *mut Tcl_Interp, ...)
                                                    -> ()>,
    pub tcl_AsyncCreate: ::std::option::Option<extern "C" fn
                                                   (_proc: *mut Tcl_AsyncProc,
                                                    clientData: ClientData)
                                                   -> Tcl_AsyncHandler>,
    pub tcl_AsyncDelete: ::std::option::Option<extern "C" fn
                                                   (async: Tcl_AsyncHandler)
                                                   -> ()>,
    pub tcl_AsyncInvoke: ::std::option::Option<extern "C" fn
                                                   (interp: *mut Tcl_Interp,
                                                    code: ::libc::c_int)
                                                   -> ::libc::c_int>,
    pub tcl_AsyncMark: ::std::option::Option<extern "C" fn
                                                 (async: Tcl_AsyncHandler)
                                                 -> ()>,
    pub tcl_AsyncReady: ::std::option::Option<extern "C" fn()
                                                  -> ::libc::c_int>,
    pub tcl_BackgroundError: ::std::option::Option<extern "C" fn
                                                       (interp:
                                                            *mut Tcl_Interp)
                                                       -> ()>,
    pub tcl_Backslash: ::std::option::Option<extern "C" fn
                                                 (src: *const ::libc::c_char,
                                                  readPtr: *mut ::libc::c_int)
                                                 -> ::libc::c_char>,
    pub tcl_BadChannelOption: ::std::option::Option<extern "C" fn
                                                        (interp:
                                                             *mut Tcl_Interp,
                                                         optionName:
                                                             *const ::libc::c_char,
                                                         optionList:
                                                             *const ::libc::c_char)
                                                        -> ::libc::c_int>,
    pub tcl_CallWhenDeleted: ::std::option::Option<extern "C" fn
                                                       (interp:
                                                            *mut Tcl_Interp,
                                                        _proc:
                                                            *mut Tcl_InterpDeleteProc,
                                                        clientData:
                                                            ClientData)
                                                       -> ()>,
    pub tcl_CancelIdleCall: ::std::option::Option<extern "C" fn
                                                      (idleProc:
                                                           *mut Tcl_IdleProc,
                                                       clientData: ClientData)
                                                      -> ()>,
    pub tcl_Close: ::std::option::Option<extern "C" fn
                                             (interp: *mut Tcl_Interp,
                                              chan: Tcl_Channel)
                                             -> ::libc::c_int>,
    pub tcl_CommandComplete: ::std::option::Option<extern "C" fn
                                                       (cmd:
                                                            *const ::libc::c_char)
                                                       -> ::libc::c_int>,
    pub tcl_Concat: ::std::option::Option<extern "C" fn
                                              (argc: ::libc::c_int,
                                               argv:
                                                   *const *const ::libc::c_char)
                                              -> *mut ::libc::c_char>,
    pub tcl_ConvertElement: ::std::option::Option<extern "C" fn
                                                      (src:
                                                           *const ::libc::c_char,
                                                       dst:
                                                           *mut ::libc::c_char,
                                                       flags: ::libc::c_int)
                                                      -> ::libc::c_int>,
    pub tcl_ConvertCountedElement: ::std::option::Option<extern "C" fn
                                                             (src:
                                                                  *const ::libc::c_char,
                                                              length:
                                                                  ::libc::c_int,
                                                              dst:
                                                                  *mut ::libc::c_char,
                                                              flags:
                                                                  ::libc::c_int)
                                                             ->
                                                                 ::libc::c_int>,
    pub tcl_CreateAlias: ::std::option::Option<extern "C" fn
                                                   (slave: *mut Tcl_Interp,
                                                    slaveCmd:
                                                        *const ::libc::c_char,
                                                    target: *mut Tcl_Interp,
                                                    targetCmd:
                                                        *const ::libc::c_char,
                                                    argc: ::libc::c_int,
                                                    argv:
                                                        *const *const ::libc::c_char)
                                                   -> ::libc::c_int>,
    pub tcl_CreateAliasObj: ::std::option::Option<extern "C" fn
                                                      (slave: *mut Tcl_Interp,
                                                       slaveCmd:
                                                           *const ::libc::c_char,
                                                       target:
                                                           *mut Tcl_Interp,
                                                       targetCmd:
                                                           *const ::libc::c_char,
                                                       objc: ::libc::c_int,
                                                       objv:
                                                           *const *mut Tcl_Obj)
                                                      -> ::libc::c_int>,
    pub tcl_CreateChannel: ::std::option::Option<extern "C" fn
                                                     (typePtr:
                                                          *const Tcl_ChannelType,
                                                      chanName:
                                                          *const ::libc::c_char,
                                                      instanceData:
                                                          ClientData,
                                                      mask: ::libc::c_int)
                                                     -> Tcl_Channel>,
    pub tcl_CreateChannelHandler: ::std::option::Option<extern "C" fn
                                                            (chan:
                                                                 Tcl_Channel,
                                                             mask:
                                                                 ::libc::c_int,
                                                             _proc:
                                                                 *mut Tcl_ChannelProc,
                                                             clientData:
                                                                 ClientData)
                                                            -> ()>,
    pub tcl_CreateCloseHandler: ::std::option::Option<extern "C" fn
                                                          (chan: Tcl_Channel,
                                                           _proc:
                                                               *mut Tcl_CloseProc,
                                                           clientData:
                                                               ClientData)
                                                          -> ()>,
    pub tcl_CreateCommand: ::std::option::Option<extern "C" fn
                                                     (interp: *mut Tcl_Interp,
                                                      cmdName:
                                                          *const ::libc::c_char,
                                                      _proc: *mut Tcl_CmdProc,
                                                      clientData: ClientData,
                                                      deleteProc:
                                                          *mut Tcl_CmdDeleteProc)
                                                     -> Tcl_Command>,
    pub tcl_CreateEventSource: ::std::option::Option<extern "C" fn
                                                         (setupProc:
                                                              *mut Tcl_EventSetupProc,
                                                          checkProc:
                                                              *mut Tcl_EventCheckProc,
                                                          clientData:
                                                              ClientData)
                                                         -> ()>,
    pub tcl_CreateExitHandler: ::std::option::Option<extern "C" fn
                                                         (_proc:
                                                              *mut Tcl_ExitProc,
                                                          clientData:
                                                              ClientData)
                                                         -> ()>,
    pub tcl_CreateInterp: ::std::option::Option<extern "C" fn()
                                                    -> *mut Tcl_Interp>,
    pub tcl_CreateMathFunc: ::std::option::Option<extern "C" fn
                                                      (interp:
                                                           *mut Tcl_Interp,
                                                       name:
                                                           *const ::libc::c_char,
                                                       numArgs: ::libc::c_int,
                                                       argTypes:
                                                           *mut Tcl_ValueType,
                                                       _proc:
                                                           *mut Tcl_MathProc,
                                                       clientData: ClientData)
                                                      -> ()>,
    pub tcl_CreateObjCommand: ::std::option::Option<extern "C" fn
                                                        (interp:
                                                             *mut Tcl_Interp,
                                                         cmdName:
                                                             *const ::libc::c_char,
                                                         _proc:
                                                             *mut Tcl_ObjCmdProc,
                                                         clientData:
                                                             ClientData,
                                                         deleteProc:
                                                             *mut Tcl_CmdDeleteProc)
                                                        -> Tcl_Command>,
    pub tcl_CreateSlave: ::std::option::Option<extern "C" fn
                                                   (interp: *mut Tcl_Interp,
                                                    slaveName:
                                                        *const ::libc::c_char,
                                                    isSafe: ::libc::c_int)
                                                   -> *mut Tcl_Interp>,
    pub tcl_CreateTimerHandler: ::std::option::Option<extern "C" fn
                                                          (milliseconds:
                                                               ::libc::c_int,
                                                           _proc:
                                                               *mut Tcl_TimerProc,
                                                           clientData:
                                                               ClientData)
                                                          -> Tcl_TimerToken>,
    pub tcl_CreateTrace: ::std::option::Option<extern "C" fn
                                                   (interp: *mut Tcl_Interp,
                                                    level: ::libc::c_int,
                                                    _proc:
                                                        *mut Tcl_CmdTraceProc,
                                                    clientData: ClientData)
                                                   -> Tcl_Trace>,
    pub tcl_DeleteAssocData: ::std::option::Option<extern "C" fn
                                                       (interp:
                                                            *mut Tcl_Interp,
                                                        name:
                                                            *const ::libc::c_char)
                                                       -> ()>,
    pub tcl_DeleteChannelHandler: ::std::option::Option<extern "C" fn
                                                            (chan:
                                                                 Tcl_Channel,
                                                             _proc:
                                                                 *mut Tcl_ChannelProc,
                                                             clientData:
                                                                 ClientData)
                                                            -> ()>,
    pub tcl_DeleteCloseHandler: ::std::option::Option<extern "C" fn
                                                          (chan: Tcl_Channel,
                                                           _proc:
                                                               *mut Tcl_CloseProc,
                                                           clientData:
                                                               ClientData)
                                                          -> ()>,
    pub tcl_DeleteCommand: ::std::option::Option<extern "C" fn
                                                     (interp: *mut Tcl_Interp,
                                                      cmdName:
                                                          *const ::libc::c_char)
                                                     -> ::libc::c_int>,
    pub tcl_DeleteCommandFromToken: ::std::option::Option<extern "C" fn
                                                              (interp:
                                                                   *mut Tcl_Interp,
                                                               command:
                                                                   Tcl_Command)
                                                              ->
                                                                  ::libc::c_int>,
    pub tcl_DeleteEvents: ::std::option::Option<extern "C" fn
                                                    (_proc:
                                                         *mut Tcl_EventDeleteProc,
                                                     clientData: ClientData)
                                                    -> ()>,
    pub tcl_DeleteEventSource: ::std::option::Option<extern "C" fn
                                                         (setupProc:
                                                              *mut Tcl_EventSetupProc,
                                                          checkProc:
                                                              *mut Tcl_EventCheckProc,
                                                          clientData:
                                                              ClientData)
                                                         -> ()>,
    pub tcl_DeleteExitHandler: ::std::option::Option<extern "C" fn
                                                         (_proc:
                                                              *mut Tcl_ExitProc,
                                                          clientData:
                                                              ClientData)
                                                         -> ()>,
    pub tcl_DeleteHashEntry: ::std::option::Option<extern "C" fn
                                                       (entryPtr:
                                                            *mut Tcl_HashEntry)
                                                       -> ()>,
    pub tcl_DeleteHashTable: ::std::option::Option<extern "C" fn
                                                       (tablePtr:
                                                            *mut Tcl_HashTable)
                                                       -> ()>,
    pub tcl_DeleteInterp: ::std::option::Option<extern "C" fn
                                                    (interp: *mut Tcl_Interp)
                                                    -> ()>,
    pub tcl_DetachPids: ::std::option::Option<extern "C" fn
                                                  (numPids: ::libc::c_int,
                                                   pidPtr: *mut Tcl_Pid)
                                                  -> ()>,
    pub tcl_DeleteTimerHandler: ::std::option::Option<extern "C" fn
                                                          (token:
                                                               Tcl_TimerToken)
                                                          -> ()>,
    pub tcl_DeleteTrace: ::std::option::Option<extern "C" fn
                                                   (interp: *mut Tcl_Interp,
                                                    trace: Tcl_Trace) -> ()>,
    pub tcl_DontCallWhenDeleted: ::std::option::Option<extern "C" fn
                                                           (interp:
                                                                *mut Tcl_Interp,
                                                            _proc:
                                                                *mut Tcl_InterpDeleteProc,
                                                            clientData:
                                                                ClientData)
                                                           -> ()>,
    pub tcl_DoOneEvent: ::std::option::Option<extern "C" fn
                                                  (flags: ::libc::c_int)
                                                  -> ::libc::c_int>,
    pub tcl_DoWhenIdle: ::std::option::Option<extern "C" fn
                                                  (_proc: *mut Tcl_IdleProc,
                                                   clientData: ClientData)
                                                  -> ()>,
    pub tcl_DStringAppend: ::std::option::Option<extern "C" fn
                                                     (dsPtr: *mut Tcl_DString,
                                                      bytes:
                                                          *const ::libc::c_char,
                                                      length: ::libc::c_int)
                                                     -> *mut ::libc::c_char>,
    pub tcl_DStringAppendElement: ::std::option::Option<extern "C" fn
                                                            (dsPtr:
                                                                 *mut Tcl_DString,
                                                             element:
                                                                 *const ::libc::c_char)
                                                            ->
                                                                *mut ::libc::c_char>,
    pub tcl_DStringEndSublist: ::std::option::Option<extern "C" fn
                                                         (dsPtr:
                                                              *mut Tcl_DString)
                                                         -> ()>,
    pub tcl_DStringFree: ::std::option::Option<extern "C" fn
                                                   (dsPtr: *mut Tcl_DString)
                                                   -> ()>,
    pub tcl_DStringGetResult: ::std::option::Option<extern "C" fn
                                                        (interp:
                                                             *mut Tcl_Interp,
                                                         dsPtr:
                                                             *mut Tcl_DString)
                                                        -> ()>,
    pub tcl_DStringInit: ::std::option::Option<extern "C" fn
                                                   (dsPtr: *mut Tcl_DString)
                                                   -> ()>,
    pub tcl_DStringResult: ::std::option::Option<extern "C" fn
                                                     (interp: *mut Tcl_Interp,
                                                      dsPtr: *mut Tcl_DString)
                                                     -> ()>,
    pub tcl_DStringSetLength: ::std::option::Option<extern "C" fn
                                                        (dsPtr:
                                                             *mut Tcl_DString,
                                                         length:
                                                             ::libc::c_int)
                                                        -> ()>,
    pub tcl_DStringStartSublist: ::std::option::Option<extern "C" fn
                                                           (dsPtr:
                                                                *mut Tcl_DString)
                                                           -> ()>,
    pub tcl_Eof: ::std::option::Option<extern "C" fn(chan: Tcl_Channel)
                                           -> ::libc::c_int>,
    pub tcl_ErrnoId: ::std::option::Option<extern "C" fn()
                                               -> *const ::libc::c_char>,
    pub tcl_ErrnoMsg: ::std::option::Option<extern "C" fn(err: ::libc::c_int)
                                                -> *const ::libc::c_char>,
    pub tcl_Eval: ::std::option::Option<extern "C" fn
                                            (interp: *mut Tcl_Interp,
                                             script: *const ::libc::c_char)
                                            -> ::libc::c_int>,
    pub tcl_EvalFile: ::std::option::Option<extern "C" fn
                                                (interp: *mut Tcl_Interp,
                                                 fileName:
                                                     *const ::libc::c_char)
                                                -> ::libc::c_int>,
    pub tcl_EvalObj: ::std::option::Option<extern "C" fn
                                               (interp: *mut Tcl_Interp,
                                                objPtr: *mut Tcl_Obj)
                                               -> ::libc::c_int>,
    pub tcl_EventuallyFree: ::std::option::Option<extern "C" fn
                                                      (clientData: ClientData,
                                                       freeProc:
                                                           *mut Tcl_FreeProc)
                                                      -> ()>,
    pub tcl_Exit: ::std::option::Option<extern "C" fn(status: ::libc::c_int)
                                            -> ()>,
    pub tcl_ExposeCommand: ::std::option::Option<extern "C" fn
                                                     (interp: *mut Tcl_Interp,
                                                      hiddenCmdToken:
                                                          *const ::libc::c_char,
                                                      cmdName:
                                                          *const ::libc::c_char)
                                                     -> ::libc::c_int>,
    pub tcl_ExprBoolean: ::std::option::Option<extern "C" fn
                                                   (interp: *mut Tcl_Interp,
                                                    expr:
                                                        *const ::libc::c_char,
                                                    ptr: *mut ::libc::c_int)
                                                   -> ::libc::c_int>,
    pub tcl_ExprBooleanObj: ::std::option::Option<extern "C" fn
                                                      (interp:
                                                           *mut Tcl_Interp,
                                                       objPtr: *mut Tcl_Obj,
                                                       ptr:
                                                           *mut ::libc::c_int)
                                                      -> ::libc::c_int>,
    pub tcl_ExprDouble: ::std::option::Option<extern "C" fn
                                                  (interp: *mut Tcl_Interp,
                                                   expr:
                                                       *const ::libc::c_char,
                                                   ptr: *mut ::libc::c_double)
                                                  -> ::libc::c_int>,
    pub tcl_ExprDoubleObj: ::std::option::Option<extern "C" fn
                                                     (interp: *mut Tcl_Interp,
                                                      objPtr: *mut Tcl_Obj,
                                                      ptr:
                                                          *mut ::libc::c_double)
                                                     -> ::libc::c_int>,
    pub tcl_ExprLong: ::std::option::Option<extern "C" fn
                                                (interp: *mut Tcl_Interp,
                                                 expr: *const ::libc::c_char,
                                                 ptr: *mut ::libc::c_long)
                                                -> ::libc::c_int>,
    pub tcl_ExprLongObj: ::std::option::Option<extern "C" fn
                                                   (interp: *mut Tcl_Interp,
                                                    objPtr: *mut Tcl_Obj,
                                                    ptr: *mut ::libc::c_long)
                                                   -> ::libc::c_int>,
    pub tcl_ExprObj: ::std::option::Option<extern "C" fn
                                               (interp: *mut Tcl_Interp,
                                                objPtr: *mut Tcl_Obj,
                                                resultPtrPtr:
                                                    *mut *mut Tcl_Obj)
                                               -> ::libc::c_int>,
    pub tcl_ExprString: ::std::option::Option<extern "C" fn
                                                  (interp: *mut Tcl_Interp,
                                                   expr:
                                                       *const ::libc::c_char)
                                                  -> ::libc::c_int>,
    pub tcl_Finalize: ::std::option::Option<extern "C" fn() -> ()>,
    pub tcl_FindExecutable: ::std::option::Option<extern "C" fn
                                                      (argv0:
                                                           *const ::libc::c_char)
                                                      -> ()>,
    pub tcl_FirstHashEntry: ::std::option::Option<extern "C" fn
                                                      (tablePtr:
                                                           *mut Tcl_HashTable,
                                                       searchPtr:
                                                           *mut Tcl_HashSearch)
                                                      -> *mut Tcl_HashEntry>,
    pub tcl_Flush: ::std::option::Option<extern "C" fn(chan: Tcl_Channel)
                                             -> ::libc::c_int>,
    pub tcl_FreeResult: ::std::option::Option<extern "C" fn
                                                  (interp: *mut Tcl_Interp)
                                                  -> ()>,
    pub tcl_GetAlias: ::std::option::Option<extern "C" fn
                                                (interp: *mut Tcl_Interp,
                                                 slaveCmd:
                                                     *const ::libc::c_char,
                                                 targetInterpPtr:
                                                     *mut *mut Tcl_Interp,
                                                 targetCmdPtr:
                                                     *mut *const ::libc::c_char,
                                                 argcPtr: *mut ::libc::c_int,
                                                 argvPtr:
                                                     *mut *mut *const ::libc::c_char)
                                                -> ::libc::c_int>,
    pub tcl_GetAliasObj: ::std::option::Option<extern "C" fn
                                                   (interp: *mut Tcl_Interp,
                                                    slaveCmd:
                                                        *const ::libc::c_char,
                                                    targetInterpPtr:
                                                        *mut *mut Tcl_Interp,
                                                    targetCmdPtr:
                                                        *mut *const ::libc::c_char,
                                                    objcPtr:
                                                        *mut ::libc::c_int,
                                                    objv:
                                                        *mut *mut *mut Tcl_Obj)
                                                   -> ::libc::c_int>,
    pub tcl_GetAssocData: ::std::option::Option<extern "C" fn
                                                    (interp: *mut Tcl_Interp,
                                                     name:
                                                         *const ::libc::c_char,
                                                     procPtr:
                                                         *mut *mut Tcl_InterpDeleteProc)
                                                    -> ClientData>,
    pub tcl_GetChannel: ::std::option::Option<extern "C" fn
                                                  (interp: *mut Tcl_Interp,
                                                   chanName:
                                                       *const ::libc::c_char,
                                                   modePtr:
                                                       *mut ::libc::c_int)
                                                  -> Tcl_Channel>,
    pub tcl_GetChannelBufferSize: ::std::option::Option<extern "C" fn
                                                            (chan:
                                                                 Tcl_Channel)
                                                            -> ::libc::c_int>,
    pub tcl_GetChannelHandle: ::std::option::Option<extern "C" fn
                                                        (chan: Tcl_Channel,
                                                         direction:
                                                             ::libc::c_int,
                                                         handlePtr:
                                                             *mut ClientData)
                                                        -> ::libc::c_int>,
    pub tcl_GetChannelInstanceData: ::std::option::Option<extern "C" fn
                                                              (chan:
                                                                   Tcl_Channel)
                                                              -> ClientData>,
    pub tcl_GetChannelMode: ::std::option::Option<extern "C" fn
                                                      (chan: Tcl_Channel)
                                                      -> ::libc::c_int>,
    pub tcl_GetChannelName: ::std::option::Option<extern "C" fn
                                                      (chan: Tcl_Channel)
                                                      ->
                                                          *const ::libc::c_char>,
    pub tcl_GetChannelOption: ::std::option::Option<extern "C" fn
                                                        (interp:
                                                             *mut Tcl_Interp,
                                                         chan: Tcl_Channel,
                                                         optionName:
                                                             *const ::libc::c_char,
                                                         dsPtr:
                                                             *mut Tcl_DString)
                                                        -> ::libc::c_int>,
    pub tcl_GetChannelType: ::std::option::Option<extern "C" fn
                                                      (chan: Tcl_Channel)
                                                      ->
                                                          *const Tcl_ChannelType>,
    pub tcl_GetCommandInfo: ::std::option::Option<extern "C" fn
                                                      (interp:
                                                           *mut Tcl_Interp,
                                                       cmdName:
                                                           *const ::libc::c_char,
                                                       infoPtr:
                                                           *mut Tcl_CmdInfo)
                                                      -> ::libc::c_int>,
    pub tcl_GetCommandName: ::std::option::Option<extern "C" fn
                                                      (interp:
                                                           *mut Tcl_Interp,
                                                       command: Tcl_Command)
                                                      ->
                                                          *const ::libc::c_char>,
    pub tcl_GetErrno: ::std::option::Option<extern "C" fn() -> ::libc::c_int>,
    pub tcl_GetHostName: ::std::option::Option<extern "C" fn()
                                                   -> *const ::libc::c_char>,
    pub tcl_GetInterpPath: ::std::option::Option<extern "C" fn
                                                     (askInterp:
                                                          *mut Tcl_Interp,
                                                      slaveInterp:
                                                          *mut Tcl_Interp)
                                                     -> ::libc::c_int>,
    pub tcl_GetMaster: ::std::option::Option<extern "C" fn
                                                 (interp: *mut Tcl_Interp)
                                                 -> *mut Tcl_Interp>,
    pub tcl_GetNameOfExecutable: ::std::option::Option<extern "C" fn()
                                                           ->
                                                               *const ::libc::c_char>,
    pub tcl_GetObjResult: ::std::option::Option<extern "C" fn
                                                    (interp: *mut Tcl_Interp)
                                                    -> *mut Tcl_Obj>,
    pub tcl_GetOpenFile: ::std::option::Option<extern "C" fn
                                                   (interp: *mut Tcl_Interp,
                                                    chanID:
                                                        *const ::libc::c_char,
                                                    forWriting: ::libc::c_int,
                                                    checkUsage: ::libc::c_int,
                                                    filePtr: *mut ClientData)
                                                   -> ::libc::c_int>,
    pub tcl_GetPathType: ::std::option::Option<extern "C" fn
                                                   (path:
                                                        *const ::libc::c_char)
                                                   -> Tcl_PathType>,
    pub tcl_Gets: ::std::option::Option<extern "C" fn
                                            (chan: Tcl_Channel,
                                             dsPtr: *mut Tcl_DString)
                                            -> ::libc::c_int>,
    pub tcl_GetsObj: ::std::option::Option<extern "C" fn
                                               (chan: Tcl_Channel,
                                                objPtr: *mut Tcl_Obj)
                                               -> ::libc::c_int>,
    pub tcl_GetServiceMode: ::std::option::Option<extern "C" fn()
                                                      -> ::libc::c_int>,
    pub tcl_GetSlave: ::std::option::Option<extern "C" fn
                                                (interp: *mut Tcl_Interp,
                                                 slaveName:
                                                     *const ::libc::c_char)
                                                -> *mut Tcl_Interp>,
    pub tcl_GetStdChannel: ::std::option::Option<extern "C" fn
                                                     (_type: ::libc::c_int)
                                                     -> Tcl_Channel>,
    pub tcl_GetStringResult: ::std::option::Option<extern "C" fn
                                                       (interp:
                                                            *mut Tcl_Interp)
                                                       ->
                                                           *const ::libc::c_char>,
    pub tcl_GetVar: ::std::option::Option<extern "C" fn
                                              (interp: *mut Tcl_Interp,
                                               varName: *const ::libc::c_char,
                                               flags: ::libc::c_int)
                                              -> *const ::libc::c_char>,
    pub tcl_GetVar2: ::std::option::Option<extern "C" fn
                                               (interp: *mut Tcl_Interp,
                                                part1: *const ::libc::c_char,
                                                part2: *const ::libc::c_char,
                                                flags: ::libc::c_int)
                                               -> *const ::libc::c_char>,
    pub tcl_GlobalEval: ::std::option::Option<extern "C" fn
                                                  (interp: *mut Tcl_Interp,
                                                   command:
                                                       *const ::libc::c_char)
                                                  -> ::libc::c_int>,
    pub tcl_GlobalEvalObj: ::std::option::Option<extern "C" fn
                                                     (interp: *mut Tcl_Interp,
                                                      objPtr: *mut Tcl_Obj)
                                                     -> ::libc::c_int>,
    pub tcl_HideCommand: ::std::option::Option<extern "C" fn
                                                   (interp: *mut Tcl_Interp,
                                                    cmdName:
                                                        *const ::libc::c_char,
                                                    hiddenCmdToken:
                                                        *const ::libc::c_char)
                                                   -> ::libc::c_int>,
    pub tcl_Init: ::std::option::Option<extern "C" fn(interp: *mut Tcl_Interp)
                                            -> ::libc::c_int>,
    pub tcl_InitHashTable: ::std::option::Option<extern "C" fn
                                                     (tablePtr:
                                                          *mut Tcl_HashTable,
                                                      keyType: ::libc::c_int)
                                                     -> ()>,
    pub tcl_InputBlocked: ::std::option::Option<extern "C" fn
                                                    (chan: Tcl_Channel)
                                                    -> ::libc::c_int>,
    pub tcl_InputBuffered: ::std::option::Option<extern "C" fn
                                                     (chan: Tcl_Channel)
                                                     -> ::libc::c_int>,
    pub tcl_InterpDeleted: ::std::option::Option<extern "C" fn
                                                     (interp: *mut Tcl_Interp)
                                                     -> ::libc::c_int>,
    pub tcl_IsSafe: ::std::option::Option<extern "C" fn
                                              (interp: *mut Tcl_Interp)
                                              -> ::libc::c_int>,
    pub tcl_JoinPath: ::std::option::Option<extern "C" fn
                                                (argc: ::libc::c_int,
                                                 argv:
                                                     *const *const ::libc::c_char,
                                                 resultPtr: *mut Tcl_DString)
                                                -> *mut ::libc::c_char>,
    pub tcl_LinkVar: ::std::option::Option<extern "C" fn
                                               (interp: *mut Tcl_Interp,
                                                varName:
                                                    *const ::libc::c_char,
                                                addr: *mut ::libc::c_char,
                                                _type: ::libc::c_int)
                                               -> ::libc::c_int>,
    pub reserved188: ::std::option::Option<extern "C" fn() -> ()>,
    pub tcl_MakeFileChannel: ::std::option::Option<extern "C" fn
                                                       (handle: ClientData,
                                                        mode: ::libc::c_int)
                                                       -> Tcl_Channel>,
    pub tcl_MakeSafe: ::std::option::Option<extern "C" fn
                                                (interp: *mut Tcl_Interp)
                                                -> ::libc::c_int>,
    pub tcl_MakeTcpClientChannel: ::std::option::Option<extern "C" fn
                                                            (tcpSocket:
                                                                 ClientData)
                                                            -> Tcl_Channel>,
    pub tcl_Merge: ::std::option::Option<extern "C" fn
                                             (argc: ::libc::c_int,
                                              argv:
                                                  *const *const ::libc::c_char)
                                             -> *mut ::libc::c_char>,
    pub tcl_NextHashEntry: ::std::option::Option<extern "C" fn
                                                     (searchPtr:
                                                          *mut Tcl_HashSearch)
                                                     -> *mut Tcl_HashEntry>,
    pub tcl_NotifyChannel: ::std::option::Option<extern "C" fn
                                                     (channel: Tcl_Channel,
                                                      mask: ::libc::c_int)
                                                     -> ()>,
    pub tcl_ObjGetVar2: ::std::option::Option<extern "C" fn
                                                  (interp: *mut Tcl_Interp,
                                                   part1Ptr: *mut Tcl_Obj,
                                                   part2Ptr: *mut Tcl_Obj,
                                                   flags: ::libc::c_int)
                                                  -> *mut Tcl_Obj>,
    pub tcl_ObjSetVar2: ::std::option::Option<extern "C" fn
                                                  (interp: *mut Tcl_Interp,
                                                   part1Ptr: *mut Tcl_Obj,
                                                   part2Ptr: *mut Tcl_Obj,
                                                   newValuePtr: *mut Tcl_Obj,
                                                   flags: ::libc::c_int)
                                                  -> *mut Tcl_Obj>,
    pub tcl_OpenCommandChannel: ::std::option::Option<extern "C" fn
                                                          (interp:
                                                               *mut Tcl_Interp,
                                                           argc:
                                                               ::libc::c_int,
                                                           argv:
                                                               *mut *const ::libc::c_char,
                                                           flags:
                                                               ::libc::c_int)
                                                          -> Tcl_Channel>,
    pub tcl_OpenFileChannel: ::std::option::Option<extern "C" fn
                                                       (interp:
                                                            *mut Tcl_Interp,
                                                        fileName:
                                                            *const ::libc::c_char,
                                                        modeString:
                                                            *const ::libc::c_char,
                                                        permissions:
                                                            ::libc::c_int)
                                                       -> Tcl_Channel>,
    pub tcl_OpenTcpClient: ::std::option::Option<extern "C" fn
                                                     (interp: *mut Tcl_Interp,
                                                      port: ::libc::c_int,
                                                      address:
                                                          *const ::libc::c_char,
                                                      myaddr:
                                                          *const ::libc::c_char,
                                                      myport: ::libc::c_int,
                                                      async: ::libc::c_int)
                                                     -> Tcl_Channel>,
    pub tcl_OpenTcpServer: ::std::option::Option<extern "C" fn
                                                     (interp: *mut Tcl_Interp,
                                                      port: ::libc::c_int,
                                                      host:
                                                          *const ::libc::c_char,
                                                      acceptProc:
                                                          *mut Tcl_TcpAcceptProc,
                                                      callbackData:
                                                          ClientData)
                                                     -> Tcl_Channel>,
    pub tcl_Preserve: ::std::option::Option<extern "C" fn(data: ClientData)
                                                -> ()>,
    pub tcl_PrintDouble: ::std::option::Option<extern "C" fn
                                                   (interp: *mut Tcl_Interp,
                                                    value: ::libc::c_double,
                                                    dst: *mut ::libc::c_char)
                                                   -> ()>,
    pub tcl_PutEnv: ::std::option::Option<extern "C" fn
                                              (assignment:
                                                   *const ::libc::c_char)
                                              -> ::libc::c_int>,
    pub tcl_PosixError: ::std::option::Option<extern "C" fn
                                                  (interp: *mut Tcl_Interp)
                                                  -> *const ::libc::c_char>,
    pub tcl_QueueEvent: ::std::option::Option<extern "C" fn
                                                  (evPtr: *mut Tcl_Event,
                                                   position:
                                                       Tcl_QueuePosition)
                                                  -> ()>,
    pub tcl_Read: ::std::option::Option<extern "C" fn
                                            (chan: Tcl_Channel,
                                             bufPtr: *mut ::libc::c_char,
                                             toRead: ::libc::c_int)
                                            -> ::libc::c_int>,
    pub tcl_ReapDetachedProcs: ::std::option::Option<extern "C" fn() -> ()>,
    pub tcl_RecordAndEval: ::std::option::Option<extern "C" fn
                                                     (interp: *mut Tcl_Interp,
                                                      cmd:
                                                          *const ::libc::c_char,
                                                      flags: ::libc::c_int)
                                                     -> ::libc::c_int>,
    pub tcl_RecordAndEvalObj: ::std::option::Option<extern "C" fn
                                                        (interp:
                                                             *mut Tcl_Interp,
                                                         cmdPtr: *mut Tcl_Obj,
                                                         flags: ::libc::c_int)
                                                        -> ::libc::c_int>,
    pub tcl_RegisterChannel: ::std::option::Option<extern "C" fn
                                                       (interp:
                                                            *mut Tcl_Interp,
                                                        chan: Tcl_Channel)
                                                       -> ()>,
    pub tcl_RegisterObjType: ::std::option::Option<extern "C" fn
                                                       (typePtr:
                                                            *const Tcl_ObjType)
                                                       -> ()>,
    pub tcl_RegExpCompile: ::std::option::Option<extern "C" fn
                                                     (interp: *mut Tcl_Interp,
                                                      pattern:
                                                          *const ::libc::c_char)
                                                     -> Tcl_RegExp>,
    pub tcl_RegExpExec: ::std::option::Option<extern "C" fn
                                                  (interp: *mut Tcl_Interp,
                                                   regexp: Tcl_RegExp,
                                                   text:
                                                       *const ::libc::c_char,
                                                   start:
                                                       *const ::libc::c_char)
                                                  -> ::libc::c_int>,
    pub tcl_RegExpMatch: ::std::option::Option<extern "C" fn
                                                   (interp: *mut Tcl_Interp,
                                                    text:
                                                        *const ::libc::c_char,
                                                    pattern:
                                                        *const ::libc::c_char)
                                                   -> ::libc::c_int>,
    pub tcl_RegExpRange: ::std::option::Option<extern "C" fn
                                                   (regexp: Tcl_RegExp,
                                                    index: ::libc::c_int,
                                                    startPtr:
                                                        *mut *const ::libc::c_char,
                                                    endPtr:
                                                        *mut *const ::libc::c_char)
                                                   -> ()>,
    pub tcl_Release: ::std::option::Option<extern "C" fn
                                               (clientData: ClientData)
                                               -> ()>,
    pub tcl_ResetResult: ::std::option::Option<extern "C" fn
                                                   (interp: *mut Tcl_Interp)
                                                   -> ()>,
    pub tcl_ScanElement: ::std::option::Option<extern "C" fn
                                                   (src:
                                                        *const ::libc::c_char,
                                                    flagPtr:
                                                        *mut ::libc::c_int)
                                                   -> ::libc::c_int>,
    pub tcl_ScanCountedElement: ::std::option::Option<extern "C" fn
                                                          (src:
                                                               *const ::libc::c_char,
                                                           length:
                                                               ::libc::c_int,
                                                           flagPtr:
                                                               *mut ::libc::c_int)
                                                          -> ::libc::c_int>,
    pub tcl_SeekOld: ::std::option::Option<extern "C" fn
                                               (chan: Tcl_Channel,
                                                offset: ::libc::c_int,
                                                mode: ::libc::c_int)
                                               -> ::libc::c_int>,
    pub tcl_ServiceAll: ::std::option::Option<extern "C" fn()
                                                  -> ::libc::c_int>,
    pub tcl_ServiceEvent: ::std::option::Option<extern "C" fn
                                                    (flags: ::libc::c_int)
                                                    -> ::libc::c_int>,
    pub tcl_SetAssocData: ::std::option::Option<extern "C" fn
                                                    (interp: *mut Tcl_Interp,
                                                     name:
                                                         *const ::libc::c_char,
                                                     _proc:
                                                         *mut Tcl_InterpDeleteProc,
                                                     clientData: ClientData)
                                                    -> ()>,
    pub tcl_SetChannelBufferSize: ::std::option::Option<extern "C" fn
                                                            (chan:
                                                                 Tcl_Channel,
                                                             sz:
                                                                 ::libc::c_int)
                                                            -> ()>,
    pub tcl_SetChannelOption: ::std::option::Option<extern "C" fn
                                                        (interp:
                                                             *mut Tcl_Interp,
                                                         chan: Tcl_Channel,
                                                         optionName:
                                                             *const ::libc::c_char,
                                                         newValue:
                                                             *const ::libc::c_char)
                                                        -> ::libc::c_int>,
    pub tcl_SetCommandInfo: ::std::option::Option<extern "C" fn
                                                      (interp:
                                                           *mut Tcl_Interp,
                                                       cmdName:
                                                           *const ::libc::c_char,
                                                       infoPtr:
                                                           *const Tcl_CmdInfo)
                                                      -> ::libc::c_int>,
    pub tcl_SetErrno: ::std::option::Option<extern "C" fn(err: ::libc::c_int)
                                                -> ()>,
    pub tcl_SetErrorCode: ::std::option::Option<extern "C" fn
                                                    (interp:
                                                         *mut Tcl_Interp, ...)
                                                    -> ()>,
    pub tcl_SetMaxBlockTime: ::std::option::Option<extern "C" fn
                                                       (timePtr:
                                                            *const Tcl_Time)
                                                       -> ()>,
    pub tcl_SetPanicProc: ::std::option::Option<extern "C" fn
                                                    (panicProc:
                                                         *mut Tcl_PanicProc)
                                                    -> ()>,
    pub tcl_SetRecursionLimit: ::std::option::Option<extern "C" fn
                                                         (interp:
                                                              *mut Tcl_Interp,
                                                          depth:
                                                              ::libc::c_int)
                                                         -> ::libc::c_int>,
    pub tcl_SetResult: ::std::option::Option<extern "C" fn
                                                 (interp: *mut Tcl_Interp,
                                                  result: *mut ::libc::c_char,
                                                  freeProc: *mut Tcl_FreeProc)
                                                 -> ()>,
    pub tcl_SetServiceMode: ::std::option::Option<extern "C" fn
                                                      (mode: ::libc::c_int)
                                                      -> ::libc::c_int>,
    pub tcl_SetObjErrorCode: ::std::option::Option<extern "C" fn
                                                       (interp:
                                                            *mut Tcl_Interp,
                                                        errorObjPtr:
                                                            *mut Tcl_Obj)
                                                       -> ()>,
    pub tcl_SetObjResult: ::std::option::Option<extern "C" fn
                                                    (interp: *mut Tcl_Interp,
                                                     resultObjPtr:
                                                         *mut Tcl_Obj) -> ()>,
    pub tcl_SetStdChannel: ::std::option::Option<extern "C" fn
                                                     (channel: Tcl_Channel,
                                                      _type: ::libc::c_int)
                                                     -> ()>,
    pub tcl_SetVar: ::std::option::Option<extern "C" fn
                                              (interp: *mut Tcl_Interp,
                                               varName: *const ::libc::c_char,
                                               newValue:
                                                   *const ::libc::c_char,
                                               flags: ::libc::c_int)
                                              -> *const ::libc::c_char>,
    pub tcl_SetVar2: ::std::option::Option<extern "C" fn
                                               (interp: *mut Tcl_Interp,
                                                part1: *const ::libc::c_char,
                                                part2: *const ::libc::c_char,
                                                newValue:
                                                    *const ::libc::c_char,
                                                flags: ::libc::c_int)
                                               -> *const ::libc::c_char>,
    pub tcl_SignalId: ::std::option::Option<extern "C" fn(sig: ::libc::c_int)
                                                -> *const ::libc::c_char>,
    pub tcl_SignalMsg: ::std::option::Option<extern "C" fn(sig: ::libc::c_int)
                                                 -> *const ::libc::c_char>,
    pub tcl_SourceRCFile: ::std::option::Option<extern "C" fn
                                                    (interp: *mut Tcl_Interp)
                                                    -> ()>,
    pub tcl_SplitList: ::std::option::Option<extern "C" fn
                                                 (interp: *mut Tcl_Interp,
                                                  listStr:
                                                      *const ::libc::c_char,
                                                  argcPtr: *mut ::libc::c_int,
                                                  argvPtr:
                                                      *mut *mut *const ::libc::c_char)
                                                 -> ::libc::c_int>,
    pub tcl_SplitPath: ::std::option::Option<extern "C" fn
                                                 (path: *const ::libc::c_char,
                                                  argcPtr: *mut ::libc::c_int,
                                                  argvPtr:
                                                      *mut *mut *const ::libc::c_char)
                                                 -> ()>,
    pub tcl_StaticPackage: ::std::option::Option<extern "C" fn
                                                     (interp: *mut Tcl_Interp,
                                                      pkgName:
                                                          *const ::libc::c_char,
                                                      initProc:
                                                          *mut Tcl_PackageInitProc,
                                                      safeInitProc:
                                                          *mut Tcl_PackageInitProc)
                                                     -> ()>,
    pub tcl_StringMatch: ::std::option::Option<extern "C" fn
                                                   (str:
                                                        *const ::libc::c_char,
                                                    pattern:
                                                        *const ::libc::c_char)
                                                   -> ::libc::c_int>,
    pub tcl_TellOld: ::std::option::Option<extern "C" fn(chan: Tcl_Channel)
                                               -> ::libc::c_int>,
    pub tcl_TraceVar: ::std::option::Option<extern "C" fn
                                                (interp: *mut Tcl_Interp,
                                                 varName:
                                                     *const ::libc::c_char,
                                                 flags: ::libc::c_int,
                                                 _proc: *mut Tcl_VarTraceProc,
                                                 clientData: ClientData)
                                                -> ::libc::c_int>,
    pub tcl_TraceVar2: ::std::option::Option<extern "C" fn
                                                 (interp: *mut Tcl_Interp,
                                                  part1:
                                                      *const ::libc::c_char,
                                                  part2:
                                                      *const ::libc::c_char,
                                                  flags: ::libc::c_int,
                                                  _proc:
                                                      *mut Tcl_VarTraceProc,
                                                  clientData: ClientData)
                                                 -> ::libc::c_int>,
    pub tcl_TranslateFileName: ::std::option::Option<extern "C" fn
                                                         (interp:
                                                              *mut Tcl_Interp,
                                                          name:
                                                              *const ::libc::c_char,
                                                          bufferPtr:
                                                              *mut Tcl_DString)
                                                         ->
                                                             *mut ::libc::c_char>,
    pub tcl_Ungets: ::std::option::Option<extern "C" fn
                                              (chan: Tcl_Channel,
                                               str: *const ::libc::c_char,
                                               len: ::libc::c_int,
                                               atHead: ::libc::c_int)
                                              -> ::libc::c_int>,
    pub tcl_UnlinkVar: ::std::option::Option<extern "C" fn
                                                 (interp: *mut Tcl_Interp,
                                                  varName:
                                                      *const ::libc::c_char)
                                                 -> ()>,
    pub tcl_UnregisterChannel: ::std::option::Option<extern "C" fn
                                                         (interp:
                                                              *mut Tcl_Interp,
                                                          chan: Tcl_Channel)
                                                         -> ::libc::c_int>,
    pub tcl_UnsetVar: ::std::option::Option<extern "C" fn
                                                (interp: *mut Tcl_Interp,
                                                 varName:
                                                     *const ::libc::c_char,
                                                 flags: ::libc::c_int)
                                                -> ::libc::c_int>,
    pub tcl_UnsetVar2: ::std::option::Option<extern "C" fn
                                                 (interp: *mut Tcl_Interp,
                                                  part1:
                                                      *const ::libc::c_char,
                                                  part2:
                                                      *const ::libc::c_char,
                                                  flags: ::libc::c_int)
                                                 -> ::libc::c_int>,
    pub tcl_UntraceVar: ::std::option::Option<extern "C" fn
                                                  (interp: *mut Tcl_Interp,
                                                   varName:
                                                       *const ::libc::c_char,
                                                   flags: ::libc::c_int,
                                                   _proc:
                                                       *mut Tcl_VarTraceProc,
                                                   clientData: ClientData)
                                                  -> ()>,
    pub tcl_UntraceVar2: ::std::option::Option<extern "C" fn
                                                   (interp: *mut Tcl_Interp,
                                                    part1:
                                                        *const ::libc::c_char,
                                                    part2:
                                                        *const ::libc::c_char,
                                                    flags: ::libc::c_int,
                                                    _proc:
                                                        *mut Tcl_VarTraceProc,
                                                    clientData: ClientData)
                                                   -> ()>,
    pub tcl_UpdateLinkedVar: ::std::option::Option<extern "C" fn
                                                       (interp:
                                                            *mut Tcl_Interp,
                                                        varName:
                                                            *const ::libc::c_char)
                                                       -> ()>,
    pub tcl_UpVar: ::std::option::Option<extern "C" fn
                                             (interp: *mut Tcl_Interp,
                                              frameName:
                                                  *const ::libc::c_char,
                                              varName: *const ::libc::c_char,
                                              localName:
                                                  *const ::libc::c_char,
                                              flags: ::libc::c_int)
                                             -> ::libc::c_int>,
    pub tcl_UpVar2: ::std::option::Option<extern "C" fn
                                              (interp: *mut Tcl_Interp,
                                               frameName:
                                                   *const ::libc::c_char,
                                               part1: *const ::libc::c_char,
                                               part2: *const ::libc::c_char,
                                               localName:
                                                   *const ::libc::c_char,
                                               flags: ::libc::c_int)
                                              -> ::libc::c_int>,
    pub tcl_VarEval: ::std::option::Option<extern "C" fn
                                               (interp: *mut Tcl_Interp, ...)
                                               -> ::libc::c_int>,
    pub tcl_VarTraceInfo: ::std::option::Option<extern "C" fn
                                                    (interp: *mut Tcl_Interp,
                                                     varName:
                                                         *const ::libc::c_char,
                                                     flags: ::libc::c_int,
                                                     procPtr:
                                                         *mut Tcl_VarTraceProc,
                                                     prevClientData:
                                                         ClientData)
                                                    -> ClientData>,
    pub tcl_VarTraceInfo2: ::std::option::Option<extern "C" fn
                                                     (interp: *mut Tcl_Interp,
                                                      part1:
                                                          *const ::libc::c_char,
                                                      part2:
                                                          *const ::libc::c_char,
                                                      flags: ::libc::c_int,
                                                      procPtr:
                                                          *mut Tcl_VarTraceProc,
                                                      prevClientData:
                                                          ClientData)
                                                     -> ClientData>,
    pub tcl_Write: ::std::option::Option<extern "C" fn
                                             (chan: Tcl_Channel,
                                              s: *const ::libc::c_char,
                                              slen: ::libc::c_int)
                                             -> ::libc::c_int>,
    pub tcl_WrongNumArgs: ::std::option::Option<extern "C" fn
                                                    (interp: *mut Tcl_Interp,
                                                     objc: ::libc::c_int,
                                                     objv:
                                                         *const *mut Tcl_Obj,
                                                     message:
                                                         *const ::libc::c_char)
                                                    -> ()>,
    pub tcl_DumpActiveMemory: ::std::option::Option<extern "C" fn
                                                        (fileName:
                                                             *const ::libc::c_char)
                                                        -> ::libc::c_int>,
    pub tcl_ValidateAllMemory: ::std::option::Option<extern "C" fn
                                                         (file:
                                                              *const ::libc::c_char,
                                                          line: ::libc::c_int)
                                                         -> ()>,
/*    pub tcl_AppendResultVA: ::std::option::Option<extern "C" fn
                                                      (interp:
                                                           *mut Tcl_Interp,
                                                       argList: va_list)
                                                      -> ()>,*/
/*    pub tcl_AppendStringsToObjVA: ::std::option::Option<extern "C" fn
                                                            (objPtr:
                                                                 *mut Tcl_Obj,
                                                             argList: va_list)
                                                            -> ()>,*/
    pub tcl_HashStats: ::std::option::Option<extern "C" fn
                                                 (tablePtr:
                                                      *mut Tcl_HashTable)
                                                 -> *mut ::libc::c_char>,
    pub tcl_ParseVar: ::std::option::Option<extern "C" fn
                                                (interp: *mut Tcl_Interp,
                                                 start: *const ::libc::c_char,
                                                 termPtr:
                                                     *mut *const ::libc::c_char)
                                                -> *const ::libc::c_char>,
    pub tcl_PkgPresent: ::std::option::Option<extern "C" fn
                                                  (interp: *mut Tcl_Interp,
                                                   name:
                                                       *const ::libc::c_char,
                                                   version:
                                                       *const ::libc::c_char,
                                                   exact: ::libc::c_int)
                                                  -> *const ::libc::c_char>,
    pub tcl_PkgPresentEx: ::std::option::Option<extern "C" fn
                                                    (interp: *mut Tcl_Interp,
                                                     name:
                                                         *const ::libc::c_char,
                                                     version:
                                                         *const ::libc::c_char,
                                                     exact: ::libc::c_int,
                                                     clientDataPtr:
                                                         *mut ::libc::c_void)
                                                    -> *const ::libc::c_char>,
    pub tcl_PkgProvide: ::std::option::Option<extern "C" fn
                                                  (interp: *mut Tcl_Interp,
                                                   name:
                                                       *const ::libc::c_char,
                                                   version:
                                                       *const ::libc::c_char)
                                                  -> ::libc::c_int>,
    pub tcl_PkgRequire: ::std::option::Option<extern "C" fn
                                                  (interp: *mut Tcl_Interp,
                                                   name:
                                                       *const ::libc::c_char,
                                                   version:
                                                       *const ::libc::c_char,
                                                   exact: ::libc::c_int)
                                                  -> *const ::libc::c_char>,
/*    pub tcl_SetErrorCodeVA: ::std::option::Option<extern "C" fn
                                                      (interp:
                                                           *mut Tcl_Interp,
                                                       argList: va_list)
                                                      -> ()>,*/
/*    pub tcl_VarEvalVA: ::std::option::Option<extern "C" fn
                                                 (interp: *mut Tcl_Interp,
                                                  argList: va_list)
                                                 -> ::libc::c_int>,*/
    pub tcl_WaitPid: ::std::option::Option<extern "C" fn
                                               (pid: Tcl_Pid,
                                                statPtr: *mut ::libc::c_int,
                                                options: ::libc::c_int)
                                               -> Tcl_Pid>,
/*    pub tcl_PanicVA: ::std::option::Option<extern "C" fn
                                               (format: *const ::libc::c_char,
                                                argList: va_list) -> ()>,*/
    pub tcl_GetVersion: ::std::option::Option<extern "C" fn
                                                  (major: *mut ::libc::c_int,
                                                   minor: *mut ::libc::c_int,
                                                   patchLevel:
                                                       *mut ::libc::c_int,
                                                   _type: *mut ::libc::c_int)
                                                  -> ()>,
    pub tcl_InitMemory: ::std::option::Option<extern "C" fn
                                                  (interp: *mut Tcl_Interp)
                                                  -> ()>,
    pub tcl_StackChannel: ::std::option::Option<extern "C" fn
                                                    (interp: *mut Tcl_Interp,
                                                     typePtr:
                                                         *const Tcl_ChannelType,
                                                     instanceData: ClientData,
                                                     mask: ::libc::c_int,
                                                     prevChan: Tcl_Channel)
                                                    -> Tcl_Channel>,
    pub tcl_UnstackChannel: ::std::option::Option<extern "C" fn
                                                      (interp:
                                                           *mut Tcl_Interp,
                                                       chan: Tcl_Channel)
                                                      -> ::libc::c_int>,
    pub tcl_GetStackedChannel: ::std::option::Option<extern "C" fn
                                                         (chan: Tcl_Channel)
                                                         -> Tcl_Channel>,
    pub tcl_SetMainLoop: ::std::option::Option<extern "C" fn
                                                   (_proc:
                                                        *mut Tcl_MainLoopProc)
                                                   -> ()>,
    pub reserved285: ::std::option::Option<extern "C" fn() -> ()>,
    pub tcl_AppendObjToObj: ::std::option::Option<extern "C" fn
                                                      (objPtr: *mut Tcl_Obj,
                                                       appendObjPtr:
                                                           *mut Tcl_Obj)
                                                      -> ()>,
    pub tcl_CreateEncoding: ::std::option::Option<extern "C" fn
                                                      (typePtr:
                                                           *const Tcl_EncodingType)
                                                      -> Tcl_Encoding>,
    pub tcl_CreateThreadExitHandler: ::std::option::Option<extern "C" fn
                                                               (_proc:
                                                                    *mut Tcl_ExitProc,
                                                                clientData:
                                                                    ClientData)
                                                               -> ()>,
    pub tcl_DeleteThreadExitHandler: ::std::option::Option<extern "C" fn
                                                               (_proc:
                                                                    *mut Tcl_ExitProc,
                                                                clientData:
                                                                    ClientData)
                                                               -> ()>,
    pub tcl_DiscardResult: ::std::option::Option<extern "C" fn
                                                     (statePtr:
                                                          *mut Tcl_SavedResult)
                                                     -> ()>,
    pub tcl_EvalEx: ::std::option::Option<extern "C" fn
                                              (interp: *mut Tcl_Interp,
                                               script: *const ::libc::c_char,
                                               numBytes: ::libc::c_int,
                                               flags: ::libc::c_int)
                                              -> ::libc::c_int>,
    pub tcl_EvalObjv: ::std::option::Option<extern "C" fn
                                                (interp: *mut Tcl_Interp,
                                                 objc: ::libc::c_int,
                                                 objv: *const *mut Tcl_Obj,
                                                 flags: ::libc::c_int)
                                                -> ::libc::c_int>,
    pub tcl_EvalObjEx: ::std::option::Option<extern "C" fn
                                                 (interp: *mut Tcl_Interp,
                                                  objPtr: *mut Tcl_Obj,
                                                  flags: ::libc::c_int)
                                                 -> ::libc::c_int>,
    pub tcl_ExitThread: ::std::option::Option<extern "C" fn
                                                  (status: ::libc::c_int)
                                                  -> ()>,
    pub tcl_ExternalToUtf: ::std::option::Option<extern "C" fn
                                                     (interp: *mut Tcl_Interp,
                                                      encoding: Tcl_Encoding,
                                                      src:
                                                          *const ::libc::c_char,
                                                      srcLen: ::libc::c_int,
                                                      flags: ::libc::c_int,
                                                      statePtr:
                                                          *mut Tcl_EncodingState,
                                                      dst:
                                                          *mut ::libc::c_char,
                                                      dstLen: ::libc::c_int,
                                                      srcReadPtr:
                                                          *mut ::libc::c_int,
                                                      dstWrotePtr:
                                                          *mut ::libc::c_int,
                                                      dstCharsPtr:
                                                          *mut ::libc::c_int)
                                                     -> ::libc::c_int>,
    pub tcl_ExternalToUtfDString: ::std::option::Option<extern "C" fn
                                                            (encoding:
                                                                 Tcl_Encoding,
                                                             src:
                                                                 *const ::libc::c_char,
                                                             srcLen:
                                                                 ::libc::c_int,
                                                             dsPtr:
                                                                 *mut Tcl_DString)
                                                            ->
                                                                *mut ::libc::c_char>,
    pub tcl_FinalizeThread: ::std::option::Option<extern "C" fn() -> ()>,
    pub tcl_FinalizeNotifier: ::std::option::Option<extern "C" fn
                                                        (clientData:
                                                             ClientData)
                                                        -> ()>,
    pub tcl_FreeEncoding: ::std::option::Option<extern "C" fn
                                                    (encoding: Tcl_Encoding)
                                                    -> ()>,
    pub tcl_GetCurrentThread: ::std::option::Option<extern "C" fn()
                                                        -> Tcl_ThreadId>,
    pub tcl_GetEncoding: ::std::option::Option<extern "C" fn
                                                   (interp: *mut Tcl_Interp,
                                                    name:
                                                        *const ::libc::c_char)
                                                   -> Tcl_Encoding>,
    pub tcl_GetEncodingName: ::std::option::Option<extern "C" fn
                                                       (encoding:
                                                            Tcl_Encoding)
                                                       ->
                                                           *const ::libc::c_char>,
    pub tcl_GetEncodingNames: ::std::option::Option<extern "C" fn
                                                        (interp:
                                                             *mut Tcl_Interp)
                                                        -> ()>,
    pub tcl_GetIndexFromObjStruct: ::std::option::Option<extern "C" fn
                                                             (interp:
                                                                  *mut Tcl_Interp,
                                                              objPtr:
                                                                  *mut Tcl_Obj,
                                                              tablePtr:
                                                                  *const ::libc::c_void,
                                                              offset:
                                                                  ::libc::c_int,
                                                              msg:
                                                                  *const ::libc::c_char,
                                                              flags:
                                                                  ::libc::c_int,
                                                              indexPtr:
                                                                  *mut ::libc::c_int)
                                                             ->
                                                                 ::libc::c_int>,
    pub tcl_GetThreadData: ::std::option::Option<extern "C" fn
                                                     (keyPtr:
                                                          *mut Tcl_ThreadDataKey,
                                                      size: ::libc::c_int)
                                                     -> *mut ::libc::c_void>,
    pub tcl_GetVar2Ex: ::std::option::Option<extern "C" fn
                                                 (interp: *mut Tcl_Interp,
                                                  part1:
                                                      *const ::libc::c_char,
                                                  part2:
                                                      *const ::libc::c_char,
                                                  flags: ::libc::c_int)
                                                 -> *mut Tcl_Obj>,
    pub tcl_InitNotifier: ::std::option::Option<extern "C" fn()
                                                    -> ClientData>,
    pub tcl_MutexLock: ::std::option::Option<extern "C" fn
                                                 (mutexPtr: *mut Tcl_Mutex)
                                                 -> ()>,
    pub tcl_MutexUnlock: ::std::option::Option<extern "C" fn
                                                   (mutexPtr: *mut Tcl_Mutex)
                                                   -> ()>,
    pub tcl_ConditionNotify: ::std::option::Option<extern "C" fn
                                                       (condPtr:
                                                            *mut Tcl_Condition)
                                                       -> ()>,
    pub tcl_ConditionWait: ::std::option::Option<extern "C" fn
                                                     (condPtr:
                                                          *mut Tcl_Condition,
                                                      mutexPtr:
                                                          *mut Tcl_Mutex,
                                                      timePtr:
                                                          *const Tcl_Time)
                                                     -> ()>,
    pub tcl_NumUtfChars: ::std::option::Option<extern "C" fn
                                                   (src:
                                                        *const ::libc::c_char,
                                                    length: ::libc::c_int)
                                                   -> ::libc::c_int>,
    pub tcl_ReadChars: ::std::option::Option<extern "C" fn
                                                 (channel: Tcl_Channel,
                                                  objPtr: *mut Tcl_Obj,
                                                  charsToRead: ::libc::c_int,
                                                  appendFlag: ::libc::c_int)
                                                 -> ::libc::c_int>,
    pub tcl_RestoreResult: ::std::option::Option<extern "C" fn
                                                     (interp: *mut Tcl_Interp,
                                                      statePtr:
                                                          *mut Tcl_SavedResult)
                                                     -> ()>,
    pub tcl_SaveResult: ::std::option::Option<extern "C" fn
                                                  (interp: *mut Tcl_Interp,
                                                   statePtr:
                                                       *mut Tcl_SavedResult)
                                                  -> ()>,
    pub tcl_SetSystemEncoding: ::std::option::Option<extern "C" fn
                                                         (interp:
                                                              *mut Tcl_Interp,
                                                          name:
                                                              *const ::libc::c_char)
                                                         -> ::libc::c_int>,
    pub tcl_SetVar2Ex: ::std::option::Option<extern "C" fn
                                                 (interp: *mut Tcl_Interp,
                                                  part1:
                                                      *const ::libc::c_char,
                                                  part2:
                                                      *const ::libc::c_char,
                                                  newValuePtr: *mut Tcl_Obj,
                                                  flags: ::libc::c_int)
                                                 -> *mut Tcl_Obj>,
    pub tcl_ThreadAlert: ::std::option::Option<extern "C" fn
                                                   (threadId: Tcl_ThreadId)
                                                   -> ()>,
    pub tcl_ThreadQueueEvent: ::std::option::Option<extern "C" fn
                                                        (threadId:
                                                             Tcl_ThreadId,
                                                         evPtr:
                                                             *mut Tcl_Event,
                                                         position:
                                                             Tcl_QueuePosition)
                                                        -> ()>,
    pub tcl_UniCharAtIndex: ::std::option::Option<extern "C" fn
                                                      (src:
                                                           *const ::libc::c_char,
                                                       index: ::libc::c_int)
                                                      -> Tcl_UniChar>,
    pub tcl_UniCharToLower: ::std::option::Option<extern "C" fn
                                                      (ch: ::libc::c_int)
                                                      -> Tcl_UniChar>,
    pub tcl_UniCharToTitle: ::std::option::Option<extern "C" fn
                                                      (ch: ::libc::c_int)
                                                      -> Tcl_UniChar>,
    pub tcl_UniCharToUpper: ::std::option::Option<extern "C" fn
                                                      (ch: ::libc::c_int)
                                                      -> Tcl_UniChar>,
    pub tcl_UniCharToUtf: ::std::option::Option<extern "C" fn
                                                    (ch: ::libc::c_int,
                                                     buf: *mut ::libc::c_char)
                                                    -> ::libc::c_int>,
    pub tcl_UtfAtIndex: ::std::option::Option<extern "C" fn
                                                  (src: *const ::libc::c_char,
                                                   index: ::libc::c_int)
                                                  -> *const ::libc::c_char>,
    pub tcl_UtfCharComplete: ::std::option::Option<extern "C" fn
                                                       (src:
                                                            *const ::libc::c_char,
                                                        length: ::libc::c_int)
                                                       -> ::libc::c_int>,
    pub tcl_UtfBackslash: ::std::option::Option<extern "C" fn
                                                    (src:
                                                         *const ::libc::c_char,
                                                     readPtr:
                                                         *mut ::libc::c_int,
                                                     dst: *mut ::libc::c_char)
                                                    -> ::libc::c_int>,
    pub tcl_UtfFindFirst: ::std::option::Option<extern "C" fn
                                                    (src:
                                                         *const ::libc::c_char,
                                                     ch: ::libc::c_int)
                                                    -> *const ::libc::c_char>,
    pub tcl_UtfFindLast: ::std::option::Option<extern "C" fn
                                                   (src:
                                                        *const ::libc::c_char,
                                                    ch: ::libc::c_int)
                                                   -> *const ::libc::c_char>,
    pub tcl_UtfNext: ::std::option::Option<extern "C" fn
                                               (src: *const ::libc::c_char)
                                               -> *const ::libc::c_char>,
    pub tcl_UtfPrev: ::std::option::Option<extern "C" fn
                                               (src: *const ::libc::c_char,
                                                start: *const ::libc::c_char)
                                               -> *const ::libc::c_char>,
    pub tcl_UtfToExternal: ::std::option::Option<extern "C" fn
                                                     (interp: *mut Tcl_Interp,
                                                      encoding: Tcl_Encoding,
                                                      src:
                                                          *const ::libc::c_char,
                                                      srcLen: ::libc::c_int,
                                                      flags: ::libc::c_int,
                                                      statePtr:
                                                          *mut Tcl_EncodingState,
                                                      dst:
                                                          *mut ::libc::c_char,
                                                      dstLen: ::libc::c_int,
                                                      srcReadPtr:
                                                          *mut ::libc::c_int,
                                                      dstWrotePtr:
                                                          *mut ::libc::c_int,
                                                      dstCharsPtr:
                                                          *mut ::libc::c_int)
                                                     -> ::libc::c_int>,
    pub tcl_UtfToExternalDString: ::std::option::Option<extern "C" fn
                                                            (encoding:
                                                                 Tcl_Encoding,
                                                             src:
                                                                 *const ::libc::c_char,
                                                             srcLen:
                                                                 ::libc::c_int,
                                                             dsPtr:
                                                                 *mut Tcl_DString)
                                                            ->
                                                                *mut ::libc::c_char>,
    pub tcl_UtfToLower: ::std::option::Option<extern "C" fn
                                                  (src: *mut ::libc::c_char)
                                                  -> ::libc::c_int>,
    pub tcl_UtfToTitle: ::std::option::Option<extern "C" fn
                                                  (src: *mut ::libc::c_char)
                                                  -> ::libc::c_int>,
    pub tcl_UtfToUniChar: ::std::option::Option<extern "C" fn
                                                    (src:
                                                         *const ::libc::c_char,
                                                     chPtr: *mut Tcl_UniChar)
                                                    -> ::libc::c_int>,
    pub tcl_UtfToUpper: ::std::option::Option<extern "C" fn
                                                  (src: *mut ::libc::c_char)
                                                  -> ::libc::c_int>,
    pub tcl_WriteChars: ::std::option::Option<extern "C" fn
                                                  (chan: Tcl_Channel,
                                                   src: *const ::libc::c_char,
                                                   srcLen: ::libc::c_int)
                                                  -> ::libc::c_int>,
    pub tcl_WriteObj: ::std::option::Option<extern "C" fn
                                                (chan: Tcl_Channel,
                                                 objPtr: *mut Tcl_Obj)
                                                -> ::libc::c_int>,
    pub tcl_GetString: ::std::option::Option<extern "C" fn
                                                 (objPtr: *mut Tcl_Obj)
                                                 -> *mut ::libc::c_char>,
    pub tcl_GetDefaultEncodingDir: ::std::option::Option<extern "C" fn()
                                                             ->
                                                                 *const ::libc::c_char>,
    pub tcl_SetDefaultEncodingDir: ::std::option::Option<extern "C" fn
                                                             (path:
                                                                  *const ::libc::c_char)
                                                             -> ()>,
    pub tcl_AlertNotifier: ::std::option::Option<extern "C" fn
                                                     (clientData: ClientData)
                                                     -> ()>,
    pub tcl_ServiceModeHook: ::std::option::Option<extern "C" fn
                                                       (mode: ::libc::c_int)
                                                       -> ()>,
    pub tcl_UniCharIsAlnum: ::std::option::Option<extern "C" fn
                                                      (ch: ::libc::c_int)
                                                      -> ::libc::c_int>,
    pub tcl_UniCharIsAlpha: ::std::option::Option<extern "C" fn
                                                      (ch: ::libc::c_int)
                                                      -> ::libc::c_int>,
    pub tcl_UniCharIsDigit: ::std::option::Option<extern "C" fn
                                                      (ch: ::libc::c_int)
                                                      -> ::libc::c_int>,
    pub tcl_UniCharIsLower: ::std::option::Option<extern "C" fn
                                                      (ch: ::libc::c_int)
                                                      -> ::libc::c_int>,
    pub tcl_UniCharIsSpace: ::std::option::Option<extern "C" fn
                                                      (ch: ::libc::c_int)
                                                      -> ::libc::c_int>,
    pub tcl_UniCharIsUpper: ::std::option::Option<extern "C" fn
                                                      (ch: ::libc::c_int)
                                                      -> ::libc::c_int>,
    pub tcl_UniCharIsWordChar: ::std::option::Option<extern "C" fn
                                                         (ch: ::libc::c_int)
                                                         -> ::libc::c_int>,
    pub tcl_UniCharLen: ::std::option::Option<extern "C" fn
                                                  (uniStr: *const Tcl_UniChar)
                                                  -> ::libc::c_int>,
    pub tcl_UniCharNcmp: ::std::option::Option<extern "C" fn
                                                   (ucs: *const Tcl_UniChar,
                                                    uct: *const Tcl_UniChar,
                                                    numChars: ::libc::c_ulong)
                                                   -> ::libc::c_int>,
    pub tcl_UniCharToUtfDString: ::std::option::Option<extern "C" fn
                                                           (uniStr:
                                                                *const Tcl_UniChar,
                                                            uniLength:
                                                                ::libc::c_int,
                                                            dsPtr:
                                                                *mut Tcl_DString)
                                                           ->
                                                               *mut ::libc::c_char>,
    pub tcl_UtfToUniCharDString: ::std::option::Option<extern "C" fn
                                                           (src:
                                                                *const ::libc::c_char,
                                                            length:
                                                                ::libc::c_int,
                                                            dsPtr:
                                                                *mut Tcl_DString)
                                                           ->
                                                               *mut Tcl_UniChar>,
    pub tcl_GetRegExpFromObj: ::std::option::Option<extern "C" fn
                                                        (interp:
                                                             *mut Tcl_Interp,
                                                         patObj: *mut Tcl_Obj,
                                                         flags: ::libc::c_int)
                                                        -> Tcl_RegExp>,
    pub tcl_EvalTokens: ::std::option::Option<extern "C" fn
                                                  (interp: *mut Tcl_Interp,
                                                   tokenPtr: *mut Tcl_Token,
                                                   count: ::libc::c_int)
                                                  -> *mut Tcl_Obj>,
    pub tcl_FreeParse: ::std::option::Option<extern "C" fn
                                                 (parsePtr: *mut Tcl_Parse)
                                                 -> ()>,
    pub tcl_LogCommandInfo: ::std::option::Option<extern "C" fn
                                                      (interp:
                                                           *mut Tcl_Interp,
                                                       script:
                                                           *const ::libc::c_char,
                                                       command:
                                                           *const ::libc::c_char,
                                                       length: ::libc::c_int)
                                                      -> ()>,
    pub tcl_ParseBraces: ::std::option::Option<extern "C" fn
                                                   (interp: *mut Tcl_Interp,
                                                    start:
                                                        *const ::libc::c_char,
                                                    numBytes: ::libc::c_int,
                                                    parsePtr: *mut Tcl_Parse,
                                                    append: ::libc::c_int,
                                                    termPtr:
                                                        *mut *const ::libc::c_char)
                                                   -> ::libc::c_int>,
    pub tcl_ParseCommand: ::std::option::Option<extern "C" fn
                                                    (interp: *mut Tcl_Interp,
                                                     start:
                                                         *const ::libc::c_char,
                                                     numBytes: ::libc::c_int,
                                                     nested: ::libc::c_int,
                                                     parsePtr: *mut Tcl_Parse)
                                                    -> ::libc::c_int>,
    pub tcl_ParseExpr: ::std::option::Option<extern "C" fn
                                                 (interp: *mut Tcl_Interp,
                                                  start:
                                                      *const ::libc::c_char,
                                                  numBytes: ::libc::c_int,
                                                  parsePtr: *mut Tcl_Parse)
                                                 -> ::libc::c_int>,
    pub tcl_ParseQuotedString: ::std::option::Option<extern "C" fn
                                                         (interp:
                                                              *mut Tcl_Interp,
                                                          start:
                                                              *const ::libc::c_char,
                                                          numBytes:
                                                              ::libc::c_int,
                                                          parsePtr:
                                                              *mut Tcl_Parse,
                                                          append:
                                                              ::libc::c_int,
                                                          termPtr:
                                                              *mut *const ::libc::c_char)
                                                         -> ::libc::c_int>,
    pub tcl_ParseVarName: ::std::option::Option<extern "C" fn
                                                    (interp: *mut Tcl_Interp,
                                                     start:
                                                         *const ::libc::c_char,
                                                     numBytes: ::libc::c_int,
                                                     parsePtr: *mut Tcl_Parse,
                                                     append: ::libc::c_int)
                                                    -> ::libc::c_int>,
    pub tcl_GetCwd: ::std::option::Option<extern "C" fn
                                              (interp: *mut Tcl_Interp,
                                               cwdPtr: *mut Tcl_DString)
                                              -> *mut ::libc::c_char>,
    pub tcl_Chdir: ::std::option::Option<extern "C" fn
                                             (dirName: *const ::libc::c_char)
                                             -> ::libc::c_int>,
    pub tcl_Access: ::std::option::Option<extern "C" fn
                                              (path: *const ::libc::c_char,
                                               mode: ::libc::c_int)
                                              -> ::libc::c_int>,
    pub tcl_Stat: ::std::option::Option<extern "C" fn
                                            (path: *const ::libc::c_char,
                                             bufPtr: *mut Struct_stat)
                                            -> ::libc::c_int>,
    pub tcl_UtfNcmp: ::std::option::Option<extern "C" fn
                                               (s1: *const ::libc::c_char,
                                                s2: *const ::libc::c_char,
                                                n: ::libc::c_ulong)
                                               -> ::libc::c_int>,
    pub tcl_UtfNcasecmp: ::std::option::Option<extern "C" fn
                                                   (s1: *const ::libc::c_char,
                                                    s2: *const ::libc::c_char,
                                                    n: ::libc::c_ulong)
                                                   -> ::libc::c_int>,
    pub tcl_StringCaseMatch: ::std::option::Option<extern "C" fn
                                                       (str:
                                                            *const ::libc::c_char,
                                                        pattern:
                                                            *const ::libc::c_char,
                                                        nocase: ::libc::c_int)
                                                       -> ::libc::c_int>,
    pub tcl_UniCharIsControl: ::std::option::Option<extern "C" fn
                                                        (ch: ::libc::c_int)
                                                        -> ::libc::c_int>,
    pub tcl_UniCharIsGraph: ::std::option::Option<extern "C" fn
                                                      (ch: ::libc::c_int)
                                                      -> ::libc::c_int>,
    pub tcl_UniCharIsPrint: ::std::option::Option<extern "C" fn
                                                      (ch: ::libc::c_int)
                                                      -> ::libc::c_int>,
    pub tcl_UniCharIsPunct: ::std::option::Option<extern "C" fn
                                                      (ch: ::libc::c_int)
                                                      -> ::libc::c_int>,
    pub tcl_RegExpExecObj: ::std::option::Option<extern "C" fn
                                                     (interp: *mut Tcl_Interp,
                                                      regexp: Tcl_RegExp,
                                                      textObj: *mut Tcl_Obj,
                                                      offset: ::libc::c_int,
                                                      nmatches: ::libc::c_int,
                                                      flags: ::libc::c_int)
                                                     -> ::libc::c_int>,
    pub tcl_RegExpGetInfo: ::std::option::Option<extern "C" fn
                                                     (regexp: Tcl_RegExp,
                                                      infoPtr:
                                                          *mut Tcl_RegExpInfo)
                                                     -> ()>,
    pub tcl_NewUnicodeObj: ::std::option::Option<extern "C" fn
                                                     (unicode:
                                                          *const Tcl_UniChar,
                                                      numChars: ::libc::c_int)
                                                     -> *mut Tcl_Obj>,
    pub tcl_SetUnicodeObj: ::std::option::Option<extern "C" fn
                                                     (objPtr: *mut Tcl_Obj,
                                                      unicode:
                                                          *const Tcl_UniChar,
                                                      numChars: ::libc::c_int)
                                                     -> ()>,
    pub tcl_GetCharLength: ::std::option::Option<extern "C" fn
                                                     (objPtr: *mut Tcl_Obj)
                                                     -> ::libc::c_int>,
    pub tcl_GetUniChar: ::std::option::Option<extern "C" fn
                                                  (objPtr: *mut Tcl_Obj,
                                                   index: ::libc::c_int)
                                                  -> Tcl_UniChar>,
    pub tcl_GetUnicode: ::std::option::Option<extern "C" fn
                                                  (objPtr: *mut Tcl_Obj)
                                                  -> *mut Tcl_UniChar>,
    pub tcl_GetRange: ::std::option::Option<extern "C" fn
                                                (objPtr: *mut Tcl_Obj,
                                                 first: ::libc::c_int,
                                                 last: ::libc::c_int)
                                                -> *mut Tcl_Obj>,
    pub tcl_AppendUnicodeToObj: ::std::option::Option<extern "C" fn
                                                          (objPtr:
                                                               *mut Tcl_Obj,
                                                           unicode:
                                                               *const Tcl_UniChar,
                                                           length:
                                                               ::libc::c_int)
                                                          -> ()>,
    pub tcl_RegExpMatchObj: ::std::option::Option<extern "C" fn
                                                      (interp:
                                                           *mut Tcl_Interp,
                                                       textObj: *mut Tcl_Obj,
                                                       patternObj:
                                                           *mut Tcl_Obj)
                                                      -> ::libc::c_int>,
    pub tcl_SetNotifier: ::std::option::Option<extern "C" fn
                                                   (notifierProcPtr:
                                                        *mut Tcl_NotifierProcs)
                                                   -> ()>,
    pub tcl_GetAllocMutex: ::std::option::Option<extern "C" fn()
                                                     -> *mut Tcl_Mutex>,
    pub tcl_GetChannelNames: ::std::option::Option<extern "C" fn
                                                       (interp:
                                                            *mut Tcl_Interp)
                                                       -> ::libc::c_int>,
    pub tcl_GetChannelNamesEx: ::std::option::Option<extern "C" fn
                                                         (interp:
                                                              *mut Tcl_Interp,
                                                          pattern:
                                                              *const ::libc::c_char)
                                                         -> ::libc::c_int>,
    pub tcl_ProcObjCmd: ::std::option::Option<extern "C" fn
                                                  (clientData: ClientData,
                                                   interp: *mut Tcl_Interp,
                                                   objc: ::libc::c_int,
                                                   objv: *const *mut Tcl_Obj)
                                                  -> ::libc::c_int>,
    pub tcl_ConditionFinalize: ::std::option::Option<extern "C" fn
                                                         (condPtr:
                                                              *mut Tcl_Condition)
                                                         -> ()>,
    pub tcl_MutexFinalize: ::std::option::Option<extern "C" fn
                                                     (mutex: *mut Tcl_Mutex)
                                                     -> ()>,
    pub tcl_CreateThread: ::std::option::Option<extern "C" fn
                                                    (idPtr: *mut Tcl_ThreadId,
                                                     _proc:
                                                         *mut Tcl_ThreadCreateProc,
                                                     clientData: ClientData,
                                                     stackSize: ::libc::c_int,
                                                     flags: ::libc::c_int)
                                                    -> ::libc::c_int>,
    pub tcl_ReadRaw: ::std::option::Option<extern "C" fn
                                               (chan: Tcl_Channel,
                                                dst: *mut ::libc::c_char,
                                                bytesToRead: ::libc::c_int)
                                               -> ::libc::c_int>,
    pub tcl_WriteRaw: ::std::option::Option<extern "C" fn
                                                (chan: Tcl_Channel,
                                                 src: *const ::libc::c_char,
                                                 srcLen: ::libc::c_int)
                                                -> ::libc::c_int>,
    pub tcl_GetTopChannel: ::std::option::Option<extern "C" fn
                                                     (chan: Tcl_Channel)
                                                     -> Tcl_Channel>,
    pub tcl_ChannelBuffered: ::std::option::Option<extern "C" fn
                                                       (chan: Tcl_Channel)
                                                       -> ::libc::c_int>,
    pub tcl_ChannelName: ::std::option::Option<extern "C" fn
                                                   (chanTypePtr:
                                                        *const Tcl_ChannelType)
                                                   -> *const ::libc::c_char>,
    pub tcl_ChannelVersion: ::std::option::Option<extern "C" fn
                                                      (chanTypePtr:
                                                           *const Tcl_ChannelType)
                                                      ->
                                                          Tcl_ChannelTypeVersion>,
    pub tcl_ChannelBlockModeProc: ::std::option::Option<extern "C" fn
                                                            (chanTypePtr:
                                                                 *const Tcl_ChannelType)
                                                            ->
                                                                *mut Tcl_DriverBlockModeProc>,
    pub tcl_ChannelCloseProc: ::std::option::Option<extern "C" fn
                                                        (chanTypePtr:
                                                             *const Tcl_ChannelType)
                                                        ->
                                                            *mut Tcl_DriverCloseProc>,
    pub tcl_ChannelClose2Proc: ::std::option::Option<extern "C" fn
                                                         (chanTypePtr:
                                                              *const Tcl_ChannelType)
                                                         ->
                                                             *mut Tcl_DriverClose2Proc>,
    pub tcl_ChannelInputProc: ::std::option::Option<extern "C" fn
                                                        (chanTypePtr:
                                                             *const Tcl_ChannelType)
                                                        ->
                                                            *mut Tcl_DriverInputProc>,
    pub tcl_ChannelOutputProc: ::std::option::Option<extern "C" fn
                                                         (chanTypePtr:
                                                              *const Tcl_ChannelType)
                                                         ->
                                                             *mut Tcl_DriverOutputProc>,
    pub tcl_ChannelSeekProc: ::std::option::Option<extern "C" fn
                                                       (chanTypePtr:
                                                            *const Tcl_ChannelType)
                                                       ->
                                                           *mut Tcl_DriverSeekProc>,
    pub tcl_ChannelSetOptionProc: ::std::option::Option<extern "C" fn
                                                            (chanTypePtr:
                                                                 *const Tcl_ChannelType)
                                                            ->
                                                                *mut Tcl_DriverSetOptionProc>,
    pub tcl_ChannelGetOptionProc: ::std::option::Option<extern "C" fn
                                                            (chanTypePtr:
                                                                 *const Tcl_ChannelType)
                                                            ->
                                                                *mut Tcl_DriverGetOptionProc>,
    pub tcl_ChannelWatchProc: ::std::option::Option<extern "C" fn
                                                        (chanTypePtr:
                                                             *const Tcl_ChannelType)
                                                        ->
                                                            *mut Tcl_DriverWatchProc>,
    pub tcl_ChannelGetHandleProc: ::std::option::Option<extern "C" fn
                                                            (chanTypePtr:
                                                                 *const Tcl_ChannelType)
                                                            ->
                                                                *mut Tcl_DriverGetHandleProc>,
    pub tcl_ChannelFlushProc: ::std::option::Option<extern "C" fn
                                                        (chanTypePtr:
                                                             *const Tcl_ChannelType)
                                                        ->
                                                            *mut Tcl_DriverFlushProc>,
    pub tcl_ChannelHandlerProc: ::std::option::Option<extern "C" fn
                                                          (chanTypePtr:
                                                               *const Tcl_ChannelType)
                                                          ->
                                                              *mut Tcl_DriverHandlerProc>,
    pub tcl_JoinThread: ::std::option::Option<extern "C" fn
                                                  (threadId: Tcl_ThreadId,
                                                   result: *mut ::libc::c_int)
                                                  -> ::libc::c_int>,
    pub tcl_IsChannelShared: ::std::option::Option<extern "C" fn
                                                       (channel: Tcl_Channel)
                                                       -> ::libc::c_int>,
    pub tcl_IsChannelRegistered: ::std::option::Option<extern "C" fn
                                                           (interp:
                                                                *mut Tcl_Interp,
                                                            channel:
                                                                Tcl_Channel)
                                                           -> ::libc::c_int>,
    pub tcl_CutChannel: ::std::option::Option<extern "C" fn
                                                  (channel: Tcl_Channel)
                                                  -> ()>,
    pub tcl_SpliceChannel: ::std::option::Option<extern "C" fn
                                                     (channel: Tcl_Channel)
                                                     -> ()>,
    pub tcl_ClearChannelHandlers: ::std::option::Option<extern "C" fn
                                                            (channel:
                                                                 Tcl_Channel)
                                                            -> ()>,
    pub tcl_IsChannelExisting: ::std::option::Option<extern "C" fn
                                                         (channelName:
                                                              *const ::libc::c_char)
                                                         -> ::libc::c_int>,
    pub tcl_UniCharNcasecmp: ::std::option::Option<extern "C" fn
                                                       (ucs:
                                                            *const Tcl_UniChar,
                                                        uct:
                                                            *const Tcl_UniChar,
                                                        numChars:
                                                            ::libc::c_ulong)
                                                       -> ::libc::c_int>,
    pub tcl_UniCharCaseMatch: ::std::option::Option<extern "C" fn
                                                        (uniStr:
                                                             *const Tcl_UniChar,
                                                         uniPattern:
                                                             *const Tcl_UniChar,
                                                         nocase:
                                                             ::libc::c_int)
                                                        -> ::libc::c_int>,
    pub tcl_FindHashEntry: ::std::option::Option<extern "C" fn
                                                     (tablePtr:
                                                          *mut Tcl_HashTable,
                                                      key:
                                                          *const ::libc::c_void)
                                                     -> *mut Tcl_HashEntry>,
    pub tcl_CreateHashEntry: ::std::option::Option<extern "C" fn
                                                       (tablePtr:
                                                            *mut Tcl_HashTable,
                                                        key:
                                                            *const ::libc::c_void,
                                                        newPtr:
                                                            *mut ::libc::c_int)
                                                       -> *mut Tcl_HashEntry>,
    pub tcl_InitCustomHashTable: ::std::option::Option<extern "C" fn
                                                           (tablePtr:
                                                                *mut Tcl_HashTable,
                                                            keyType:
                                                                ::libc::c_int,
                                                            typePtr:
                                                                *const Tcl_HashKeyType)
                                                           -> ()>,
    pub tcl_InitObjHashTable: ::std::option::Option<extern "C" fn
                                                        (tablePtr:
                                                             *mut Tcl_HashTable)
                                                        -> ()>,
    pub tcl_CommandTraceInfo: ::std::option::Option<extern "C" fn
                                                        (interp:
                                                             *mut Tcl_Interp,
                                                         varName:
                                                             *const ::libc::c_char,
                                                         flags: ::libc::c_int,
                                                         procPtr:
                                                             *mut Tcl_CommandTraceProc,
                                                         prevClientData:
                                                             ClientData)
                                                        -> ClientData>,
    pub tcl_TraceCommand: ::std::option::Option<extern "C" fn
                                                    (interp: *mut Tcl_Interp,
                                                     varName:
                                                         *const ::libc::c_char,
                                                     flags: ::libc::c_int,
                                                     _proc:
                                                         *mut Tcl_CommandTraceProc,
                                                     clientData: ClientData)
                                                    -> ::libc::c_int>,
    pub tcl_UntraceCommand: ::std::option::Option<extern "C" fn
                                                      (interp:
                                                           *mut Tcl_Interp,
                                                       varName:
                                                           *const ::libc::c_char,
                                                       flags: ::libc::c_int,
                                                       _proc:
                                                           *mut Tcl_CommandTraceProc,
                                                       clientData: ClientData)
                                                      -> ()>,
    pub tcl_AttemptAlloc: ::std::option::Option<extern "C" fn
                                                    (size: ::libc::c_uint)
                                                    -> *mut ::libc::c_char>,
    pub tcl_AttemptDbCkalloc: ::std::option::Option<extern "C" fn
                                                        (size: ::libc::c_uint,
                                                         file:
                                                             *const ::libc::c_char,
                                                         line: ::libc::c_int)
                                                        ->
                                                            *mut ::libc::c_char>,
    pub tcl_AttemptRealloc: ::std::option::Option<extern "C" fn
                                                      (ptr:
                                                           *mut ::libc::c_char,
                                                       size: ::libc::c_uint)
                                                      -> *mut ::libc::c_char>,
    pub tcl_AttemptDbCkrealloc: ::std::option::Option<extern "C" fn
                                                          (ptr:
                                                               *mut ::libc::c_char,
                                                           size:
                                                               ::libc::c_uint,
                                                           file:
                                                               *const ::libc::c_char,
                                                           line:
                                                               ::libc::c_int)
                                                          ->
                                                              *mut ::libc::c_char>,
    pub tcl_AttemptSetObjLength: ::std::option::Option<extern "C" fn
                                                           (objPtr:
                                                                *mut Tcl_Obj,
                                                            length:
                                                                ::libc::c_int)
                                                           -> ::libc::c_int>,
    pub tcl_GetChannelThread: ::std::option::Option<extern "C" fn
                                                        (channel: Tcl_Channel)
                                                        -> Tcl_ThreadId>,
    pub tcl_GetUnicodeFromObj: ::std::option::Option<extern "C" fn
                                                         (objPtr:
                                                              *mut Tcl_Obj,
                                                          lengthPtr:
                                                              *mut ::libc::c_int)
                                                         -> *mut Tcl_UniChar>,
    pub tcl_GetMathFuncInfo: ::std::option::Option<extern "C" fn
                                                       (interp:
                                                            *mut Tcl_Interp,
                                                        name:
                                                            *const ::libc::c_char,
                                                        numArgsPtr:
                                                            *mut ::libc::c_int,
                                                        argTypesPtr:
                                                            *mut *mut Tcl_ValueType,
                                                        procPtr:
                                                            *mut *mut Tcl_MathProc,
                                                        clientDataPtr:
                                                            *mut ClientData)
                                                       -> ::libc::c_int>,
    pub tcl_ListMathFuncs: ::std::option::Option<extern "C" fn
                                                     (interp: *mut Tcl_Interp,
                                                      pattern:
                                                          *const ::libc::c_char)
                                                     -> *mut Tcl_Obj>,
    pub tcl_SubstObj: ::std::option::Option<extern "C" fn
                                                (interp: *mut Tcl_Interp,
                                                 objPtr: *mut Tcl_Obj,
                                                 flags: ::libc::c_int)
                                                -> *mut Tcl_Obj>,
    pub tcl_DetachChannel: ::std::option::Option<extern "C" fn
                                                     (interp: *mut Tcl_Interp,
                                                      channel: Tcl_Channel)
                                                     -> ::libc::c_int>,
    pub tcl_IsStandardChannel: ::std::option::Option<extern "C" fn
                                                         (channel:
                                                              Tcl_Channel)
                                                         -> ::libc::c_int>,
    pub tcl_FSCopyFile: ::std::option::Option<extern "C" fn
                                                  (srcPathPtr: *mut Tcl_Obj,
                                                   destPathPtr: *mut Tcl_Obj)
                                                  -> ::libc::c_int>,
    pub tcl_FSCopyDirectory: ::std::option::Option<extern "C" fn
                                                       (srcPathPtr:
                                                            *mut Tcl_Obj,
                                                        destPathPtr:
                                                            *mut Tcl_Obj,
                                                        errorPtr:
                                                            *mut *mut Tcl_Obj)
                                                       -> ::libc::c_int>,
    pub tcl_FSCreateDirectory: ::std::option::Option<extern "C" fn
                                                         (pathPtr:
                                                              *mut Tcl_Obj)
                                                         -> ::libc::c_int>,
    pub tcl_FSDeleteFile: ::std::option::Option<extern "C" fn
                                                    (pathPtr: *mut Tcl_Obj)
                                                    -> ::libc::c_int>,
    pub tcl_FSLoadFile: ::std::option::Option<extern "C" fn
                                                  (interp: *mut Tcl_Interp,
                                                   pathPtr: *mut Tcl_Obj,
                                                   sym1:
                                                       *const ::libc::c_char,
                                                   sym2:
                                                       *const ::libc::c_char,
                                                   proc1Ptr:
                                                       *mut *mut Tcl_PackageInitProc,
                                                   proc2Ptr:
                                                       *mut *mut Tcl_PackageInitProc,
                                                   handlePtr:
                                                       *mut Tcl_LoadHandle,
                                                   unloadProcPtr:
                                                       *mut *mut Tcl_FSUnloadFileProc)
                                                  -> ::libc::c_int>,
    pub tcl_FSMatchInDirectory: ::std::option::Option<extern "C" fn
                                                          (interp:
                                                               *mut Tcl_Interp,
                                                           result:
                                                               *mut Tcl_Obj,
                                                           pathPtr:
                                                               *mut Tcl_Obj,
                                                           pattern:
                                                               *const ::libc::c_char,
                                                           types:
                                                               *mut Tcl_GlobTypeData)
                                                          -> ::libc::c_int>,
    pub tcl_FSLink: ::std::option::Option<extern "C" fn
                                              (pathPtr: *mut Tcl_Obj,
                                               toPtr: *mut Tcl_Obj,
                                               linkAction: ::libc::c_int)
                                              -> *mut Tcl_Obj>,
    pub tcl_FSRemoveDirectory: ::std::option::Option<extern "C" fn
                                                         (pathPtr:
                                                              *mut Tcl_Obj,
                                                          recursive:
                                                              ::libc::c_int,
                                                          errorPtr:
                                                              *mut *mut Tcl_Obj)
                                                         -> ::libc::c_int>,
    pub tcl_FSRenameFile: ::std::option::Option<extern "C" fn
                                                    (srcPathPtr: *mut Tcl_Obj,
                                                     destPathPtr:
                                                         *mut Tcl_Obj)
                                                    -> ::libc::c_int>,
    pub tcl_FSLstat: ::std::option::Option<extern "C" fn
                                               (pathPtr: *mut Tcl_Obj,
                                                buf: *mut Tcl_StatBuf)
                                               -> ::libc::c_int>,
    pub tcl_FSUtime: ::std::option::Option<extern "C" fn
                                               (pathPtr: *mut Tcl_Obj,
                                                tval: *mut Struct_utimbuf)
                                               -> ::libc::c_int>,
    pub tcl_FSFileAttrsGet: ::std::option::Option<extern "C" fn
                                                      (interp:
                                                           *mut Tcl_Interp,
                                                       index: ::libc::c_int,
                                                       pathPtr: *mut Tcl_Obj,
                                                       objPtrRef:
                                                           *mut *mut Tcl_Obj)
                                                      -> ::libc::c_int>,
    pub tcl_FSFileAttrsSet: ::std::option::Option<extern "C" fn
                                                      (interp:
                                                           *mut Tcl_Interp,
                                                       index: ::libc::c_int,
                                                       pathPtr: *mut Tcl_Obj,
                                                       objPtr: *mut Tcl_Obj)
                                                      -> ::libc::c_int>,
    pub tcl_FSFileAttrStrings: ::std::option::Option<extern "C" fn
                                                         (pathPtr:
                                                              *mut Tcl_Obj,
                                                          objPtrRef:
                                                              *mut *mut Tcl_Obj)
                                                         ->
                                                             *const *const ::libc::c_char>,
    pub tcl_FSStat: ::std::option::Option<extern "C" fn
                                              (pathPtr: *mut Tcl_Obj,
                                               buf: *mut Tcl_StatBuf)
                                              -> ::libc::c_int>,
    pub tcl_FSAccess: ::std::option::Option<extern "C" fn
                                                (pathPtr: *mut Tcl_Obj,
                                                 mode: ::libc::c_int)
                                                -> ::libc::c_int>,
    pub tcl_FSOpenFileChannel: ::std::option::Option<extern "C" fn
                                                         (interp:
                                                              *mut Tcl_Interp,
                                                          pathPtr:
                                                              *mut Tcl_Obj,
                                                          modeString:
                                                              *const ::libc::c_char,
                                                          permissions:
                                                              ::libc::c_int)
                                                         -> Tcl_Channel>,
    pub tcl_FSGetCwd: ::std::option::Option<extern "C" fn
                                                (interp: *mut Tcl_Interp)
                                                -> *mut Tcl_Obj>,
    pub tcl_FSChdir: ::std::option::Option<extern "C" fn
                                               (pathPtr: *mut Tcl_Obj)
                                               -> ::libc::c_int>,
    pub tcl_FSConvertToPathType: ::std::option::Option<extern "C" fn
                                                           (interp:
                                                                *mut Tcl_Interp,
                                                            pathPtr:
                                                                *mut Tcl_Obj)
                                                           -> ::libc::c_int>,
    pub tcl_FSJoinPath: ::std::option::Option<extern "C" fn
                                                  (listObj: *mut Tcl_Obj,
                                                   elements: ::libc::c_int)
                                                  -> *mut Tcl_Obj>,
    pub tcl_FSSplitPath: ::std::option::Option<extern "C" fn
                                                   (pathPtr: *mut Tcl_Obj,
                                                    lenPtr:
                                                        *mut ::libc::c_int)
                                                   -> *mut Tcl_Obj>,
    pub tcl_FSEqualPaths: ::std::option::Option<extern "C" fn
                                                    (firstPtr: *mut Tcl_Obj,
                                                     secondPtr: *mut Tcl_Obj)
                                                    -> ::libc::c_int>,
    pub tcl_FSGetNormalizedPath: ::std::option::Option<extern "C" fn
                                                           (interp:
                                                                *mut Tcl_Interp,
                                                            pathPtr:
                                                                *mut Tcl_Obj)
                                                           -> *mut Tcl_Obj>,
    pub tcl_FSJoinToPath: ::std::option::Option<extern "C" fn
                                                    (pathPtr: *mut Tcl_Obj,
                                                     objc: ::libc::c_int,
                                                     objv:
                                                         *const *mut Tcl_Obj)
                                                    -> *mut Tcl_Obj>,
    pub tcl_FSGetInternalRep: ::std::option::Option<extern "C" fn
                                                        (pathPtr:
                                                             *mut Tcl_Obj,
                                                         fsPtr:
                                                             *const Tcl_Filesystem)
                                                        -> ClientData>,
    pub tcl_FSGetTranslatedPath: ::std::option::Option<extern "C" fn
                                                           (interp:
                                                                *mut Tcl_Interp,
                                                            pathPtr:
                                                                *mut Tcl_Obj)
                                                           -> *mut Tcl_Obj>,
    pub tcl_FSEvalFile: ::std::option::Option<extern "C" fn
                                                  (interp: *mut Tcl_Interp,
                                                   fileName: *mut Tcl_Obj)
                                                  -> ::libc::c_int>,
    pub tcl_FSNewNativePath: ::std::option::Option<extern "C" fn
                                                       (fromFilesystem:
                                                            *const Tcl_Filesystem,
                                                        clientData:
                                                            ClientData)
                                                       -> *mut Tcl_Obj>,
    pub tcl_FSGetNativePath: ::std::option::Option<extern "C" fn
                                                       (pathPtr: *mut Tcl_Obj)
                                                       ->
                                                           *const ::libc::c_void>,
    pub tcl_FSFileSystemInfo: ::std::option::Option<extern "C" fn
                                                        (pathPtr:
                                                             *mut Tcl_Obj)
                                                        -> *mut Tcl_Obj>,
    pub tcl_FSPathSeparator: ::std::option::Option<extern "C" fn
                                                       (pathPtr: *mut Tcl_Obj)
                                                       -> *mut Tcl_Obj>,
    pub tcl_FSListVolumes: ::std::option::Option<extern "C" fn()
                                                     -> *mut Tcl_Obj>,
    pub tcl_FSRegister: ::std::option::Option<extern "C" fn
                                                  (clientData: ClientData,
                                                   fsPtr:
                                                       *const Tcl_Filesystem)
                                                  -> ::libc::c_int>,
    pub tcl_FSUnregister: ::std::option::Option<extern "C" fn
                                                    (fsPtr:
                                                         *const Tcl_Filesystem)
                                                    -> ::libc::c_int>,
    pub tcl_FSData: ::std::option::Option<extern "C" fn
                                              (fsPtr: *const Tcl_Filesystem)
                                              -> ClientData>,
    pub tcl_FSGetTranslatedStringPath: ::std::option::Option<extern "C" fn
                                                                 (interp:
                                                                      *mut Tcl_Interp,
                                                                  pathPtr:
                                                                      *mut Tcl_Obj)
                                                                 ->
                                                                     *const ::libc::c_char>,
    pub tcl_FSGetFileSystemForPath: ::std::option::Option<extern "C" fn
                                                              (pathPtr:
                                                                   *mut Tcl_Obj)
                                                              ->
                                                                  *const Tcl_Filesystem>,
    pub tcl_FSGetPathType: ::std::option::Option<extern "C" fn
                                                     (pathPtr: *mut Tcl_Obj)
                                                     -> Tcl_PathType>,
    pub tcl_OutputBuffered: ::std::option::Option<extern "C" fn
                                                      (chan: Tcl_Channel)
                                                      -> ::libc::c_int>,
    pub tcl_FSMountsChanged: ::std::option::Option<extern "C" fn
                                                       (fsPtr:
                                                            *const Tcl_Filesystem)
                                                       -> ()>,
    pub tcl_EvalTokensStandard: ::std::option::Option<extern "C" fn
                                                          (interp:
                                                               *mut Tcl_Interp,
                                                           tokenPtr:
                                                               *mut Tcl_Token,
                                                           count:
                                                               ::libc::c_int)
                                                          -> ::libc::c_int>,
    pub tcl_GetTime: ::std::option::Option<extern "C" fn
                                               (timeBuf: *mut Tcl_Time)
                                               -> ()>,
    pub tcl_CreateObjTrace: ::std::option::Option<extern "C" fn
                                                      (interp:
                                                           *mut Tcl_Interp,
                                                       level: ::libc::c_int,
                                                       flags: ::libc::c_int,
                                                       objProc:
                                                           *mut Tcl_CmdObjTraceProc,
                                                       clientData: ClientData,
                                                       delProc:
                                                           *mut Tcl_CmdObjTraceDeleteProc)
                                                      -> Tcl_Trace>,
    pub tcl_GetCommandInfoFromToken: ::std::option::Option<extern "C" fn
                                                               (token:
                                                                    Tcl_Command,
                                                                infoPtr:
                                                                    *mut Tcl_CmdInfo)
                                                               ->
                                                                   ::libc::c_int>,
    pub tcl_SetCommandInfoFromToken: ::std::option::Option<extern "C" fn
                                                               (token:
                                                                    Tcl_Command,
                                                                infoPtr:
                                                                    *const Tcl_CmdInfo)
                                                               ->
                                                                   ::libc::c_int>,
    pub tcl_DbNewWideIntObj: ::std::option::Option<extern "C" fn
                                                       (wideValue:
                                                            Tcl_WideInt,
                                                        file:
                                                            *const ::libc::c_char,
                                                        line: ::libc::c_int)
                                                       -> *mut Tcl_Obj>,
    pub tcl_GetWideIntFromObj: ::std::option::Option<extern "C" fn
                                                         (interp:
                                                              *mut Tcl_Interp,
                                                          objPtr:
                                                              *mut Tcl_Obj,
                                                          widePtr:
                                                              *mut Tcl_WideInt)
                                                         -> ::libc::c_int>,
    pub tcl_NewWideIntObj: ::std::option::Option<extern "C" fn
                                                     (wideValue: Tcl_WideInt)
                                                     -> *mut Tcl_Obj>,
    pub tcl_SetWideIntObj: ::std::option::Option<extern "C" fn
                                                     (objPtr: *mut Tcl_Obj,
                                                      wideValue: Tcl_WideInt)
                                                     -> ()>,
    pub tcl_AllocStatBuf: ::std::option::Option<extern "C" fn()
                                                    -> *mut Tcl_StatBuf>,
    pub tcl_Seek: ::std::option::Option<extern "C" fn
                                            (chan: Tcl_Channel,
                                             offset: Tcl_WideInt,
                                             mode: ::libc::c_int)
                                            -> Tcl_WideInt>,
    pub tcl_Tell: ::std::option::Option<extern "C" fn(chan: Tcl_Channel)
                                            -> Tcl_WideInt>,
    pub tcl_ChannelWideSeekProc: ::std::option::Option<extern "C" fn
                                                           (chanTypePtr:
                                                                *const Tcl_ChannelType)
                                                           ->
                                                               *mut Tcl_DriverWideSeekProc>,
    pub tcl_DictObjPut: ::std::option::Option<extern "C" fn
                                                  (interp: *mut Tcl_Interp,
                                                   dictPtr: *mut Tcl_Obj,
                                                   keyPtr: *mut Tcl_Obj,
                                                   valuePtr: *mut Tcl_Obj)
                                                  -> ::libc::c_int>,
    pub tcl_DictObjGet: ::std::option::Option<extern "C" fn
                                                  (interp: *mut Tcl_Interp,
                                                   dictPtr: *mut Tcl_Obj,
                                                   keyPtr: *mut Tcl_Obj,
                                                   valuePtrPtr:
                                                       *mut *mut Tcl_Obj)
                                                  -> ::libc::c_int>,
    pub tcl_DictObjRemove: ::std::option::Option<extern "C" fn
                                                     (interp: *mut Tcl_Interp,
                                                      dictPtr: *mut Tcl_Obj,
                                                      keyPtr: *mut Tcl_Obj)
                                                     -> ::libc::c_int>,
    pub tcl_DictObjSize: ::std::option::Option<extern "C" fn
                                                   (interp: *mut Tcl_Interp,
                                                    dictPtr: *mut Tcl_Obj,
                                                    sizePtr:
                                                        *mut ::libc::c_int)
                                                   -> ::libc::c_int>,
    pub tcl_DictObjFirst: ::std::option::Option<extern "C" fn
                                                    (interp: *mut Tcl_Interp,
                                                     dictPtr: *mut Tcl_Obj,
                                                     searchPtr:
                                                         *mut Tcl_DictSearch,
                                                     keyPtrPtr:
                                                         *mut *mut Tcl_Obj,
                                                     valuePtrPtr:
                                                         *mut *mut Tcl_Obj,
                                                     donePtr:
                                                         *mut ::libc::c_int)
                                                    -> ::libc::c_int>,
    pub tcl_DictObjNext: ::std::option::Option<extern "C" fn
                                                   (searchPtr:
                                                        *mut Tcl_DictSearch,
                                                    keyPtrPtr:
                                                        *mut *mut Tcl_Obj,
                                                    valuePtrPtr:
                                                        *mut *mut Tcl_Obj,
                                                    donePtr:
                                                        *mut ::libc::c_int)
                                                   -> ()>,
    pub tcl_DictObjDone: ::std::option::Option<extern "C" fn
                                                   (searchPtr:
                                                        *mut Tcl_DictSearch)
                                                   -> ()>,
    pub tcl_DictObjPutKeyList: ::std::option::Option<extern "C" fn
                                                         (interp:
                                                              *mut Tcl_Interp,
                                                          dictPtr:
                                                              *mut Tcl_Obj,
                                                          keyc: ::libc::c_int,
                                                          keyv:
                                                              *const *mut Tcl_Obj,
                                                          valuePtr:
                                                              *mut Tcl_Obj)
                                                         -> ::libc::c_int>,
    pub tcl_DictObjRemoveKeyList: ::std::option::Option<extern "C" fn
                                                            (interp:
                                                                 *mut Tcl_Interp,
                                                             dictPtr:
                                                                 *mut Tcl_Obj,
                                                             keyc:
                                                                 ::libc::c_int,
                                                             keyv:
                                                                 *const *mut Tcl_Obj)
                                                            -> ::libc::c_int>,
    pub tcl_NewDictObj: ::std::option::Option<extern "C" fn()
                                                  -> *mut Tcl_Obj>,
    pub tcl_DbNewDictObj: ::std::option::Option<extern "C" fn
                                                    (file:
                                                         *const ::libc::c_char,
                                                     line: ::libc::c_int)
                                                    -> *mut Tcl_Obj>,
    pub tcl_RegisterConfig: ::std::option::Option<extern "C" fn
                                                      (interp:
                                                           *mut Tcl_Interp,
                                                       pkgName:
                                                           *const ::libc::c_char,
                                                       configuration:
                                                           *const Tcl_Config,
                                                       valEncoding:
                                                           *const ::libc::c_char)
                                                      -> ()>,
    pub tcl_CreateNamespace: ::std::option::Option<extern "C" fn
                                                       (interp:
                                                            *mut Tcl_Interp,
                                                        name:
                                                            *const ::libc::c_char,
                                                        clientData:
                                                            ClientData,
                                                        deleteProc:
                                                            *mut Tcl_NamespaceDeleteProc)
                                                       -> *mut Tcl_Namespace>,
    pub tcl_DeleteNamespace: ::std::option::Option<extern "C" fn
                                                       (nsPtr:
                                                            *mut Tcl_Namespace)
                                                       -> ()>,
    pub tcl_AppendExportList: ::std::option::Option<extern "C" fn
                                                        (interp:
                                                             *mut Tcl_Interp,
                                                         nsPtr:
                                                             *mut Tcl_Namespace,
                                                         objPtr: *mut Tcl_Obj)
                                                        -> ::libc::c_int>,
    pub tcl_Export: ::std::option::Option<extern "C" fn
                                              (interp: *mut Tcl_Interp,
                                               nsPtr: *mut Tcl_Namespace,
                                               pattern: *const ::libc::c_char,
                                               resetListFirst: ::libc::c_int)
                                              -> ::libc::c_int>,
    pub tcl_Import: ::std::option::Option<extern "C" fn
                                              (interp: *mut Tcl_Interp,
                                               nsPtr: *mut Tcl_Namespace,
                                               pattern: *const ::libc::c_char,
                                               allowOverwrite: ::libc::c_int)
                                              -> ::libc::c_int>,
    pub tcl_ForgetImport: ::std::option::Option<extern "C" fn
                                                    (interp: *mut Tcl_Interp,
                                                     nsPtr:
                                                         *mut Tcl_Namespace,
                                                     pattern:
                                                         *const ::libc::c_char)
                                                    -> ::libc::c_int>,
    pub tcl_GetCurrentNamespace: ::std::option::Option<extern "C" fn
                                                           (interp:
                                                                *mut Tcl_Interp)
                                                           ->
                                                               *mut Tcl_Namespace>,
    pub tcl_GetGlobalNamespace: ::std::option::Option<extern "C" fn
                                                          (interp:
                                                               *mut Tcl_Interp)
                                                          ->
                                                              *mut Tcl_Namespace>,
    pub tcl_FindNamespace: ::std::option::Option<extern "C" fn
                                                     (interp: *mut Tcl_Interp,
                                                      name:
                                                          *const ::libc::c_char,
                                                      contextNsPtr:
                                                          *mut Tcl_Namespace,
                                                      flags: ::libc::c_int)
                                                     -> *mut Tcl_Namespace>,
    pub tcl_FindCommand: ::std::option::Option<extern "C" fn
                                                   (interp: *mut Tcl_Interp,
                                                    name:
                                                        *const ::libc::c_char,
                                                    contextNsPtr:
                                                        *mut Tcl_Namespace,
                                                    flags: ::libc::c_int)
                                                   -> Tcl_Command>,
    pub tcl_GetCommandFromObj: ::std::option::Option<extern "C" fn
                                                         (interp:
                                                              *mut Tcl_Interp,
                                                          objPtr:
                                                              *mut Tcl_Obj)
                                                         -> Tcl_Command>,
    pub tcl_GetCommandFullName: ::std::option::Option<extern "C" fn
                                                          (interp:
                                                               *mut Tcl_Interp,
                                                           command:
                                                               Tcl_Command,
                                                           objPtr:
                                                               *mut Tcl_Obj)
                                                          -> ()>,
    pub tcl_FSEvalFileEx: ::std::option::Option<extern "C" fn
                                                    (interp: *mut Tcl_Interp,
                                                     fileName: *mut Tcl_Obj,
                                                     encodingName:
                                                         *const ::libc::c_char)
                                                    -> ::libc::c_int>,
    pub tcl_SetExitProc: ::std::option::Option<extern "C" fn
                                                   (_proc: *mut Tcl_ExitProc)
                                                   -> *mut Tcl_ExitProc>,
    pub tcl_LimitAddHandler: ::std::option::Option<extern "C" fn
                                                       (interp:
                                                            *mut Tcl_Interp,
                                                        _type: ::libc::c_int,
                                                        handlerProc:
                                                            *mut Tcl_LimitHandlerProc,
                                                        clientData:
                                                            ClientData,
                                                        deleteProc:
                                                            *mut Tcl_LimitHandlerDeleteProc)
                                                       -> ()>,
    pub tcl_LimitRemoveHandler: ::std::option::Option<extern "C" fn
                                                          (interp:
                                                               *mut Tcl_Interp,
                                                           _type:
                                                               ::libc::c_int,
                                                           handlerProc:
                                                               *mut Tcl_LimitHandlerProc,
                                                           clientData:
                                                               ClientData)
                                                          -> ()>,
    pub tcl_LimitReady: ::std::option::Option<extern "C" fn
                                                  (interp: *mut Tcl_Interp)
                                                  -> ::libc::c_int>,
    pub tcl_LimitCheck: ::std::option::Option<extern "C" fn
                                                  (interp: *mut Tcl_Interp)
                                                  -> ::libc::c_int>,
    pub tcl_LimitExceeded: ::std::option::Option<extern "C" fn
                                                     (interp: *mut Tcl_Interp)
                                                     -> ::libc::c_int>,
    pub tcl_LimitSetCommands: ::std::option::Option<extern "C" fn
                                                        (interp:
                                                             *mut Tcl_Interp,
                                                         commandLimit:
                                                             ::libc::c_int)
                                                        -> ()>,
    pub tcl_LimitSetTime: ::std::option::Option<extern "C" fn
                                                    (interp: *mut Tcl_Interp,
                                                     timeLimitPtr:
                                                         *mut Tcl_Time)
                                                    -> ()>,
    pub tcl_LimitSetGranularity: ::std::option::Option<extern "C" fn
                                                           (interp:
                                                                *mut Tcl_Interp,
                                                            _type:
                                                                ::libc::c_int,
                                                            granularity:
                                                                ::libc::c_int)
                                                           -> ()>,
    pub tcl_LimitTypeEnabled: ::std::option::Option<extern "C" fn
                                                        (interp:
                                                             *mut Tcl_Interp,
                                                         _type: ::libc::c_int)
                                                        -> ::libc::c_int>,
    pub tcl_LimitTypeExceeded: ::std::option::Option<extern "C" fn
                                                         (interp:
                                                              *mut Tcl_Interp,
                                                          _type:
                                                              ::libc::c_int)
                                                         -> ::libc::c_int>,
    pub tcl_LimitTypeSet: ::std::option::Option<extern "C" fn
                                                    (interp: *mut Tcl_Interp,
                                                     _type: ::libc::c_int)
                                                    -> ()>,
    pub tcl_LimitTypeReset: ::std::option::Option<extern "C" fn
                                                      (interp:
                                                           *mut Tcl_Interp,
                                                       _type: ::libc::c_int)
                                                      -> ()>,
    pub tcl_LimitGetCommands: ::std::option::Option<extern "C" fn
                                                        (interp:
                                                             *mut Tcl_Interp)
                                                        -> ::libc::c_int>,
    pub tcl_LimitGetTime: ::std::option::Option<extern "C" fn
                                                    (interp: *mut Tcl_Interp,
                                                     timeLimitPtr:
                                                         *mut Tcl_Time)
                                                    -> ()>,
    pub tcl_LimitGetGranularity: ::std::option::Option<extern "C" fn
                                                           (interp:
                                                                *mut Tcl_Interp,
                                                            _type:
                                                                ::libc::c_int)
                                                           -> ::libc::c_int>,
    pub tcl_SaveInterpState: ::std::option::Option<extern "C" fn
                                                       (interp:
                                                            *mut Tcl_Interp,
                                                        status: ::libc::c_int)
                                                       -> Tcl_InterpState>,
    pub tcl_RestoreInterpState: ::std::option::Option<extern "C" fn
                                                          (interp:
                                                               *mut Tcl_Interp,
                                                           state:
                                                               Tcl_InterpState)
                                                          -> ::libc::c_int>,
    pub tcl_DiscardInterpState: ::std::option::Option<extern "C" fn
                                                          (state:
                                                               Tcl_InterpState)
                                                          -> ()>,
    pub tcl_SetReturnOptions: ::std::option::Option<extern "C" fn
                                                        (interp:
                                                             *mut Tcl_Interp,
                                                         options:
                                                             *mut Tcl_Obj)
                                                        -> ::libc::c_int>,
    pub tcl_GetReturnOptions: ::std::option::Option<extern "C" fn
                                                        (interp:
                                                             *mut Tcl_Interp,
                                                         result:
                                                             ::libc::c_int)
                                                        -> *mut Tcl_Obj>,
    pub tcl_IsEnsemble: ::std::option::Option<extern "C" fn
                                                  (token: Tcl_Command)
                                                  -> ::libc::c_int>,
    pub tcl_CreateEnsemble: ::std::option::Option<extern "C" fn
                                                      (interp:
                                                           *mut Tcl_Interp,
                                                       name:
                                                           *const ::libc::c_char,
                                                       namespacePtr:
                                                           *mut Tcl_Namespace,
                                                       flags: ::libc::c_int)
                                                      -> Tcl_Command>,
    pub tcl_FindEnsemble: ::std::option::Option<extern "C" fn
                                                    (interp: *mut Tcl_Interp,
                                                     cmdNameObj: *mut Tcl_Obj,
                                                     flags: ::libc::c_int)
                                                    -> Tcl_Command>,
    pub tcl_SetEnsembleSubcommandList: ::std::option::Option<extern "C" fn
                                                                 (interp:
                                                                      *mut Tcl_Interp,
                                                                  token:
                                                                      Tcl_Command,
                                                                  subcmdList:
                                                                      *mut Tcl_Obj)
                                                                 ->
                                                                     ::libc::c_int>,
    pub tcl_SetEnsembleMappingDict: ::std::option::Option<extern "C" fn
                                                              (interp:
                                                                   *mut Tcl_Interp,
                                                               token:
                                                                   Tcl_Command,
                                                               mapDict:
                                                                   *mut Tcl_Obj)
                                                              ->
                                                                  ::libc::c_int>,
    pub tcl_SetEnsembleUnknownHandler: ::std::option::Option<extern "C" fn
                                                                 (interp:
                                                                      *mut Tcl_Interp,
                                                                  token:
                                                                      Tcl_Command,
                                                                  unknownList:
                                                                      *mut Tcl_Obj)
                                                                 ->
                                                                     ::libc::c_int>,
    pub tcl_SetEnsembleFlags: ::std::option::Option<extern "C" fn
                                                        (interp:
                                                             *mut Tcl_Interp,
                                                         token: Tcl_Command,
                                                         flags: ::libc::c_int)
                                                        -> ::libc::c_int>,
    pub tcl_GetEnsembleSubcommandList: ::std::option::Option<extern "C" fn
                                                                 (interp:
                                                                      *mut Tcl_Interp,
                                                                  token:
                                                                      Tcl_Command,
                                                                  subcmdListPtr:
                                                                      *mut *mut Tcl_Obj)
                                                                 ->
                                                                     ::libc::c_int>,
    pub tcl_GetEnsembleMappingDict: ::std::option::Option<extern "C" fn
                                                              (interp:
                                                                   *mut Tcl_Interp,
                                                               token:
                                                                   Tcl_Command,
                                                               mapDictPtr:
                                                                   *mut *mut Tcl_Obj)
                                                              ->
                                                                  ::libc::c_int>,
    pub tcl_GetEnsembleUnknownHandler: ::std::option::Option<extern "C" fn
                                                                 (interp:
                                                                      *mut Tcl_Interp,
                                                                  token:
                                                                      Tcl_Command,
                                                                  unknownListPtr:
                                                                      *mut *mut Tcl_Obj)
                                                                 ->
                                                                     ::libc::c_int>,
    pub tcl_GetEnsembleFlags: ::std::option::Option<extern "C" fn
                                                        (interp:
                                                             *mut Tcl_Interp,
                                                         token: Tcl_Command,
                                                         flagsPtr:
                                                             *mut ::libc::c_int)
                                                        -> ::libc::c_int>,
    pub tcl_GetEnsembleNamespace: ::std::option::Option<extern "C" fn
                                                            (interp:
                                                                 *mut Tcl_Interp,
                                                             token:
                                                                 Tcl_Command,
                                                             namespacePtrPtr:
                                                                 *mut *mut Tcl_Namespace)
                                                            -> ::libc::c_int>,
    pub tcl_SetTimeProc: ::std::option::Option<extern "C" fn
                                                   (getProc:
                                                        *mut Tcl_GetTimeProc,
                                                    scaleProc:
                                                        *mut Tcl_ScaleTimeProc,
                                                    clientData: ClientData)
                                                   -> ()>,
    pub tcl_QueryTimeProc: ::std::option::Option<extern "C" fn
                                                     (getProc:
                                                          *mut *mut Tcl_GetTimeProc,
                                                      scaleProc:
                                                          *mut *mut Tcl_ScaleTimeProc,
                                                      clientData:
                                                          *mut ClientData)
                                                     -> ()>,
    pub tcl_ChannelThreadActionProc: ::std::option::Option<extern "C" fn
                                                               (chanTypePtr:
                                                                    *const Tcl_ChannelType)
                                                               ->
                                                                   *mut Tcl_DriverThreadActionProc>,
    pub tcl_NewBignumObj: ::std::option::Option<extern "C" fn
                                                    (value: *mut mp_int)
                                                    -> *mut Tcl_Obj>,
    pub tcl_DbNewBignumObj: ::std::option::Option<extern "C" fn
                                                      (value: *mut mp_int,
                                                       file:
                                                           *const ::libc::c_char,
                                                       line: ::libc::c_int)
                                                      -> *mut Tcl_Obj>,
    pub tcl_SetBignumObj: ::std::option::Option<extern "C" fn
                                                    (obj: *mut Tcl_Obj,
                                                     value: *mut mp_int)
                                                    -> ()>,
    pub tcl_GetBignumFromObj: ::std::option::Option<extern "C" fn
                                                        (interp:
                                                             *mut Tcl_Interp,
                                                         obj: *mut Tcl_Obj,
                                                         value: *mut mp_int)
                                                        -> ::libc::c_int>,
    pub tcl_TakeBignumFromObj: ::std::option::Option<extern "C" fn
                                                         (interp:
                                                              *mut Tcl_Interp,
                                                          obj: *mut Tcl_Obj,
                                                          value: *mut mp_int)
                                                         -> ::libc::c_int>,
    pub tcl_TruncateChannel: ::std::option::Option<extern "C" fn
                                                       (chan: Tcl_Channel,
                                                        length: Tcl_WideInt)
                                                       -> ::libc::c_int>,
    pub tcl_ChannelTruncateProc: ::std::option::Option<extern "C" fn
                                                           (chanTypePtr:
                                                                *const Tcl_ChannelType)
                                                           ->
                                                               *mut Tcl_DriverTruncateProc>,
    pub tcl_SetChannelErrorInterp: ::std::option::Option<extern "C" fn
                                                             (interp:
                                                                  *mut Tcl_Interp,
                                                              msg:
                                                                  *mut Tcl_Obj)
                                                             -> ()>,
    pub tcl_GetChannelErrorInterp: ::std::option::Option<extern "C" fn
                                                             (interp:
                                                                  *mut Tcl_Interp,
                                                              msg:
                                                                  *mut *mut Tcl_Obj)
                                                             -> ()>,
    pub tcl_SetChannelError: ::std::option::Option<extern "C" fn
                                                       (chan: Tcl_Channel,
                                                        msg: *mut Tcl_Obj)
                                                       -> ()>,
    pub tcl_GetChannelError: ::std::option::Option<extern "C" fn
                                                       (chan: Tcl_Channel,
                                                        msg:
                                                            *mut *mut Tcl_Obj)
                                                       -> ()>,
    pub tcl_InitBignumFromDouble: ::std::option::Option<extern "C" fn
                                                            (interp:
                                                                 *mut Tcl_Interp,
                                                             initval:
                                                                 ::libc::c_double,
                                                             toInit:
                                                                 *mut mp_int)
                                                            -> ::libc::c_int>,
    pub tcl_GetNamespaceUnknownHandler: ::std::option::Option<extern "C" fn
                                                                  (interp:
                                                                       *mut Tcl_Interp,
                                                                   nsPtr:
                                                                       *mut Tcl_Namespace)
                                                                  ->
                                                                      *mut Tcl_Obj>,
    pub tcl_SetNamespaceUnknownHandler: ::std::option::Option<extern "C" fn
                                                                  (interp:
                                                                       *mut Tcl_Interp,
                                                                   nsPtr:
                                                                       *mut Tcl_Namespace,
                                                                   handlerPtr:
                                                                       *mut Tcl_Obj)
                                                                  ->
                                                                      ::libc::c_int>,
    pub tcl_GetEncodingFromObj: ::std::option::Option<extern "C" fn
                                                          (interp:
                                                               *mut Tcl_Interp,
                                                           objPtr:
                                                               *mut Tcl_Obj,
                                                           encodingPtr:
                                                               *mut Tcl_Encoding)
                                                          -> ::libc::c_int>,
    pub tcl_GetEncodingSearchPath: ::std::option::Option<extern "C" fn()
                                                             -> *mut Tcl_Obj>,
    pub tcl_SetEncodingSearchPath: ::std::option::Option<extern "C" fn
                                                             (searchPath:
                                                                  *mut Tcl_Obj)
                                                             ->
                                                                 ::libc::c_int>,
    pub tcl_GetEncodingNameFromEnvironment: ::std::option::Option<extern "C" fn
                                                                      (bufPtr:
                                                                           *mut Tcl_DString)
                                                                      ->
                                                                          *const ::libc::c_char>,
    pub tcl_PkgRequireProc: ::std::option::Option<extern "C" fn
                                                      (interp:
                                                           *mut Tcl_Interp,
                                                       name:
                                                           *const ::libc::c_char,
                                                       objc: ::libc::c_int,
                                                       objv:
                                                           *const *mut Tcl_Obj,
                                                       clientDataPtr:
                                                           *mut ::libc::c_void)
                                                      -> ::libc::c_int>,
    pub tcl_AppendObjToErrorInfo: ::std::option::Option<extern "C" fn
                                                            (interp:
                                                                 *mut Tcl_Interp,
                                                             objPtr:
                                                                 *mut Tcl_Obj)
                                                            -> ()>,
    pub tcl_AppendLimitedToObj: ::std::option::Option<extern "C" fn
                                                          (objPtr:
                                                               *mut Tcl_Obj,
                                                           bytes:
                                                               *const ::libc::c_char,
                                                           length:
                                                               ::libc::c_int,
                                                           limit:
                                                               ::libc::c_int,
                                                           ellipsis:
                                                               *const ::libc::c_char)
                                                          -> ()>,
    pub tcl_Format: ::std::option::Option<extern "C" fn
                                              (interp: *mut Tcl_Interp,
                                               format: *const ::libc::c_char,
                                               objc: ::libc::c_int,
                                               objv: *const *mut Tcl_Obj)
                                              -> *mut Tcl_Obj>,
    pub tcl_AppendFormatToObj: ::std::option::Option<extern "C" fn
                                                         (interp:
                                                              *mut Tcl_Interp,
                                                          objPtr:
                                                              *mut Tcl_Obj,
                                                          format:
                                                              *const ::libc::c_char,
                                                          objc: ::libc::c_int,
                                                          objv:
                                                              *const *mut Tcl_Obj)
                                                         -> ::libc::c_int>,
    pub tcl_ObjPrintf: ::std::option::Option<extern "C" fn
                                                 (format:
                                                      *const ::libc::c_char, ...)
                                                 -> *mut Tcl_Obj>,
    pub tcl_AppendPrintfToObj: ::std::option::Option<extern "C" fn
                                                         (objPtr:
                                                              *mut Tcl_Obj,
                                                          format:
                                                              *const ::libc::c_char, ...)
                                                         -> ()>,
    pub tcl_CancelEval: ::std::option::Option<extern "C" fn
                                                  (interp: *mut Tcl_Interp,
                                                   resultObjPtr: *mut Tcl_Obj,
                                                   clientData: ClientData,
                                                   flags: ::libc::c_int)
                                                  -> ::libc::c_int>,
    pub tcl_Canceled: ::std::option::Option<extern "C" fn
                                                (interp: *mut Tcl_Interp,
                                                 flags: ::libc::c_int)
                                                -> ::libc::c_int>,
    pub tcl_CreatePipe: ::std::option::Option<extern "C" fn
                                                  (interp: *mut Tcl_Interp,
                                                   rchan: *mut Tcl_Channel,
                                                   wchan: *mut Tcl_Channel,
                                                   flags: ::libc::c_int)
                                                  -> ::libc::c_int>,
    pub tcl_NRCreateCommand: ::std::option::Option<extern "C" fn
                                                       (interp:
                                                            *mut Tcl_Interp,
                                                        cmdName:
                                                            *const ::libc::c_char,
                                                        _proc:
                                                            *mut Tcl_ObjCmdProc,
                                                        nreProc:
                                                            *mut Tcl_ObjCmdProc,
                                                        clientData:
                                                            ClientData,
                                                        deleteProc:
                                                            *mut Tcl_CmdDeleteProc)
                                                       -> Tcl_Command>,
    pub tcl_NREvalObj: ::std::option::Option<extern "C" fn
                                                 (interp: *mut Tcl_Interp,
                                                  objPtr: *mut Tcl_Obj,
                                                  flags: ::libc::c_int)
                                                 -> ::libc::c_int>,
    pub tcl_NREvalObjv: ::std::option::Option<extern "C" fn
                                                  (interp: *mut Tcl_Interp,
                                                   objc: ::libc::c_int,
                                                   objv: *const *mut Tcl_Obj,
                                                   flags: ::libc::c_int)
                                                  -> ::libc::c_int>,
    pub tcl_NRCmdSwap: ::std::option::Option<extern "C" fn
                                                 (interp: *mut Tcl_Interp,
                                                  cmd: Tcl_Command,
                                                  objc: ::libc::c_int,
                                                  objv: *const *mut Tcl_Obj,
                                                  flags: ::libc::c_int)
                                                 -> ::libc::c_int>,
    pub tcl_NRAddCallback: ::std::option::Option<extern "C" fn
                                                     (interp: *mut Tcl_Interp,
                                                      postProcPtr:
                                                          *mut Tcl_NRPostProc,
                                                      data0: ClientData,
                                                      data1: ClientData,
                                                      data2: ClientData,
                                                      data3: ClientData)
                                                     -> ()>,
    pub tcl_NRCallObjProc: ::std::option::Option<extern "C" fn
                                                     (interp: *mut Tcl_Interp,
                                                      objProc:
                                                          *mut Tcl_ObjCmdProc,
                                                      clientData: ClientData,
                                                      objc: ::libc::c_int,
                                                      objv:
                                                          *const *mut Tcl_Obj)
                                                     -> ::libc::c_int>,
    pub tcl_GetFSDeviceFromStat: ::std::option::Option<extern "C" fn
                                                           (statPtr:
                                                                *const Tcl_StatBuf)
                                                           -> ::libc::c_uint>,
    pub tcl_GetFSInodeFromStat: ::std::option::Option<extern "C" fn
                                                          (statPtr:
                                                               *const Tcl_StatBuf)
                                                          -> ::libc::c_uint>,
    pub tcl_GetModeFromStat: ::std::option::Option<extern "C" fn
                                                       (statPtr:
                                                            *const Tcl_StatBuf)
                                                       -> ::libc::c_uint>,
    pub tcl_GetLinkCountFromStat: ::std::option::Option<extern "C" fn
                                                            (statPtr:
                                                                 *const Tcl_StatBuf)
                                                            -> ::libc::c_int>,
    pub tcl_GetUserIdFromStat: ::std::option::Option<extern "C" fn
                                                         (statPtr:
                                                              *const Tcl_StatBuf)
                                                         -> ::libc::c_int>,
    pub tcl_GetGroupIdFromStat: ::std::option::Option<extern "C" fn
                                                          (statPtr:
                                                               *const Tcl_StatBuf)
                                                          -> ::libc::c_int>,
    pub tcl_GetDeviceTypeFromStat: ::std::option::Option<extern "C" fn
                                                             (statPtr:
                                                                  *const Tcl_StatBuf)
                                                             ->
                                                                 ::libc::c_int>,
    pub tcl_GetAccessTimeFromStat: ::std::option::Option<extern "C" fn
                                                             (statPtr:
                                                                  *const Tcl_StatBuf)
                                                             -> Tcl_WideInt>,
    pub tcl_GetModificationTimeFromStat: ::std::option::Option<extern "C" fn
                                                                   (statPtr:
                                                                        *const Tcl_StatBuf)
                                                                   ->
                                                                       Tcl_WideInt>,
    pub tcl_GetChangeTimeFromStat: ::std::option::Option<extern "C" fn
                                                             (statPtr:
                                                                  *const Tcl_StatBuf)
                                                             -> Tcl_WideInt>,
    pub tcl_GetSizeFromStat: ::std::option::Option<extern "C" fn
                                                       (statPtr:
                                                            *const Tcl_StatBuf)
                                                       -> Tcl_WideUInt>,
    pub tcl_GetBlocksFromStat: ::std::option::Option<extern "C" fn
                                                         (statPtr:
                                                              *const Tcl_StatBuf)
                                                         -> Tcl_WideUInt>,
    pub tcl_GetBlockSizeFromStat: ::std::option::Option<extern "C" fn
                                                            (statPtr:
                                                                 *const Tcl_StatBuf)
                                                            ->
                                                                ::libc::c_uint>,
    pub tcl_SetEnsembleParameterList: ::std::option::Option<extern "C" fn
                                                                (interp:
                                                                     *mut Tcl_Interp,
                                                                 token:
                                                                     Tcl_Command,
                                                                 paramList:
                                                                     *mut Tcl_Obj)
                                                                ->
                                                                    ::libc::c_int>,
    pub tcl_GetEnsembleParameterList: ::std::option::Option<extern "C" fn
                                                                (interp:
                                                                     *mut Tcl_Interp,
                                                                 token:
                                                                     Tcl_Command,
                                                                 paramListPtr:
                                                                     *mut *mut Tcl_Obj)
                                                                ->
                                                                    ::libc::c_int>,
    pub tcl_ParseArgsObjv: ::std::option::Option<extern "C" fn
                                                     (interp: *mut Tcl_Interp,
                                                      argTable:
                                                          *const Tcl_ArgvInfo,
                                                      objcPtr:
                                                          *mut ::libc::c_int,
                                                      objv:
                                                          *const *mut Tcl_Obj,
                                                      remObjv:
                                                          *mut *mut *mut Tcl_Obj)
                                                     -> ::libc::c_int>,
    pub tcl_GetErrorLine: ::std::option::Option<extern "C" fn
                                                    (interp: *mut Tcl_Interp)
                                                    -> ::libc::c_int>,
    pub tcl_SetErrorLine: ::std::option::Option<extern "C" fn
                                                    (interp: *mut Tcl_Interp,
                                                     lineNum: ::libc::c_int)
                                                    -> ()>,
    pub tcl_TransferResult: ::std::option::Option<extern "C" fn
                                                      (sourceInterp:
                                                           *mut Tcl_Interp,
                                                       result: ::libc::c_int,
                                                       targetInterp:
                                                           *mut Tcl_Interp)
                                                      -> ()>,
    pub tcl_InterpActive: ::std::option::Option<extern "C" fn
                                                    (interp: *mut Tcl_Interp)
                                                    -> ::libc::c_int>,
    pub tcl_BackgroundException: ::std::option::Option<extern "C" fn
                                                           (interp:
                                                                *mut Tcl_Interp,
                                                            code:
                                                                ::libc::c_int)
                                                           -> ()>,
    pub tcl_ZlibDeflate: ::std::option::Option<extern "C" fn
                                                   (interp: *mut Tcl_Interp,
                                                    format: ::libc::c_int,
                                                    data: *mut Tcl_Obj,
                                                    level: ::libc::c_int,
                                                    gzipHeaderDictObj:
                                                        *mut Tcl_Obj)
                                                   -> ::libc::c_int>,
    pub tcl_ZlibInflate: ::std::option::Option<extern "C" fn
                                                   (interp: *mut Tcl_Interp,
                                                    format: ::libc::c_int,
                                                    data: *mut Tcl_Obj,
                                                    buffersize: ::libc::c_int,
                                                    gzipHeaderDictObj:
                                                        *mut Tcl_Obj)
                                                   -> ::libc::c_int>,
    pub tcl_ZlibCRC32: ::std::option::Option<extern "C" fn
                                                 (crc: ::libc::c_uint,
                                                  buf: *const ::libc::c_uchar,
                                                  len: ::libc::c_int)
                                                 -> ::libc::c_uint>,
    pub tcl_ZlibAdler32: ::std::option::Option<extern "C" fn
                                                   (adler: ::libc::c_uint,
                                                    buf:
                                                        *const ::libc::c_uchar,
                                                    len: ::libc::c_int)
                                                   -> ::libc::c_uint>,
    pub tcl_ZlibStreamInit: ::std::option::Option<extern "C" fn
                                                      (interp:
                                                           *mut Tcl_Interp,
                                                       mode: ::libc::c_int,
                                                       format: ::libc::c_int,
                                                       level: ::libc::c_int,
                                                       dictObj: *mut Tcl_Obj,
                                                       zshandle:
                                                           *mut Tcl_ZlibStream)
                                                      -> ::libc::c_int>,
    pub tcl_ZlibStreamGetCommandName: ::std::option::Option<extern "C" fn
                                                                (zshandle:
                                                                     Tcl_ZlibStream)
                                                                ->
                                                                    *mut Tcl_Obj>,
    pub tcl_ZlibStreamEof: ::std::option::Option<extern "C" fn
                                                     (zshandle:
                                                          Tcl_ZlibStream)
                                                     -> ::libc::c_int>,
    pub tcl_ZlibStreamChecksum: ::std::option::Option<extern "C" fn
                                                          (zshandle:
                                                               Tcl_ZlibStream)
                                                          -> ::libc::c_int>,
    pub tcl_ZlibStreamPut: ::std::option::Option<extern "C" fn
                                                     (zshandle:
                                                          Tcl_ZlibStream,
                                                      data: *mut Tcl_Obj,
                                                      flush: ::libc::c_int)
                                                     -> ::libc::c_int>,
    pub tcl_ZlibStreamGet: ::std::option::Option<extern "C" fn
                                                     (zshandle:
                                                          Tcl_ZlibStream,
                                                      data: *mut Tcl_Obj,
                                                      count: ::libc::c_int)
                                                     -> ::libc::c_int>,
    pub tcl_ZlibStreamClose: ::std::option::Option<extern "C" fn
                                                       (zshandle:
                                                            Tcl_ZlibStream)
                                                       -> ::libc::c_int>,
    pub tcl_ZlibStreamReset: ::std::option::Option<extern "C" fn
                                                       (zshandle:
                                                            Tcl_ZlibStream)
                                                       -> ::libc::c_int>,
    pub tcl_SetStartupScript: ::std::option::Option<extern "C" fn
                                                        (path: *mut Tcl_Obj,
                                                         encoding:
                                                             *const ::libc::c_char)
                                                        -> ()>,
    pub tcl_GetStartupScript: ::std::option::Option<extern "C" fn
                                                        (encodingPtr:
                                                             *mut *const ::libc::c_char)
                                                        -> *mut Tcl_Obj>,
    pub tcl_CloseEx: ::std::option::Option<extern "C" fn
                                               (interp: *mut Tcl_Interp,
                                                chan: Tcl_Channel,
                                                flags: ::libc::c_int)
                                               -> ::libc::c_int>,
    pub tcl_NRExprObj: ::std::option::Option<extern "C" fn
                                                 (interp: *mut Tcl_Interp,
                                                  objPtr: *mut Tcl_Obj,
                                                  resultPtr: *mut Tcl_Obj)
                                                 -> ::libc::c_int>,
    pub tcl_NRSubstObj: ::std::option::Option<extern "C" fn
                                                  (interp: *mut Tcl_Interp,
                                                   objPtr: *mut Tcl_Obj,
                                                   flags: ::libc::c_int)
                                                  -> ::libc::c_int>,
    pub tcl_LoadFile: ::std::option::Option<extern "C" fn
                                                (interp: *mut Tcl_Interp,
                                                 pathPtr: *mut Tcl_Obj,
                                                 symv:
                                                     *const *const ::libc::c_char,
                                                 flags: ::libc::c_int,
                                                 procPtrs:
                                                     *mut ::libc::c_void,
                                                 handlePtr:
                                                     *mut Tcl_LoadHandle)
                                                -> ::libc::c_int>,
    pub tcl_FindSymbol: ::std::option::Option<extern "C" fn
                                                  (interp: *mut Tcl_Interp,
                                                   handle: Tcl_LoadHandle,
                                                   symbol:
                                                       *const ::libc::c_char)
                                                  -> *mut ::libc::c_void>,
    pub tcl_FSUnloadFile: ::std::option::Option<extern "C" fn
                                                    (interp: *mut Tcl_Interp,
                                                     handlePtr:
                                                         Tcl_LoadHandle)
                                                    -> ::libc::c_int>,
    pub tcl_ZlibStreamSetCompressionDictionary: ::std::option::Option<extern "C" fn
                                                                          (zhandle:
                                                                               Tcl_ZlibStream,
                                                                           compressionDictionaryObj:
                                                                               *mut Tcl_Obj)
                                                                          ->
                                                                              ()>,
}
impl ::std::default::Default for Struct_TclStubs {
    fn default() -> Struct_TclStubs { unsafe { ::std::mem::zeroed() } }
}
pub type TclStubs = Struct_TclStubs;
#[repr(C)]
pub struct Struct_TclPlatStubs {
    pub magic: ::libc::c_int,
    pub hooks: *mut ::libc::c_void,
}
impl ::std::default::Default for Struct_TclPlatStubs {
    fn default() -> Struct_TclPlatStubs { unsafe { ::std::mem::zeroed() } }
}
pub type TclPlatStubs = Struct_TclPlatStubs;
extern "C" {
    pub static mut __stdinp: *mut FILE;
    pub static mut __stdoutp: *mut FILE;
    pub static mut __stderrp: *mut FILE;
    pub static sys_nerr: ::libc::c_int;
    pub static mut sys_errlist: *const *const ::libc::c_char;
    pub static mut tclStubsPtr: *const TclStubs;
    pub static mut tclPlatStubsPtr: *const TclPlatStubs;
}
extern "C" {
    pub fn renameat(arg1: ::libc::c_int, arg2: *const ::libc::c_char,
                    arg3: ::libc::c_int, arg4: *const ::libc::c_char)
     -> ::libc::c_int;
    pub fn clearerr(arg1: *mut FILE) -> ();
    pub fn fclose(arg1: *mut FILE) -> ::libc::c_int;
    pub fn feof(arg1: *mut FILE) -> ::libc::c_int;
    pub fn ferror(arg1: *mut FILE) -> ::libc::c_int;
    pub fn fflush(arg1: *mut FILE) -> ::libc::c_int;
    pub fn fgetc(arg1: *mut FILE) -> ::libc::c_int;
    pub fn fgetpos(arg1: *mut FILE, arg2: *mut fpos_t) -> ::libc::c_int;
    pub fn fgets(arg1: *mut ::libc::c_char, arg2: ::libc::c_int,
                 arg3: *mut FILE) -> *mut ::libc::c_char;
    pub fn fopen(arg1: *const ::libc::c_char, arg2: *const ::libc::c_char)
     -> *mut FILE;
    pub fn fprintf(arg1: *mut FILE, arg2: *const ::libc::c_char, ...)
     -> ::libc::c_int;
    pub fn fputc(arg1: ::libc::c_int, arg2: *mut FILE) -> ::libc::c_int;
    pub fn fputs(arg1: *const ::libc::c_char, arg2: *mut FILE)
     -> ::libc::c_int;
    pub fn fread(arg1: *mut ::libc::c_void, arg2: size_t, arg3: size_t,
                 arg4: *mut FILE) -> size_t;
    pub fn freopen(arg1: *const ::libc::c_char, arg2: *const ::libc::c_char,
                   arg3: *mut FILE) -> *mut FILE;
    pub fn fscanf(arg1: *mut FILE, arg2: *const ::libc::c_char, ...)
     -> ::libc::c_int;
    pub fn fseek(arg1: *mut FILE, arg2: ::libc::c_long, arg3: ::libc::c_int)
     -> ::libc::c_int;
    pub fn fsetpos(arg1: *mut FILE, arg2: *const fpos_t) -> ::libc::c_int;
    pub fn ftell(arg1: *mut FILE) -> ::libc::c_long;
    pub fn fwrite(arg1: *const ::libc::c_void, arg2: size_t, arg3: size_t,
                  arg4: *mut FILE) -> size_t;
    pub fn getc(arg1: *mut FILE) -> ::libc::c_int;
    pub fn getchar() -> ::libc::c_int;
    pub fn gets(arg1: *mut ::libc::c_char) -> *mut ::libc::c_char;
    pub fn perror(arg1: *const ::libc::c_char) -> ();
    pub fn printf(arg1: *const ::libc::c_char, ...) -> ::libc::c_int;
    pub fn putc(arg1: ::libc::c_int, arg2: *mut FILE) -> ::libc::c_int;
    pub fn putchar(arg1: ::libc::c_int) -> ::libc::c_int;
    pub fn puts(arg1: *const ::libc::c_char) -> ::libc::c_int;
    pub fn remove(arg1: *const ::libc::c_char) -> ::libc::c_int;
    pub fn rename(arg1: *const ::libc::c_char, arg2: *const ::libc::c_char)
     -> ::libc::c_int;
    pub fn rewind(arg1: *mut FILE) -> ();
    pub fn scanf(arg1: *const ::libc::c_char, ...) -> ::libc::c_int;
    pub fn setbuf(arg1: *mut FILE, arg2: *mut ::libc::c_char) -> ();
    pub fn setvbuf(arg1: *mut FILE, arg2: *mut ::libc::c_char,
                   arg3: ::libc::c_int, arg4: size_t) -> ::libc::c_int;
    pub fn sprintf(arg1: *mut ::libc::c_char,
                   arg2: *const ::libc::c_char, ...) -> ::libc::c_int;
    pub fn sscanf(arg1: *const ::libc::c_char,
                  arg2: *const ::libc::c_char, ...) -> ::libc::c_int;
    pub fn tmpfile() -> *mut FILE;
    pub fn tmpnam(arg1: *mut ::libc::c_char) -> *mut ::libc::c_char;
    pub fn ungetc(arg1: ::libc::c_int, arg2: *mut FILE) -> ::libc::c_int;
/*    pub fn vfprintf(arg1: *mut FILE, arg2: *const ::libc::c_char,
                    arg3: va_list) -> ::libc::c_int;*/
/*    pub fn vprintf(arg1: *const ::libc::c_char, arg2: va_list)
     -> ::libc::c_int;*/
/*    pub fn vsprintf(arg1: *mut ::libc::c_char, arg2: *const ::libc::c_char,
                    arg3: va_list) -> ::libc::c_int;*/
    pub fn ctermid(arg1: *mut ::libc::c_char) -> *mut ::libc::c_char;
    pub fn fdopen(arg1: ::libc::c_int, arg2: *const ::libc::c_char)
     -> *mut FILE;
    pub fn fileno(arg1: *mut FILE) -> ::libc::c_int;
    pub fn pclose(arg1: *mut FILE) -> ::libc::c_int;
    pub fn popen(arg1: *const ::libc::c_char, arg2: *const ::libc::c_char)
     -> *mut FILE;
    pub fn __srget(arg1: *mut FILE) -> ::libc::c_int;
/*    pub fn __svfscanf(arg1: *mut FILE, arg2: *const ::libc::c_char,
                      arg3: va_list) -> ::libc::c_int;*/
    pub fn __swbuf(arg1: ::libc::c_int, arg2: *mut FILE) -> ::libc::c_int;
    pub fn __sputc(_c: ::libc::c_int, _p: *mut FILE) -> ::libc::c_int;
    pub fn flockfile(arg1: *mut FILE) -> ();
    pub fn ftrylockfile(arg1: *mut FILE) -> ::libc::c_int;
    pub fn funlockfile(arg1: *mut FILE) -> ();
    pub fn getc_unlocked(arg1: *mut FILE) -> ::libc::c_int;
    pub fn getchar_unlocked() -> ::libc::c_int;
    pub fn putc_unlocked(arg1: ::libc::c_int, arg2: *mut FILE)
     -> ::libc::c_int;
    pub fn putchar_unlocked(arg1: ::libc::c_int) -> ::libc::c_int;
    pub fn getw(arg1: *mut FILE) -> ::libc::c_int;
    pub fn putw(arg1: ::libc::c_int, arg2: *mut FILE) -> ::libc::c_int;
    pub fn tempnam(arg1: *const ::libc::c_char, arg2: *const ::libc::c_char)
     -> *mut ::libc::c_char;
    pub fn fseeko(arg1: *mut FILE, arg2: off_t, arg3: ::libc::c_int)
     -> ::libc::c_int;
    pub fn ftello(arg1: *mut FILE) -> off_t;
    pub fn snprintf(arg1: *mut ::libc::c_char, arg2: size_t,
                    arg3: *const ::libc::c_char, ...) -> ::libc::c_int;
/*    pub fn vfscanf(arg1: *mut FILE, arg2: *const ::libc::c_char,
                   arg3: va_list) -> ::libc::c_int;*/
/*    pub fn vscanf(arg1: *const ::libc::c_char, arg2: va_list)
     -> ::libc::c_int;*/
/*    pub fn vsnprintf(arg1: *mut ::libc::c_char, arg2: size_t,
                     arg3: *const ::libc::c_char, arg4: va_list)
     -> ::libc::c_int;*/
/*    pub fn vsscanf(arg1: *const ::libc::c_char, arg2: *const ::libc::c_char,
                   arg3: va_list) -> ::libc::c_int;*/
    pub fn dprintf(arg1: ::libc::c_int, arg2: *const ::libc::c_char, ...)
     -> ::libc::c_int;
/*    pub fn vdprintf(arg1: ::libc::c_int, arg2: *const ::libc::c_char,
                    arg3: va_list) -> ::libc::c_int;*/
    pub fn getdelim(arg1: *mut *mut ::libc::c_char, arg2: *mut size_t,
                    arg3: ::libc::c_int, arg4: *mut FILE) -> ssize_t;
    pub fn getline(arg1: *mut *mut ::libc::c_char, arg2: *mut size_t,
                   arg3: *mut FILE) -> ssize_t;
    pub fn asprintf(arg1: *mut *mut ::libc::c_char,
                    arg2: *const ::libc::c_char, ...) -> ::libc::c_int;
    pub fn ctermid_r(arg1: *mut ::libc::c_char) -> *mut ::libc::c_char;
    pub fn fgetln(arg1: *mut FILE, arg2: *mut size_t) -> *mut ::libc::c_char;
    pub fn fmtcheck(arg1: *const ::libc::c_char, arg2: *const ::libc::c_char)
     -> *const ::libc::c_char;
    pub fn fpurge(arg1: *mut FILE) -> ::libc::c_int;
    pub fn setbuffer(arg1: *mut FILE, arg2: *mut ::libc::c_char,
                     arg3: ::libc::c_int) -> ();
    pub fn setlinebuf(arg1: *mut FILE) -> ::libc::c_int;
/*    pub fn vasprintf(arg1: *mut *mut ::libc::c_char,
                     arg2: *const ::libc::c_char, arg3: va_list)
     -> ::libc::c_int;*/
    pub fn zopen(arg1: *const ::libc::c_char, arg2: *const ::libc::c_char,
                 arg3: ::libc::c_int) -> *mut FILE;
    pub fn funopen(arg1: *const ::libc::c_void,
                   arg2:
                       ::std::option::Option<extern "C" fn
                                                 (arg1: *mut ::libc::c_void,
                                                  arg2: *mut ::libc::c_char,
                                                  arg3: ::libc::c_int)
                                                 -> ::libc::c_int>,
                   arg3:
                       ::std::option::Option<extern "C" fn
                                                 (arg1: *mut ::libc::c_void,
                                                  arg2: *const ::libc::c_char,
                                                  arg3: ::libc::c_int)
                                                 -> ::libc::c_int>,
                   arg4:
                       ::std::option::Option<extern "C" fn
                                                 (arg1: *mut ::libc::c_void,
                                                  arg2: fpos_t,
                                                  arg3: ::libc::c_int)
                                                 -> fpos_t>,
                   arg5:
                       ::std::option::Option<extern "C" fn
                                                 (arg1: *mut ::libc::c_void)
                                                 -> ::libc::c_int>)
     -> *mut FILE;
    pub fn __sprintf_chk(arg1: *mut ::libc::c_char, arg2: ::libc::c_int,
                         arg3: size_t, arg4: *const ::libc::c_char, ...)
     -> ::libc::c_int;
    pub fn __snprintf_chk(arg1: *mut ::libc::c_char, arg2: size_t,
                          arg3: ::libc::c_int, arg4: size_t,
                          arg5: *const ::libc::c_char, ...) -> ::libc::c_int;
/*    pub fn __vsprintf_chk(arg1: *mut ::libc::c_char, arg2: ::libc::c_int,
                          arg3: size_t, arg4: *const ::libc::c_char,
                          arg5: va_list) -> ::libc::c_int;*/
/*    pub fn __vsnprintf_chk(arg1: *mut ::libc::c_char, arg2: size_t,
                           arg3: ::libc::c_int, arg4: size_t,
                           arg5: *const ::libc::c_char, arg6: va_list)
     -> ::libc::c_int;*/
    //pub fn Tcl_IncrRefCount(objPtr: *mut Tcl_Obj) -> (); //NOTICE: These two functions are defined as a macro :(
    //pub fn Tcl_DecrRefCount(objPtr: *mut Tcl_Obj) -> ();
    //pub fn Tcl_IsShared(objPtr: *mut Tcl_Obj) -> ::libc::c_int;
    pub fn Tcl_InitStubs(interp: *mut Tcl_Interp,
                         version: *const ::libc::c_char, exact: ::libc::c_int)
     -> *const ::libc::c_char;
    pub fn TclTomMathInitializeStubs(interp: *mut Tcl_Interp,
                                     version: *const ::libc::c_char,
                                     epoch: ::libc::c_int,
                                     revision: ::libc::c_int)
     -> *const ::libc::c_char;
    pub fn Tcl_MainEx(argc: ::libc::c_int, argv: *mut *mut ::libc::c_char,
                      appInitProc: *mut Tcl_AppInitProc,
                      interp: *mut Tcl_Interp) -> ();
    pub fn Tcl_PkgInitStubsCheck(interp: *mut Tcl_Interp,
                                 version: *const ::libc::c_char,
                                 exact: ::libc::c_int)
     -> *const ::libc::c_char;
    pub fn Tcl_PkgProvideEx(interp: *mut Tcl_Interp,
                            name: *const ::libc::c_char,
                            version: *const ::libc::c_char,
                            clientData: *const ::libc::c_void)
     -> ::libc::c_int;
    pub fn Tcl_PkgRequireEx(interp: *mut Tcl_Interp,
                            name: *const ::libc::c_char,
                            version: *const ::libc::c_char,
                            exact: ::libc::c_int,
                            clientDataPtr: *mut ::libc::c_void)
     -> *const ::libc::c_char;
    pub fn Tcl_Panic(format: *const ::libc::c_char, ...) -> ();
    pub fn Tcl_Alloc(size: ::libc::c_uint) -> *mut ::libc::c_char;
    pub fn Tcl_Free(ptr: *mut ::libc::c_char) -> ();
    pub fn Tcl_Realloc(ptr: *mut ::libc::c_char, size: ::libc::c_uint)
     -> *mut ::libc::c_char;
    pub fn Tcl_DbCkalloc(size: ::libc::c_uint, file: *const ::libc::c_char,
                         line: ::libc::c_int) -> *mut ::libc::c_char;
    pub fn Tcl_DbCkfree(ptr: *mut ::libc::c_char, file: *const ::libc::c_char,
                        line: ::libc::c_int) -> ();
    pub fn Tcl_DbCkrealloc(ptr: *mut ::libc::c_char, size: ::libc::c_uint,
                           file: *const ::libc::c_char, line: ::libc::c_int)
     -> *mut ::libc::c_char;
    pub fn Tcl_CreateFileHandler(fd: ::libc::c_int, mask: ::libc::c_int,
                                 _proc: *mut Tcl_FileProc,
                                 clientData: ClientData) -> ();
    pub fn Tcl_DeleteFileHandler(fd: ::libc::c_int) -> ();
    pub fn Tcl_SetTimer(timePtr: *const Tcl_Time) -> ();
    pub fn Tcl_Sleep(ms: ::libc::c_int) -> ();
    pub fn Tcl_WaitForEvent(timePtr: *const Tcl_Time) -> ::libc::c_int;
    pub fn Tcl_AppendAllObjTypes(interp: *mut Tcl_Interp,
                                 objPtr: *mut Tcl_Obj) -> ::libc::c_int;
    pub fn Tcl_AppendStringsToObj(objPtr: *mut Tcl_Obj, ...) -> ();
    pub fn Tcl_AppendToObj(objPtr: *mut Tcl_Obj, bytes: *const ::libc::c_char,
                           length: ::libc::c_int) -> ();
    pub fn Tcl_ConcatObj(objc: ::libc::c_int, objv: *const *mut Tcl_Obj)
     -> *mut Tcl_Obj;
    pub fn Tcl_ConvertToType(interp: *mut Tcl_Interp, objPtr: *mut Tcl_Obj,
                             typePtr: *const Tcl_ObjType) -> ::libc::c_int;
    pub fn Tcl_DbDecrRefCount(objPtr: *mut Tcl_Obj,
                              file: *const ::libc::c_char,
                              line: ::libc::c_int) -> ();
    pub fn Tcl_DbIncrRefCount(objPtr: *mut Tcl_Obj,
                              file: *const ::libc::c_char,
                              line: ::libc::c_int) -> ();
    pub fn Tcl_DbIsShared(objPtr: *mut Tcl_Obj, file: *const ::libc::c_char,
                          line: ::libc::c_int) -> ::libc::c_int;
    pub fn Tcl_DbNewBooleanObj(boolValue: ::libc::c_int,
                               file: *const ::libc::c_char,
                               line: ::libc::c_int) -> *mut Tcl_Obj;
    pub fn Tcl_DbNewByteArrayObj(bytes: *const ::libc::c_uchar,
                                 length: ::libc::c_int,
                                 file: *const ::libc::c_char,
                                 line: ::libc::c_int) -> *mut Tcl_Obj;
    pub fn Tcl_DbNewDoubleObj(doubleValue: ::libc::c_double,
                              file: *const ::libc::c_char,
                              line: ::libc::c_int) -> *mut Tcl_Obj;
    pub fn Tcl_DbNewListObj(objc: ::libc::c_int, objv: *const *mut Tcl_Obj,
                            file: *const ::libc::c_char, line: ::libc::c_int)
     -> *mut Tcl_Obj;
    pub fn Tcl_DbNewLongObj(longValue: ::libc::c_long,
                            file: *const ::libc::c_char, line: ::libc::c_int)
     -> *mut Tcl_Obj;
    pub fn Tcl_DbNewObj(file: *const ::libc::c_char, line: ::libc::c_int)
     -> *mut Tcl_Obj;
    pub fn Tcl_DbNewStringObj(bytes: *const ::libc::c_char,
                              length: ::libc::c_int,
                              file: *const ::libc::c_char,
                              line: ::libc::c_int) -> *mut Tcl_Obj;
    pub fn Tcl_DuplicateObj(objPtr: *mut Tcl_Obj) -> *mut Tcl_Obj;
    pub fn TclFreeObj(objPtr: *mut Tcl_Obj) -> ();
    pub fn Tcl_GetBoolean(interp: *mut Tcl_Interp, src: *const ::libc::c_char,
                          boolPtr: *mut ::libc::c_int) -> ::libc::c_int;
    pub fn Tcl_GetBooleanFromObj(interp: *mut Tcl_Interp,
                                 objPtr: *mut Tcl_Obj,
                                 boolPtr: *mut ::libc::c_int)
     -> ::libc::c_int;
    pub fn Tcl_GetByteArrayFromObj(objPtr: *mut Tcl_Obj,
                                   lengthPtr: *mut ::libc::c_int)
     -> *mut ::libc::c_uchar;
    pub fn Tcl_GetDouble(interp: *mut Tcl_Interp, src: *const ::libc::c_char,
                         doublePtr: *mut ::libc::c_double) -> ::libc::c_int;
    pub fn Tcl_GetDoubleFromObj(interp: *mut Tcl_Interp, objPtr: *mut Tcl_Obj,
                                doublePtr: *mut ::libc::c_double)
     -> ::libc::c_int;
    pub fn Tcl_GetIndexFromObj(interp: *mut Tcl_Interp, objPtr: *mut Tcl_Obj,
                               tablePtr: *const *const ::libc::c_char,
                               msg: *const ::libc::c_char,
                               flags: ::libc::c_int,
                               indexPtr: *mut ::libc::c_int) -> ::libc::c_int;
    pub fn Tcl_GetInt(interp: *mut Tcl_Interp, src: *const ::libc::c_char,
                      intPtr: *mut ::libc::c_int) -> ::libc::c_int;
    pub fn Tcl_GetIntFromObj(interp: *mut Tcl_Interp, objPtr: *mut Tcl_Obj,
                             intPtr: *mut ::libc::c_int) -> ::libc::c_int;
    pub fn Tcl_GetLongFromObj(interp: *mut Tcl_Interp, objPtr: *mut Tcl_Obj,
                              longPtr: *mut ::libc::c_long) -> ::libc::c_int;
    pub fn Tcl_GetObjType(typeName: *const ::libc::c_char)
     -> *const Tcl_ObjType;
    pub fn Tcl_GetStringFromObj(objPtr: *mut Tcl_Obj,
                                lengthPtr: *mut ::libc::c_int)
     -> *mut ::libc::c_char;
    pub fn Tcl_InvalidateStringRep(objPtr: *mut Tcl_Obj) -> ();
    pub fn Tcl_ListObjAppendList(interp: *mut Tcl_Interp,
                                 listPtr: *mut Tcl_Obj,
                                 elemListPtr: *mut Tcl_Obj) -> ::libc::c_int;
    pub fn Tcl_ListObjAppendElement(interp: *mut Tcl_Interp,
                                    listPtr: *mut Tcl_Obj,
                                    objPtr: *mut Tcl_Obj) -> ::libc::c_int;
    pub fn Tcl_ListObjGetElements(interp: *mut Tcl_Interp,
                                  listPtr: *mut Tcl_Obj,
                                  objcPtr: *mut ::libc::c_int,
                                  objvPtr: *mut *mut *mut Tcl_Obj)
     -> ::libc::c_int;
    pub fn Tcl_ListObjIndex(interp: *mut Tcl_Interp, listPtr: *mut Tcl_Obj,
                            index: ::libc::c_int,
                            objPtrPtr: *mut *mut Tcl_Obj) -> ::libc::c_int;
    pub fn Tcl_ListObjLength(interp: *mut Tcl_Interp, listPtr: *mut Tcl_Obj,
                             lengthPtr: *mut ::libc::c_int) -> ::libc::c_int;
    pub fn Tcl_ListObjReplace(interp: *mut Tcl_Interp, listPtr: *mut Tcl_Obj,
                              first: ::libc::c_int, count: ::libc::c_int,
                              objc: ::libc::c_int, objv: *const *mut Tcl_Obj)
     -> ::libc::c_int;
    pub fn Tcl_NewBooleanObj(boolValue: ::libc::c_int) -> *mut Tcl_Obj;
    pub fn Tcl_NewByteArrayObj(bytes: *const ::libc::c_uchar,
                               length: ::libc::c_int) -> *mut Tcl_Obj;
    pub fn Tcl_NewDoubleObj(doubleValue: ::libc::c_double) -> *mut Tcl_Obj;
    pub fn Tcl_NewIntObj(intValue: ::libc::c_int) -> *mut Tcl_Obj;
    pub fn Tcl_NewListObj(objc: ::libc::c_int, objv: *const *mut Tcl_Obj)
     -> *mut Tcl_Obj;
    pub fn Tcl_NewLongObj(longValue: ::libc::c_long) -> *mut Tcl_Obj;
    pub fn Tcl_NewObj() -> *mut Tcl_Obj;
    pub fn Tcl_NewStringObj(bytes: *const ::libc::c_char,
                            length: ::libc::c_int) -> *mut Tcl_Obj;
    pub fn Tcl_SetBooleanObj(objPtr: *mut Tcl_Obj, boolValue: ::libc::c_int)
     -> ();
    pub fn Tcl_SetByteArrayLength(objPtr: *mut Tcl_Obj, length: ::libc::c_int)
     -> *mut ::libc::c_uchar;
    pub fn Tcl_SetByteArrayObj(objPtr: *mut Tcl_Obj,
                               bytes: *const ::libc::c_uchar,
                               length: ::libc::c_int) -> ();
    pub fn Tcl_SetDoubleObj(objPtr: *mut Tcl_Obj,
                            doubleValue: ::libc::c_double) -> ();
    pub fn Tcl_SetIntObj(objPtr: *mut Tcl_Obj, intValue: ::libc::c_int) -> ();
    pub fn Tcl_SetListObj(objPtr: *mut Tcl_Obj, objc: ::libc::c_int,
                          objv: *const *mut Tcl_Obj) -> ();
    pub fn Tcl_SetLongObj(objPtr: *mut Tcl_Obj, longValue: ::libc::c_long)
     -> ();
    pub fn Tcl_SetObjLength(objPtr: *mut Tcl_Obj, length: ::libc::c_int)
     -> ();
    pub fn Tcl_SetStringObj(objPtr: *mut Tcl_Obj,
                            bytes: *const ::libc::c_char,
                            length: ::libc::c_int) -> ();
    pub fn Tcl_AddErrorInfo(interp: *mut Tcl_Interp,
                            message: *const ::libc::c_char) -> ();
    pub fn Tcl_AddObjErrorInfo(interp: *mut Tcl_Interp,
                               message: *const ::libc::c_char,
                               length: ::libc::c_int) -> ();
    pub fn Tcl_AllowExceptions(interp: *mut Tcl_Interp) -> ();
    pub fn Tcl_AppendElement(interp: *mut Tcl_Interp,
                             element: *const ::libc::c_char) -> ();
    pub fn Tcl_AppendResult(interp: *mut Tcl_Interp, ...) -> ();
    pub fn Tcl_AsyncCreate(_proc: *mut Tcl_AsyncProc, clientData: ClientData)
     -> Tcl_AsyncHandler;
    pub fn Tcl_AsyncDelete(async: Tcl_AsyncHandler) -> ();
    pub fn Tcl_AsyncInvoke(interp: *mut Tcl_Interp, code: ::libc::c_int)
     -> ::libc::c_int;
    pub fn Tcl_AsyncMark(async: Tcl_AsyncHandler) -> ();
    pub fn Tcl_AsyncReady() -> ::libc::c_int;
    pub fn Tcl_BackgroundError(interp: *mut Tcl_Interp) -> ();
    pub fn Tcl_Backslash(src: *const ::libc::c_char,
                         readPtr: *mut ::libc::c_int) -> ::libc::c_char;
    pub fn Tcl_BadChannelOption(interp: *mut Tcl_Interp,
                                optionName: *const ::libc::c_char,
                                optionList: *const ::libc::c_char)
     -> ::libc::c_int;
    pub fn Tcl_CallWhenDeleted(interp: *mut Tcl_Interp,
                               _proc: *mut Tcl_InterpDeleteProc,
                               clientData: ClientData) -> ();
    pub fn Tcl_CancelIdleCall(idleProc: *mut Tcl_IdleProc,
                              clientData: ClientData) -> ();
    pub fn Tcl_Close(interp: *mut Tcl_Interp, chan: Tcl_Channel)
     -> ::libc::c_int;
    pub fn Tcl_CommandComplete(cmd: *const ::libc::c_char) -> ::libc::c_int;
    pub fn Tcl_Concat(argc: ::libc::c_int, argv: *const *const ::libc::c_char)
     -> *mut ::libc::c_char;
    pub fn Tcl_ConvertElement(src: *const ::libc::c_char,
                              dst: *mut ::libc::c_char, flags: ::libc::c_int)
     -> ::libc::c_int;
    pub fn Tcl_ConvertCountedElement(src: *const ::libc::c_char,
                                     length: ::libc::c_int,
                                     dst: *mut ::libc::c_char,
                                     flags: ::libc::c_int) -> ::libc::c_int;
    pub fn Tcl_CreateAlias(slave: *mut Tcl_Interp,
                           slaveCmd: *const ::libc::c_char,
                           target: *mut Tcl_Interp,
                           targetCmd: *const ::libc::c_char,
                           argc: ::libc::c_int,
                           argv: *const *const ::libc::c_char)
     -> ::libc::c_int;
    pub fn Tcl_CreateAliasObj(slave: *mut Tcl_Interp,
                              slaveCmd: *const ::libc::c_char,
                              target: *mut Tcl_Interp,
                              targetCmd: *const ::libc::c_char,
                              objc: ::libc::c_int, objv: *const *mut Tcl_Obj)
     -> ::libc::c_int;
    pub fn Tcl_CreateChannel(typePtr: *const Tcl_ChannelType,
                             chanName: *const ::libc::c_char,
                             instanceData: ClientData, mask: ::libc::c_int)
     -> Tcl_Channel;
    pub fn Tcl_CreateChannelHandler(chan: Tcl_Channel, mask: ::libc::c_int,
                                    _proc: *mut Tcl_ChannelProc,
                                    clientData: ClientData) -> ();
    pub fn Tcl_CreateCloseHandler(chan: Tcl_Channel,
                                  _proc: *mut Tcl_CloseProc,
                                  clientData: ClientData) -> ();
    pub fn Tcl_CreateCommand(interp: *mut Tcl_Interp,
                             cmdName: *const ::libc::c_char,
                             _proc: *mut Tcl_CmdProc, clientData: ClientData,
                             deleteProc: *mut Tcl_CmdDeleteProc)
     -> Tcl_Command;
    pub fn Tcl_CreateEventSource(setupProc: *mut Tcl_EventSetupProc,
                                 checkProc: *mut Tcl_EventCheckProc,
                                 clientData: ClientData) -> ();
    pub fn Tcl_CreateExitHandler(_proc: *mut Tcl_ExitProc,
                                 clientData: ClientData) -> ();
    pub fn Tcl_CreateInterp() -> *mut Tcl_Interp;
    pub fn Tcl_CreateMathFunc(interp: *mut Tcl_Interp,
                              name: *const ::libc::c_char,
                              numArgs: ::libc::c_int,
                              argTypes: *mut Tcl_ValueType,
                              _proc: *mut Tcl_MathProc,
                              clientData: ClientData) -> ();
    pub fn Tcl_CreateObjCommand(interp: *mut Tcl_Interp,
                                cmdName: *const ::libc::c_char,
                                _proc: *mut Tcl_ObjCmdProc,
                                clientData: ClientData,
                                deleteProc: *mut Tcl_CmdDeleteProc)
     -> Tcl_Command;
    pub fn Tcl_CreateSlave(interp: *mut Tcl_Interp,
                           slaveName: *const ::libc::c_char,
                           isSafe: ::libc::c_int) -> *mut Tcl_Interp;
    pub fn Tcl_CreateTimerHandler(milliseconds: ::libc::c_int,
                                  _proc: *mut Tcl_TimerProc,
                                  clientData: ClientData) -> Tcl_TimerToken;
    pub fn Tcl_CreateTrace(interp: *mut Tcl_Interp, level: ::libc::c_int,
                           _proc: *mut Tcl_CmdTraceProc,
                           clientData: ClientData) -> Tcl_Trace;
    pub fn Tcl_DeleteAssocData(interp: *mut Tcl_Interp,
                               name: *const ::libc::c_char) -> ();
    pub fn Tcl_DeleteChannelHandler(chan: Tcl_Channel,
                                    _proc: *mut Tcl_ChannelProc,
                                    clientData: ClientData) -> ();
    pub fn Tcl_DeleteCloseHandler(chan: Tcl_Channel,
                                  _proc: *mut Tcl_CloseProc,
                                  clientData: ClientData) -> ();
    pub fn Tcl_DeleteCommand(interp: *mut Tcl_Interp,
                             cmdName: *const ::libc::c_char) -> ::libc::c_int;
    pub fn Tcl_DeleteCommandFromToken(interp: *mut Tcl_Interp,
                                      command: Tcl_Command) -> ::libc::c_int;
    pub fn Tcl_DeleteEvents(_proc: *mut Tcl_EventDeleteProc,
                            clientData: ClientData) -> ();
    pub fn Tcl_DeleteEventSource(setupProc: *mut Tcl_EventSetupProc,
                                 checkProc: *mut Tcl_EventCheckProc,
                                 clientData: ClientData) -> ();
    pub fn Tcl_DeleteExitHandler(_proc: *mut Tcl_ExitProc,
                                 clientData: ClientData) -> ();
    pub fn Tcl_DeleteHashEntry(entryPtr: *mut Tcl_HashEntry) -> ();
    pub fn Tcl_DeleteHashTable(tablePtr: *mut Tcl_HashTable) -> ();
    pub fn Tcl_DeleteInterp(interp: *mut Tcl_Interp) -> ();
    pub fn Tcl_DetachPids(numPids: ::libc::c_int, pidPtr: *mut Tcl_Pid) -> ();
    pub fn Tcl_DeleteTimerHandler(token: Tcl_TimerToken) -> ();
    pub fn Tcl_DeleteTrace(interp: *mut Tcl_Interp, trace: Tcl_Trace) -> ();
    pub fn Tcl_DontCallWhenDeleted(interp: *mut Tcl_Interp,
                                   _proc: *mut Tcl_InterpDeleteProc,
                                   clientData: ClientData) -> ();
    pub fn Tcl_DoOneEvent(flags: ::libc::c_int) -> ::libc::c_int;
    pub fn Tcl_DoWhenIdle(_proc: *mut Tcl_IdleProc, clientData: ClientData)
     -> ();
    pub fn Tcl_DStringAppend(dsPtr: *mut Tcl_DString,
                             bytes: *const ::libc::c_char,
                             length: ::libc::c_int) -> *mut ::libc::c_char;
    pub fn Tcl_DStringAppendElement(dsPtr: *mut Tcl_DString,
                                    element: *const ::libc::c_char)
     -> *mut ::libc::c_char;
    pub fn Tcl_DStringEndSublist(dsPtr: *mut Tcl_DString) -> ();
    pub fn Tcl_DStringFree(dsPtr: *mut Tcl_DString) -> ();
    pub fn Tcl_DStringGetResult(interp: *mut Tcl_Interp,
                                dsPtr: *mut Tcl_DString) -> ();
    pub fn Tcl_DStringInit(dsPtr: *mut Tcl_DString) -> ();
    pub fn Tcl_DStringResult(interp: *mut Tcl_Interp, dsPtr: *mut Tcl_DString)
     -> ();
    pub fn Tcl_DStringSetLength(dsPtr: *mut Tcl_DString,
                                length: ::libc::c_int) -> ();
    pub fn Tcl_DStringStartSublist(dsPtr: *mut Tcl_DString) -> ();
    pub fn Tcl_Eof(chan: Tcl_Channel) -> ::libc::c_int;
    pub fn Tcl_ErrnoId() -> *const ::libc::c_char;
    pub fn Tcl_ErrnoMsg(err: ::libc::c_int) -> *const ::libc::c_char;
    pub fn Tcl_Eval(interp: *mut Tcl_Interp, script: *const ::libc::c_char)
     -> ::libc::c_int;
    pub fn Tcl_EvalFile(interp: *mut Tcl_Interp,
                        fileName: *const ::libc::c_char) -> ::libc::c_int;
    pub fn Tcl_EvalObj(interp: *mut Tcl_Interp, objPtr: *mut Tcl_Obj)
     -> ::libc::c_int;
    pub fn Tcl_EventuallyFree(clientData: ClientData,
                              freeProc: *mut Tcl_FreeProc) -> ();
    pub fn Tcl_Exit(status: ::libc::c_int) -> ();
    pub fn Tcl_ExposeCommand(interp: *mut Tcl_Interp,
                             hiddenCmdToken: *const ::libc::c_char,
                             cmdName: *const ::libc::c_char) -> ::libc::c_int;
    pub fn Tcl_ExprBoolean(interp: *mut Tcl_Interp,
                           expr: *const ::libc::c_char,
                           ptr: *mut ::libc::c_int) -> ::libc::c_int;
    pub fn Tcl_ExprBooleanObj(interp: *mut Tcl_Interp, objPtr: *mut Tcl_Obj,
                              ptr: *mut ::libc::c_int) -> ::libc::c_int;
    pub fn Tcl_ExprDouble(interp: *mut Tcl_Interp,
                          expr: *const ::libc::c_char,
                          ptr: *mut ::libc::c_double) -> ::libc::c_int;
    pub fn Tcl_ExprDoubleObj(interp: *mut Tcl_Interp, objPtr: *mut Tcl_Obj,
                             ptr: *mut ::libc::c_double) -> ::libc::c_int;
    pub fn Tcl_ExprLong(interp: *mut Tcl_Interp, expr: *const ::libc::c_char,
                        ptr: *mut ::libc::c_long) -> ::libc::c_int;
    pub fn Tcl_ExprLongObj(interp: *mut Tcl_Interp, objPtr: *mut Tcl_Obj,
                           ptr: *mut ::libc::c_long) -> ::libc::c_int;
    pub fn Tcl_ExprObj(interp: *mut Tcl_Interp, objPtr: *mut Tcl_Obj,
                       resultPtrPtr: *mut *mut Tcl_Obj) -> ::libc::c_int;
    pub fn Tcl_ExprString(interp: *mut Tcl_Interp,
                          expr: *const ::libc::c_char) -> ::libc::c_int;
    pub fn Tcl_Finalize() -> ();
    pub fn Tcl_FindExecutable(argv0: *const ::libc::c_char) -> ();
    pub fn Tcl_FirstHashEntry(tablePtr: *mut Tcl_HashTable,
                              searchPtr: *mut Tcl_HashSearch)
     -> *mut Tcl_HashEntry;
    pub fn Tcl_Flush(chan: Tcl_Channel) -> ::libc::c_int;
    pub fn Tcl_FreeResult(interp: *mut Tcl_Interp) -> ();
    pub fn Tcl_GetAlias(interp: *mut Tcl_Interp,
                        slaveCmd: *const ::libc::c_char,
                        targetInterpPtr: *mut *mut Tcl_Interp,
                        targetCmdPtr: *mut *const ::libc::c_char,
                        argcPtr: *mut ::libc::c_int,
                        argvPtr: *mut *mut *const ::libc::c_char)
     -> ::libc::c_int;
    pub fn Tcl_GetAliasObj(interp: *mut Tcl_Interp,
                           slaveCmd: *const ::libc::c_char,
                           targetInterpPtr: *mut *mut Tcl_Interp,
                           targetCmdPtr: *mut *const ::libc::c_char,
                           objcPtr: *mut ::libc::c_int,
                           objv: *mut *mut *mut Tcl_Obj) -> ::libc::c_int;
    pub fn Tcl_GetAssocData(interp: *mut Tcl_Interp,
                            name: *const ::libc::c_char,
                            procPtr: *mut *mut Tcl_InterpDeleteProc)
     -> ClientData;
    pub fn Tcl_GetChannel(interp: *mut Tcl_Interp,
                          chanName: *const ::libc::c_char,
                          modePtr: *mut ::libc::c_int) -> Tcl_Channel;
    pub fn Tcl_GetChannelBufferSize(chan: Tcl_Channel) -> ::libc::c_int;
    pub fn Tcl_GetChannelHandle(chan: Tcl_Channel, direction: ::libc::c_int,
                                handlePtr: *mut ClientData) -> ::libc::c_int;
    pub fn Tcl_GetChannelInstanceData(chan: Tcl_Channel) -> ClientData;
    pub fn Tcl_GetChannelMode(chan: Tcl_Channel) -> ::libc::c_int;
    pub fn Tcl_GetChannelName(chan: Tcl_Channel) -> *const ::libc::c_char;
    pub fn Tcl_GetChannelOption(interp: *mut Tcl_Interp, chan: Tcl_Channel,
                                optionName: *const ::libc::c_char,
                                dsPtr: *mut Tcl_DString) -> ::libc::c_int;
    pub fn Tcl_GetChannelType(chan: Tcl_Channel) -> *const Tcl_ChannelType;
    pub fn Tcl_GetCommandInfo(interp: *mut Tcl_Interp,
                              cmdName: *const ::libc::c_char,
                              infoPtr: *mut Tcl_CmdInfo) -> ::libc::c_int;
    pub fn Tcl_GetCommandName(interp: *mut Tcl_Interp, command: Tcl_Command)
     -> *const ::libc::c_char;
    pub fn Tcl_GetErrno() -> ::libc::c_int;
    pub fn Tcl_GetHostName() -> *const ::libc::c_char;
    pub fn Tcl_GetInterpPath(askInterp: *mut Tcl_Interp,
                             slaveInterp: *mut Tcl_Interp) -> ::libc::c_int;
    pub fn Tcl_GetMaster(interp: *mut Tcl_Interp) -> *mut Tcl_Interp;
    pub fn Tcl_GetNameOfExecutable() -> *const ::libc::c_char;
    pub fn Tcl_GetObjResult(interp: *mut Tcl_Interp) -> *mut Tcl_Obj;
    pub fn Tcl_GetOpenFile(interp: *mut Tcl_Interp,
                           chanID: *const ::libc::c_char,
                           forWriting: ::libc::c_int,
                           checkUsage: ::libc::c_int,
                           filePtr: *mut ClientData) -> ::libc::c_int;
    pub fn Tcl_GetPathType(path: *const ::libc::c_char) -> Tcl_PathType;
    pub fn Tcl_Gets(chan: Tcl_Channel, dsPtr: *mut Tcl_DString)
     -> ::libc::c_int;
    pub fn Tcl_GetsObj(chan: Tcl_Channel, objPtr: *mut Tcl_Obj)
     -> ::libc::c_int;
    pub fn Tcl_GetServiceMode() -> ::libc::c_int;
    pub fn Tcl_GetSlave(interp: *mut Tcl_Interp,
                        slaveName: *const ::libc::c_char) -> *mut Tcl_Interp;
    pub fn Tcl_GetStdChannel(_type: ::libc::c_int) -> Tcl_Channel;
    pub fn Tcl_GetStringResult(interp: *mut Tcl_Interp)
     -> *const ::libc::c_char;
    pub fn Tcl_GetVar(interp: *mut Tcl_Interp, varName: *const ::libc::c_char,
                      flags: ::libc::c_int) -> *const ::libc::c_char;
    pub fn Tcl_GetVar2(interp: *mut Tcl_Interp, part1: *const ::libc::c_char,
                       part2: *const ::libc::c_char, flags: ::libc::c_int)
     -> *const ::libc::c_char;
    pub fn Tcl_GlobalEval(interp: *mut Tcl_Interp,
                          command: *const ::libc::c_char) -> ::libc::c_int;
    pub fn Tcl_GlobalEvalObj(interp: *mut Tcl_Interp, objPtr: *mut Tcl_Obj)
     -> ::libc::c_int;
    pub fn Tcl_HideCommand(interp: *mut Tcl_Interp,
                           cmdName: *const ::libc::c_char,
                           hiddenCmdToken: *const ::libc::c_char)
     -> ::libc::c_int;
    pub fn Tcl_Init(interp: *mut Tcl_Interp) -> ::libc::c_int;
    pub fn Tcl_InitHashTable(tablePtr: *mut Tcl_HashTable,
                             keyType: ::libc::c_int) -> ();
    pub fn Tcl_InputBlocked(chan: Tcl_Channel) -> ::libc::c_int;
    pub fn Tcl_InputBuffered(chan: Tcl_Channel) -> ::libc::c_int;
    pub fn Tcl_InterpDeleted(interp: *mut Tcl_Interp) -> ::libc::c_int;
    pub fn Tcl_IsSafe(interp: *mut Tcl_Interp) -> ::libc::c_int;
    pub fn Tcl_JoinPath(argc: ::libc::c_int,
                        argv: *const *const ::libc::c_char,
                        resultPtr: *mut Tcl_DString) -> *mut ::libc::c_char;
    pub fn Tcl_LinkVar(interp: *mut Tcl_Interp,
                       varName: *const ::libc::c_char,
                       addr: *mut ::libc::c_char, _type: ::libc::c_int)
     -> ::libc::c_int;
    pub fn Tcl_MakeFileChannel(handle: ClientData, mode: ::libc::c_int)
     -> Tcl_Channel;
    pub fn Tcl_MakeSafe(interp: *mut Tcl_Interp) -> ::libc::c_int;
    pub fn Tcl_MakeTcpClientChannel(tcpSocket: ClientData) -> Tcl_Channel;
    pub fn Tcl_Merge(argc: ::libc::c_int, argv: *const *const ::libc::c_char)
     -> *mut ::libc::c_char;
    pub fn Tcl_NextHashEntry(searchPtr: *mut Tcl_HashSearch)
     -> *mut Tcl_HashEntry;
    pub fn Tcl_NotifyChannel(channel: Tcl_Channel, mask: ::libc::c_int) -> ();
    pub fn Tcl_ObjGetVar2(interp: *mut Tcl_Interp, part1Ptr: *mut Tcl_Obj,
                          part2Ptr: *mut Tcl_Obj, flags: ::libc::c_int)
     -> *mut Tcl_Obj;
    pub fn Tcl_ObjSetVar2(interp: *mut Tcl_Interp, part1Ptr: *mut Tcl_Obj,
                          part2Ptr: *mut Tcl_Obj, newValuePtr: *mut Tcl_Obj,
                          flags: ::libc::c_int) -> *mut Tcl_Obj;
    pub fn Tcl_OpenCommandChannel(interp: *mut Tcl_Interp,
                                  argc: ::libc::c_int,
                                  argv: *mut *const ::libc::c_char,
                                  flags: ::libc::c_int) -> Tcl_Channel;
    pub fn Tcl_OpenFileChannel(interp: *mut Tcl_Interp,
                               fileName: *const ::libc::c_char,
                               modeString: *const ::libc::c_char,
                               permissions: ::libc::c_int) -> Tcl_Channel;
    pub fn Tcl_OpenTcpClient(interp: *mut Tcl_Interp, port: ::libc::c_int,
                             address: *const ::libc::c_char,
                             myaddr: *const ::libc::c_char,
                             myport: ::libc::c_int, async: ::libc::c_int)
     -> Tcl_Channel;
    pub fn Tcl_OpenTcpServer(interp: *mut Tcl_Interp, port: ::libc::c_int,
                             host: *const ::libc::c_char,
                             acceptProc: *mut Tcl_TcpAcceptProc,
                             callbackData: ClientData) -> Tcl_Channel;
    pub fn Tcl_Preserve(data: ClientData) -> ();
    pub fn Tcl_PrintDouble(interp: *mut Tcl_Interp, value: ::libc::c_double,
                           dst: *mut ::libc::c_char) -> ();
    pub fn Tcl_PutEnv(assignment: *const ::libc::c_char) -> ::libc::c_int;
    pub fn Tcl_PosixError(interp: *mut Tcl_Interp) -> *const ::libc::c_char;
    pub fn Tcl_QueueEvent(evPtr: *mut Tcl_Event, position: Tcl_QueuePosition)
     -> ();
    pub fn Tcl_Read(chan: Tcl_Channel, bufPtr: *mut ::libc::c_char,
                    toRead: ::libc::c_int) -> ::libc::c_int;
    pub fn Tcl_ReapDetachedProcs() -> ();
    pub fn Tcl_RecordAndEval(interp: *mut Tcl_Interp,
                             cmd: *const ::libc::c_char, flags: ::libc::c_int)
     -> ::libc::c_int;
    pub fn Tcl_RecordAndEvalObj(interp: *mut Tcl_Interp, cmdPtr: *mut Tcl_Obj,
                                flags: ::libc::c_int) -> ::libc::c_int;
    pub fn Tcl_RegisterChannel(interp: *mut Tcl_Interp, chan: Tcl_Channel)
     -> ();
    pub fn Tcl_RegisterObjType(typePtr: *const Tcl_ObjType) -> ();
    pub fn Tcl_RegExpCompile(interp: *mut Tcl_Interp,
                             pattern: *const ::libc::c_char) -> Tcl_RegExp;
    pub fn Tcl_RegExpExec(interp: *mut Tcl_Interp, regexp: Tcl_RegExp,
                          text: *const ::libc::c_char,
                          start: *const ::libc::c_char) -> ::libc::c_int;
    pub fn Tcl_RegExpMatch(interp: *mut Tcl_Interp,
                           text: *const ::libc::c_char,
                           pattern: *const ::libc::c_char) -> ::libc::c_int;
    pub fn Tcl_RegExpRange(regexp: Tcl_RegExp, index: ::libc::c_int,
                           startPtr: *mut *const ::libc::c_char,
                           endPtr: *mut *const ::libc::c_char) -> ();
    pub fn Tcl_Release(clientData: ClientData) -> ();
    pub fn Tcl_ResetResult(interp: *mut Tcl_Interp) -> ();
    pub fn Tcl_ScanElement(src: *const ::libc::c_char,
                           flagPtr: *mut ::libc::c_int) -> ::libc::c_int;
    pub fn Tcl_ScanCountedElement(src: *const ::libc::c_char,
                                  length: ::libc::c_int,
                                  flagPtr: *mut ::libc::c_int)
     -> ::libc::c_int;
    pub fn Tcl_SeekOld(chan: Tcl_Channel, offset: ::libc::c_int,
                       mode: ::libc::c_int) -> ::libc::c_int;
    pub fn Tcl_ServiceAll() -> ::libc::c_int;
    pub fn Tcl_ServiceEvent(flags: ::libc::c_int) -> ::libc::c_int;
    pub fn Tcl_SetAssocData(interp: *mut Tcl_Interp,
                            name: *const ::libc::c_char,
                            _proc: *mut Tcl_InterpDeleteProc,
                            clientData: ClientData) -> ();
    pub fn Tcl_SetChannelBufferSize(chan: Tcl_Channel, sz: ::libc::c_int)
     -> ();
    pub fn Tcl_SetChannelOption(interp: *mut Tcl_Interp, chan: Tcl_Channel,
                                optionName: *const ::libc::c_char,
                                newValue: *const ::libc::c_char)
     -> ::libc::c_int;
    pub fn Tcl_SetCommandInfo(interp: *mut Tcl_Interp,
                              cmdName: *const ::libc::c_char,
                              infoPtr: *const Tcl_CmdInfo) -> ::libc::c_int;
    pub fn Tcl_SetErrno(err: ::libc::c_int) -> ();
    pub fn Tcl_SetErrorCode(interp: *mut Tcl_Interp, ...) -> ();
    pub fn Tcl_SetMaxBlockTime(timePtr: *const Tcl_Time) -> ();
    pub fn Tcl_SetPanicProc(panicProc: *mut Tcl_PanicProc) -> ();
    pub fn Tcl_SetRecursionLimit(interp: *mut Tcl_Interp,
                                 depth: ::libc::c_int) -> ::libc::c_int;
    pub fn Tcl_SetResult(interp: *mut Tcl_Interp, result: *mut ::libc::c_char,
                         freeProc: *mut Tcl_FreeProc) -> ();
    pub fn Tcl_SetServiceMode(mode: ::libc::c_int) -> ::libc::c_int;
    pub fn Tcl_SetObjErrorCode(interp: *mut Tcl_Interp,
                               errorObjPtr: *mut Tcl_Obj) -> ();
    pub fn Tcl_SetObjResult(interp: *mut Tcl_Interp,
                            resultObjPtr: *mut Tcl_Obj) -> ();
    pub fn Tcl_SetStdChannel(channel: Tcl_Channel, _type: ::libc::c_int)
     -> ();
    pub fn Tcl_SetVar(interp: *mut Tcl_Interp, varName: *const ::libc::c_char,
                      newValue: *const ::libc::c_char, flags: ::libc::c_int)
     -> *const ::libc::c_char;
    pub fn Tcl_SetVar2(interp: *mut Tcl_Interp, part1: *const ::libc::c_char,
                       part2: *const ::libc::c_char,
                       newValue: *const ::libc::c_char, flags: ::libc::c_int)
     -> *const ::libc::c_char;
    pub fn Tcl_SignalId(sig: ::libc::c_int) -> *const ::libc::c_char;
    pub fn Tcl_SignalMsg(sig: ::libc::c_int) -> *const ::libc::c_char;
    pub fn Tcl_SourceRCFile(interp: *mut Tcl_Interp) -> ();
    pub fn Tcl_SplitList(interp: *mut Tcl_Interp,
                         listStr: *const ::libc::c_char,
                         argcPtr: *mut ::libc::c_int,
                         argvPtr: *mut *mut *const ::libc::c_char)
     -> ::libc::c_int;
    pub fn Tcl_SplitPath(path: *const ::libc::c_char,
                         argcPtr: *mut ::libc::c_int,
                         argvPtr: *mut *mut *const ::libc::c_char) -> ();
    pub fn Tcl_StaticPackage(interp: *mut Tcl_Interp,
                             pkgName: *const ::libc::c_char,
                             initProc: *mut Tcl_PackageInitProc,
                             safeInitProc: *mut Tcl_PackageInitProc) -> ();
    pub fn Tcl_StringMatch(str: *const ::libc::c_char,
                           pattern: *const ::libc::c_char) -> ::libc::c_int;
    pub fn Tcl_TellOld(chan: Tcl_Channel) -> ::libc::c_int;
    pub fn Tcl_TraceVar(interp: *mut Tcl_Interp,
                        varName: *const ::libc::c_char, flags: ::libc::c_int,
                        _proc: *mut Tcl_VarTraceProc, clientData: ClientData)
     -> ::libc::c_int;
    pub fn Tcl_TraceVar2(interp: *mut Tcl_Interp,
                         part1: *const ::libc::c_char,
                         part2: *const ::libc::c_char, flags: ::libc::c_int,
                         _proc: *mut Tcl_VarTraceProc, clientData: ClientData)
     -> ::libc::c_int;
    pub fn Tcl_TranslateFileName(interp: *mut Tcl_Interp,
                                 name: *const ::libc::c_char,
                                 bufferPtr: *mut Tcl_DString)
     -> *mut ::libc::c_char;
    pub fn Tcl_Ungets(chan: Tcl_Channel, str: *const ::libc::c_char,
                      len: ::libc::c_int, atHead: ::libc::c_int)
     -> ::libc::c_int;
    pub fn Tcl_UnlinkVar(interp: *mut Tcl_Interp,
                         varName: *const ::libc::c_char) -> ();
    pub fn Tcl_UnregisterChannel(interp: *mut Tcl_Interp, chan: Tcl_Channel)
     -> ::libc::c_int;
    pub fn Tcl_UnsetVar(interp: *mut Tcl_Interp,
                        varName: *const ::libc::c_char, flags: ::libc::c_int)
     -> ::libc::c_int;
    pub fn Tcl_UnsetVar2(interp: *mut Tcl_Interp,
                         part1: *const ::libc::c_char,
                         part2: *const ::libc::c_char, flags: ::libc::c_int)
     -> ::libc::c_int;
    pub fn Tcl_UntraceVar(interp: *mut Tcl_Interp,
                          varName: *const ::libc::c_char,
                          flags: ::libc::c_int, _proc: *mut Tcl_VarTraceProc,
                          clientData: ClientData) -> ();
    pub fn Tcl_UntraceVar2(interp: *mut Tcl_Interp,
                           part1: *const ::libc::c_char,
                           part2: *const ::libc::c_char, flags: ::libc::c_int,
                           _proc: *mut Tcl_VarTraceProc,
                           clientData: ClientData) -> ();
    pub fn Tcl_UpdateLinkedVar(interp: *mut Tcl_Interp,
                               varName: *const ::libc::c_char) -> ();
    pub fn Tcl_UpVar(interp: *mut Tcl_Interp,
                     frameName: *const ::libc::c_char,
                     varName: *const ::libc::c_char,
                     localName: *const ::libc::c_char, flags: ::libc::c_int)
     -> ::libc::c_int;
    pub fn Tcl_UpVar2(interp: *mut Tcl_Interp,
                      frameName: *const ::libc::c_char,
                      part1: *const ::libc::c_char,
                      part2: *const ::libc::c_char,
                      localName: *const ::libc::c_char, flags: ::libc::c_int)
     -> ::libc::c_int;
    pub fn Tcl_VarEval(interp: *mut Tcl_Interp, ...) -> ::libc::c_int;
    pub fn Tcl_VarTraceInfo(interp: *mut Tcl_Interp,
                            varName: *const ::libc::c_char,
                            flags: ::libc::c_int,
                            procPtr: *mut Tcl_VarTraceProc,
                            prevClientData: ClientData) -> ClientData;
    pub fn Tcl_VarTraceInfo2(interp: *mut Tcl_Interp,
                             part1: *const ::libc::c_char,
                             part2: *const ::libc::c_char,
                             flags: ::libc::c_int,
                             procPtr: *mut Tcl_VarTraceProc,
                             prevClientData: ClientData) -> ClientData;
    pub fn Tcl_Write(chan: Tcl_Channel, s: *const ::libc::c_char,
                     slen: ::libc::c_int) -> ::libc::c_int;
    pub fn Tcl_WrongNumArgs(interp: *mut Tcl_Interp, objc: ::libc::c_int,
                            objv: *const *mut Tcl_Obj,
                            message: *const ::libc::c_char) -> ();
    pub fn Tcl_DumpActiveMemory(fileName: *const ::libc::c_char)
     -> ::libc::c_int;
    pub fn Tcl_ValidateAllMemory(file: *const ::libc::c_char,
                                 line: ::libc::c_int) -> ();
/*    pub fn Tcl_AppendResultVA(interp: *mut Tcl_Interp, argList: va_list)
     -> ();*/
/*    pub fn Tcl_AppendStringsToObjVA(objPtr: *mut Tcl_Obj, argList: va_list)
     -> ();*/
    pub fn Tcl_HashStats(tablePtr: *mut Tcl_HashTable) -> *mut ::libc::c_char;
    pub fn Tcl_ParseVar(interp: *mut Tcl_Interp, start: *const ::libc::c_char,
                        termPtr: *mut *const ::libc::c_char)
     -> *const ::libc::c_char;
    pub fn Tcl_PkgPresent(interp: *mut Tcl_Interp,
                          name: *const ::libc::c_char,
                          version: *const ::libc::c_char,
                          exact: ::libc::c_int) -> *const ::libc::c_char;
    pub fn Tcl_PkgPresentEx(interp: *mut Tcl_Interp,
                            name: *const ::libc::c_char,
                            version: *const ::libc::c_char,
                            exact: ::libc::c_int,
                            clientDataPtr: *mut ::libc::c_void)
     -> *const ::libc::c_char;
    pub fn Tcl_PkgProvide(interp: *mut Tcl_Interp,
                          name: *const ::libc::c_char,
                          version: *const ::libc::c_char) -> ::libc::c_int;
    pub fn Tcl_PkgRequire(interp: *mut Tcl_Interp,
                          name: *const ::libc::c_char,
                          version: *const ::libc::c_char,
                          exact: ::libc::c_int) -> *const ::libc::c_char;
/*    pub fn Tcl_SetErrorCodeVA(interp: *mut Tcl_Interp, argList: va_list)
     -> ();*/
/*    pub fn Tcl_VarEvalVA(interp: *mut Tcl_Interp, argList: va_list)
     -> ::libc::c_int;*/
    pub fn Tcl_WaitPid(pid: Tcl_Pid, statPtr: *mut ::libc::c_int,
                       options: ::libc::c_int) -> Tcl_Pid;
/*    pub fn Tcl_PanicVA(format: *const ::libc::c_char, argList: va_list) -> ();*/
    pub fn Tcl_GetVersion(major: *mut ::libc::c_int,
                          minor: *mut ::libc::c_int,
                          patchLevel: *mut ::libc::c_int,
                          _type: *mut ::libc::c_int) -> ();
    pub fn Tcl_InitMemory(interp: *mut Tcl_Interp) -> ();
    pub fn Tcl_StackChannel(interp: *mut Tcl_Interp,
                            typePtr: *const Tcl_ChannelType,
                            instanceData: ClientData, mask: ::libc::c_int,
                            prevChan: Tcl_Channel) -> Tcl_Channel;
    pub fn Tcl_UnstackChannel(interp: *mut Tcl_Interp, chan: Tcl_Channel)
     -> ::libc::c_int;
    pub fn Tcl_GetStackedChannel(chan: Tcl_Channel) -> Tcl_Channel;
    pub fn Tcl_SetMainLoop(_proc: *mut Tcl_MainLoopProc) -> ();
    pub fn Tcl_AppendObjToObj(objPtr: *mut Tcl_Obj,
                              appendObjPtr: *mut Tcl_Obj) -> ();
    pub fn Tcl_CreateEncoding(typePtr: *const Tcl_EncodingType)
     -> Tcl_Encoding;
    pub fn Tcl_CreateThreadExitHandler(_proc: *mut Tcl_ExitProc,
                                       clientData: ClientData) -> ();
    pub fn Tcl_DeleteThreadExitHandler(_proc: *mut Tcl_ExitProc,
                                       clientData: ClientData) -> ();
    pub fn Tcl_DiscardResult(statePtr: *mut Tcl_SavedResult) -> ();
    pub fn Tcl_EvalEx(interp: *mut Tcl_Interp, script: *const ::libc::c_char,
                      numBytes: ::libc::c_int, flags: ::libc::c_int)
     -> ::libc::c_int;
    pub fn Tcl_EvalObjv(interp: *mut Tcl_Interp, objc: ::libc::c_int,
                        objv: *const *mut Tcl_Obj, flags: ::libc::c_int)
     -> ::libc::c_int;
    pub fn Tcl_EvalObjEx(interp: *mut Tcl_Interp, objPtr: *mut Tcl_Obj,
                         flags: ::libc::c_int) -> ::libc::c_int;
    pub fn Tcl_ExitThread(status: ::libc::c_int) -> ();
    pub fn Tcl_ExternalToUtf(interp: *mut Tcl_Interp, encoding: Tcl_Encoding,
                             src: *const ::libc::c_char,
                             srcLen: ::libc::c_int, flags: ::libc::c_int,
                             statePtr: *mut Tcl_EncodingState,
                             dst: *mut ::libc::c_char, dstLen: ::libc::c_int,
                             srcReadPtr: *mut ::libc::c_int,
                             dstWrotePtr: *mut ::libc::c_int,
                             dstCharsPtr: *mut ::libc::c_int)
     -> ::libc::c_int;
    pub fn Tcl_ExternalToUtfDString(encoding: Tcl_Encoding,
                                    src: *const ::libc::c_char,
                                    srcLen: ::libc::c_int,
                                    dsPtr: *mut Tcl_DString)
     -> *mut ::libc::c_char;
    pub fn Tcl_FinalizeThread() -> ();
    pub fn Tcl_FinalizeNotifier(clientData: ClientData) -> ();
    pub fn Tcl_FreeEncoding(encoding: Tcl_Encoding) -> ();
    pub fn Tcl_GetCurrentThread() -> Tcl_ThreadId;
    pub fn Tcl_GetEncoding(interp: *mut Tcl_Interp,
                           name: *const ::libc::c_char) -> Tcl_Encoding;
    pub fn Tcl_GetEncodingName(encoding: Tcl_Encoding)
     -> *const ::libc::c_char;
    pub fn Tcl_GetEncodingNames(interp: *mut Tcl_Interp) -> ();
    pub fn Tcl_GetIndexFromObjStruct(interp: *mut Tcl_Interp,
                                     objPtr: *mut Tcl_Obj,
                                     tablePtr: *const ::libc::c_void,
                                     offset: ::libc::c_int,
                                     msg: *const ::libc::c_char,
                                     flags: ::libc::c_int,
                                     indexPtr: *mut ::libc::c_int)
     -> ::libc::c_int;
    pub fn Tcl_GetThreadData(keyPtr: *mut Tcl_ThreadDataKey,
                             size: ::libc::c_int) -> *mut ::libc::c_void;
    pub fn Tcl_GetVar2Ex(interp: *mut Tcl_Interp,
                         part1: *const ::libc::c_char,
                         part2: *const ::libc::c_char, flags: ::libc::c_int)
     -> *mut Tcl_Obj;
    pub fn Tcl_InitNotifier() -> ClientData;
    pub fn Tcl_MutexLock(mutexPtr: *mut Tcl_Mutex) -> ();
    pub fn Tcl_MutexUnlock(mutexPtr: *mut Tcl_Mutex) -> ();
    pub fn Tcl_ConditionNotify(condPtr: *mut Tcl_Condition) -> ();
    pub fn Tcl_ConditionWait(condPtr: *mut Tcl_Condition,
                             mutexPtr: *mut Tcl_Mutex,
                             timePtr: *const Tcl_Time) -> ();
    pub fn Tcl_NumUtfChars(src: *const ::libc::c_char, length: ::libc::c_int)
     -> ::libc::c_int;
    pub fn Tcl_ReadChars(channel: Tcl_Channel, objPtr: *mut Tcl_Obj,
                         charsToRead: ::libc::c_int,
                         appendFlag: ::libc::c_int) -> ::libc::c_int;
    pub fn Tcl_RestoreResult(interp: *mut Tcl_Interp,
                             statePtr: *mut Tcl_SavedResult) -> ();
    pub fn Tcl_SaveResult(interp: *mut Tcl_Interp,
                          statePtr: *mut Tcl_SavedResult) -> ();
    pub fn Tcl_SetSystemEncoding(interp: *mut Tcl_Interp,
                                 name: *const ::libc::c_char)
     -> ::libc::c_int;
    pub fn Tcl_SetVar2Ex(interp: *mut Tcl_Interp,
                         part1: *const ::libc::c_char,
                         part2: *const ::libc::c_char,
                         newValuePtr: *mut Tcl_Obj, flags: ::libc::c_int)
     -> *mut Tcl_Obj;
    pub fn Tcl_ThreadAlert(threadId: Tcl_ThreadId) -> ();
    pub fn Tcl_ThreadQueueEvent(threadId: Tcl_ThreadId, evPtr: *mut Tcl_Event,
                                position: Tcl_QueuePosition) -> ();
    pub fn Tcl_UniCharAtIndex(src: *const ::libc::c_char,
                              index: ::libc::c_int) -> Tcl_UniChar;
    pub fn Tcl_UniCharToLower(ch: ::libc::c_int) -> Tcl_UniChar;
    pub fn Tcl_UniCharToTitle(ch: ::libc::c_int) -> Tcl_UniChar;
    pub fn Tcl_UniCharToUpper(ch: ::libc::c_int) -> Tcl_UniChar;
    pub fn Tcl_UniCharToUtf(ch: ::libc::c_int, buf: *mut ::libc::c_char)
     -> ::libc::c_int;
    pub fn Tcl_UtfAtIndex(src: *const ::libc::c_char, index: ::libc::c_int)
     -> *const ::libc::c_char;
    pub fn Tcl_UtfCharComplete(src: *const ::libc::c_char,
                               length: ::libc::c_int) -> ::libc::c_int;
    pub fn Tcl_UtfBackslash(src: *const ::libc::c_char,
                            readPtr: *mut ::libc::c_int,
                            dst: *mut ::libc::c_char) -> ::libc::c_int;
    pub fn Tcl_UtfFindFirst(src: *const ::libc::c_char, ch: ::libc::c_int)
     -> *const ::libc::c_char;
    pub fn Tcl_UtfFindLast(src: *const ::libc::c_char, ch: ::libc::c_int)
     -> *const ::libc::c_char;
    pub fn Tcl_UtfNext(src: *const ::libc::c_char) -> *const ::libc::c_char;
    pub fn Tcl_UtfPrev(src: *const ::libc::c_char,
                       start: *const ::libc::c_char) -> *const ::libc::c_char;
    pub fn Tcl_UtfToExternal(interp: *mut Tcl_Interp, encoding: Tcl_Encoding,
                             src: *const ::libc::c_char,
                             srcLen: ::libc::c_int, flags: ::libc::c_int,
                             statePtr: *mut Tcl_EncodingState,
                             dst: *mut ::libc::c_char, dstLen: ::libc::c_int,
                             srcReadPtr: *mut ::libc::c_int,
                             dstWrotePtr: *mut ::libc::c_int,
                             dstCharsPtr: *mut ::libc::c_int)
     -> ::libc::c_int;
    pub fn Tcl_UtfToExternalDString(encoding: Tcl_Encoding,
                                    src: *const ::libc::c_char,
                                    srcLen: ::libc::c_int,
                                    dsPtr: *mut Tcl_DString)
     -> *mut ::libc::c_char;
    pub fn Tcl_UtfToLower(src: *mut ::libc::c_char) -> ::libc::c_int;
    pub fn Tcl_UtfToTitle(src: *mut ::libc::c_char) -> ::libc::c_int;
    pub fn Tcl_UtfToUniChar(src: *const ::libc::c_char,
                            chPtr: *mut Tcl_UniChar) -> ::libc::c_int;
    pub fn Tcl_UtfToUpper(src: *mut ::libc::c_char) -> ::libc::c_int;
    pub fn Tcl_WriteChars(chan: Tcl_Channel, src: *const ::libc::c_char,
                          srcLen: ::libc::c_int) -> ::libc::c_int;
    pub fn Tcl_WriteObj(chan: Tcl_Channel, objPtr: *mut Tcl_Obj)
     -> ::libc::c_int;
    pub fn Tcl_GetString(objPtr: *mut Tcl_Obj) -> *mut ::libc::c_char;
    pub fn Tcl_GetDefaultEncodingDir() -> *const ::libc::c_char;
    pub fn Tcl_SetDefaultEncodingDir(path: *const ::libc::c_char) -> ();
    pub fn Tcl_AlertNotifier(clientData: ClientData) -> ();
    pub fn Tcl_ServiceModeHook(mode: ::libc::c_int) -> ();
    pub fn Tcl_UniCharIsAlnum(ch: ::libc::c_int) -> ::libc::c_int;
    pub fn Tcl_UniCharIsAlpha(ch: ::libc::c_int) -> ::libc::c_int;
    pub fn Tcl_UniCharIsDigit(ch: ::libc::c_int) -> ::libc::c_int;
    pub fn Tcl_UniCharIsLower(ch: ::libc::c_int) -> ::libc::c_int;
    pub fn Tcl_UniCharIsSpace(ch: ::libc::c_int) -> ::libc::c_int;
    pub fn Tcl_UniCharIsUpper(ch: ::libc::c_int) -> ::libc::c_int;
    pub fn Tcl_UniCharIsWordChar(ch: ::libc::c_int) -> ::libc::c_int;
    pub fn Tcl_UniCharLen(uniStr: *const Tcl_UniChar) -> ::libc::c_int;
    pub fn Tcl_UniCharNcmp(ucs: *const Tcl_UniChar, uct: *const Tcl_UniChar,
                           numChars: ::libc::c_ulong) -> ::libc::c_int;
    pub fn Tcl_UniCharToUtfDString(uniStr: *const Tcl_UniChar,
                                   uniLength: ::libc::c_int,
                                   dsPtr: *mut Tcl_DString)
     -> *mut ::libc::c_char;
    pub fn Tcl_UtfToUniCharDString(src: *const ::libc::c_char,
                                   length: ::libc::c_int,
                                   dsPtr: *mut Tcl_DString)
     -> *mut Tcl_UniChar;
    pub fn Tcl_GetRegExpFromObj(interp: *mut Tcl_Interp, patObj: *mut Tcl_Obj,
                                flags: ::libc::c_int) -> Tcl_RegExp;
    pub fn Tcl_EvalTokens(interp: *mut Tcl_Interp, tokenPtr: *mut Tcl_Token,
                          count: ::libc::c_int) -> *mut Tcl_Obj;
    pub fn Tcl_FreeParse(parsePtr: *mut Tcl_Parse) -> ();
    pub fn Tcl_LogCommandInfo(interp: *mut Tcl_Interp,
                              script: *const ::libc::c_char,
                              command: *const ::libc::c_char,
                              length: ::libc::c_int) -> ();
    pub fn Tcl_ParseBraces(interp: *mut Tcl_Interp,
                           start: *const ::libc::c_char,
                           numBytes: ::libc::c_int, parsePtr: *mut Tcl_Parse,
                           append: ::libc::c_int,
                           termPtr: *mut *const ::libc::c_char)
     -> ::libc::c_int;
    pub fn Tcl_ParseCommand(interp: *mut Tcl_Interp,
                            start: *const ::libc::c_char,
                            numBytes: ::libc::c_int, nested: ::libc::c_int,
                            parsePtr: *mut Tcl_Parse) -> ::libc::c_int;
    pub fn Tcl_ParseExpr(interp: *mut Tcl_Interp,
                         start: *const ::libc::c_char,
                         numBytes: ::libc::c_int, parsePtr: *mut Tcl_Parse)
     -> ::libc::c_int;
    pub fn Tcl_ParseQuotedString(interp: *mut Tcl_Interp,
                                 start: *const ::libc::c_char,
                                 numBytes: ::libc::c_int,
                                 parsePtr: *mut Tcl_Parse,
                                 append: ::libc::c_int,
                                 termPtr: *mut *const ::libc::c_char)
     -> ::libc::c_int;
    pub fn Tcl_ParseVarName(interp: *mut Tcl_Interp,
                            start: *const ::libc::c_char,
                            numBytes: ::libc::c_int, parsePtr: *mut Tcl_Parse,
                            append: ::libc::c_int) -> ::libc::c_int;
    pub fn Tcl_GetCwd(interp: *mut Tcl_Interp, cwdPtr: *mut Tcl_DString)
     -> *mut ::libc::c_char;
    pub fn Tcl_Chdir(dirName: *const ::libc::c_char) -> ::libc::c_int;
    pub fn Tcl_Access(path: *const ::libc::c_char, mode: ::libc::c_int)
     -> ::libc::c_int;
    pub fn Tcl_Stat(path: *const ::libc::c_char, bufPtr: *mut Struct_stat)
     -> ::libc::c_int;
    pub fn Tcl_UtfNcmp(s1: *const ::libc::c_char, s2: *const ::libc::c_char,
                       n: ::libc::c_ulong) -> ::libc::c_int;
    pub fn Tcl_UtfNcasecmp(s1: *const ::libc::c_char,
                           s2: *const ::libc::c_char, n: ::libc::c_ulong)
     -> ::libc::c_int;
    pub fn Tcl_StringCaseMatch(str: *const ::libc::c_char,
                               pattern: *const ::libc::c_char,
                               nocase: ::libc::c_int) -> ::libc::c_int;
    pub fn Tcl_UniCharIsControl(ch: ::libc::c_int) -> ::libc::c_int;
    pub fn Tcl_UniCharIsGraph(ch: ::libc::c_int) -> ::libc::c_int;
    pub fn Tcl_UniCharIsPrint(ch: ::libc::c_int) -> ::libc::c_int;
    pub fn Tcl_UniCharIsPunct(ch: ::libc::c_int) -> ::libc::c_int;
    pub fn Tcl_RegExpExecObj(interp: *mut Tcl_Interp, regexp: Tcl_RegExp,
                             textObj: *mut Tcl_Obj, offset: ::libc::c_int,
                             nmatches: ::libc::c_int, flags: ::libc::c_int)
     -> ::libc::c_int;
    pub fn Tcl_RegExpGetInfo(regexp: Tcl_RegExp, infoPtr: *mut Tcl_RegExpInfo)
     -> ();
    pub fn Tcl_NewUnicodeObj(unicode: *const Tcl_UniChar,
                             numChars: ::libc::c_int) -> *mut Tcl_Obj;
    pub fn Tcl_SetUnicodeObj(objPtr: *mut Tcl_Obj,
                             unicode: *const Tcl_UniChar,
                             numChars: ::libc::c_int) -> ();
    pub fn Tcl_GetCharLength(objPtr: *mut Tcl_Obj) -> ::libc::c_int;
    pub fn Tcl_GetUniChar(objPtr: *mut Tcl_Obj, index: ::libc::c_int)
     -> Tcl_UniChar;
    pub fn Tcl_GetUnicode(objPtr: *mut Tcl_Obj) -> *mut Tcl_UniChar;
    pub fn Tcl_GetRange(objPtr: *mut Tcl_Obj, first: ::libc::c_int,
                        last: ::libc::c_int) -> *mut Tcl_Obj;
    pub fn Tcl_AppendUnicodeToObj(objPtr: *mut Tcl_Obj,
                                  unicode: *const Tcl_UniChar,
                                  length: ::libc::c_int) -> ();
    pub fn Tcl_RegExpMatchObj(interp: *mut Tcl_Interp, textObj: *mut Tcl_Obj,
                              patternObj: *mut Tcl_Obj) -> ::libc::c_int;
    pub fn Tcl_SetNotifier(notifierProcPtr: *mut Tcl_NotifierProcs) -> ();
    pub fn Tcl_GetAllocMutex() -> *mut Tcl_Mutex;
    pub fn Tcl_GetChannelNames(interp: *mut Tcl_Interp) -> ::libc::c_int;
    pub fn Tcl_GetChannelNamesEx(interp: *mut Tcl_Interp,
                                 pattern: *const ::libc::c_char)
     -> ::libc::c_int;
    pub fn Tcl_ProcObjCmd(clientData: ClientData, interp: *mut Tcl_Interp,
                          objc: ::libc::c_int, objv: *const *mut Tcl_Obj)
     -> ::libc::c_int;
    pub fn Tcl_ConditionFinalize(condPtr: *mut Tcl_Condition) -> ();
    pub fn Tcl_MutexFinalize(mutex: *mut Tcl_Mutex) -> ();
    pub fn Tcl_CreateThread(idPtr: *mut Tcl_ThreadId,
                            _proc: *mut Tcl_ThreadCreateProc,
                            clientData: ClientData, stackSize: ::libc::c_int,
                            flags: ::libc::c_int) -> ::libc::c_int;
    pub fn Tcl_ReadRaw(chan: Tcl_Channel, dst: *mut ::libc::c_char,
                       bytesToRead: ::libc::c_int) -> ::libc::c_int;
    pub fn Tcl_WriteRaw(chan: Tcl_Channel, src: *const ::libc::c_char,
                        srcLen: ::libc::c_int) -> ::libc::c_int;
    pub fn Tcl_GetTopChannel(chan: Tcl_Channel) -> Tcl_Channel;
    pub fn Tcl_ChannelBuffered(chan: Tcl_Channel) -> ::libc::c_int;
    pub fn Tcl_ChannelName(chanTypePtr: *const Tcl_ChannelType)
     -> *const ::libc::c_char;
    pub fn Tcl_ChannelVersion(chanTypePtr: *const Tcl_ChannelType)
     -> Tcl_ChannelTypeVersion;
    pub fn Tcl_ChannelBlockModeProc(chanTypePtr: *const Tcl_ChannelType)
     -> *mut Tcl_DriverBlockModeProc;
    pub fn Tcl_ChannelCloseProc(chanTypePtr: *const Tcl_ChannelType)
     -> *mut Tcl_DriverCloseProc;
    pub fn Tcl_ChannelClose2Proc(chanTypePtr: *const Tcl_ChannelType)
     -> *mut Tcl_DriverClose2Proc;
    pub fn Tcl_ChannelInputProc(chanTypePtr: *const Tcl_ChannelType)
     -> *mut Tcl_DriverInputProc;
    pub fn Tcl_ChannelOutputProc(chanTypePtr: *const Tcl_ChannelType)
     -> *mut Tcl_DriverOutputProc;
    pub fn Tcl_ChannelSeekProc(chanTypePtr: *const Tcl_ChannelType)
     -> *mut Tcl_DriverSeekProc;
    pub fn Tcl_ChannelSetOptionProc(chanTypePtr: *const Tcl_ChannelType)
     -> *mut Tcl_DriverSetOptionProc;
    pub fn Tcl_ChannelGetOptionProc(chanTypePtr: *const Tcl_ChannelType)
     -> *mut Tcl_DriverGetOptionProc;
    pub fn Tcl_ChannelWatchProc(chanTypePtr: *const Tcl_ChannelType)
     -> *mut Tcl_DriverWatchProc;
    pub fn Tcl_ChannelGetHandleProc(chanTypePtr: *const Tcl_ChannelType)
     -> *mut Tcl_DriverGetHandleProc;
    pub fn Tcl_ChannelFlushProc(chanTypePtr: *const Tcl_ChannelType)
     -> *mut Tcl_DriverFlushProc;
    pub fn Tcl_ChannelHandlerProc(chanTypePtr: *const Tcl_ChannelType)
     -> *mut Tcl_DriverHandlerProc;
    pub fn Tcl_JoinThread(threadId: Tcl_ThreadId, result: *mut ::libc::c_int)
     -> ::libc::c_int;
    pub fn Tcl_IsChannelShared(channel: Tcl_Channel) -> ::libc::c_int;
    pub fn Tcl_IsChannelRegistered(interp: *mut Tcl_Interp,
                                   channel: Tcl_Channel) -> ::libc::c_int;
    pub fn Tcl_CutChannel(channel: Tcl_Channel) -> ();
    pub fn Tcl_SpliceChannel(channel: Tcl_Channel) -> ();
    pub fn Tcl_ClearChannelHandlers(channel: Tcl_Channel) -> ();
    pub fn Tcl_IsChannelExisting(channelName: *const ::libc::c_char)
     -> ::libc::c_int;
    pub fn Tcl_UniCharNcasecmp(ucs: *const Tcl_UniChar,
                               uct: *const Tcl_UniChar,
                               numChars: ::libc::c_ulong) -> ::libc::c_int;
    pub fn Tcl_UniCharCaseMatch(uniStr: *const Tcl_UniChar,
                                uniPattern: *const Tcl_UniChar,
                                nocase: ::libc::c_int) -> ::libc::c_int;
    pub fn Tcl_FindHashEntry(tablePtr: *mut Tcl_HashTable,
                             key: *const ::libc::c_void)
     -> *mut Tcl_HashEntry;
    pub fn Tcl_CreateHashEntry(tablePtr: *mut Tcl_HashTable,
                               key: *const ::libc::c_void,
                               newPtr: *mut ::libc::c_int)
     -> *mut Tcl_HashEntry;
    pub fn Tcl_InitCustomHashTable(tablePtr: *mut Tcl_HashTable,
                                   keyType: ::libc::c_int,
                                   typePtr: *const Tcl_HashKeyType) -> ();
    pub fn Tcl_InitObjHashTable(tablePtr: *mut Tcl_HashTable) -> ();
    pub fn Tcl_CommandTraceInfo(interp: *mut Tcl_Interp,
                                varName: *const ::libc::c_char,
                                flags: ::libc::c_int,
                                procPtr: *mut Tcl_CommandTraceProc,
                                prevClientData: ClientData) -> ClientData;
    pub fn Tcl_TraceCommand(interp: *mut Tcl_Interp,
                            varName: *const ::libc::c_char,
                            flags: ::libc::c_int,
                            _proc: *mut Tcl_CommandTraceProc,
                            clientData: ClientData) -> ::libc::c_int;
    pub fn Tcl_UntraceCommand(interp: *mut Tcl_Interp,
                              varName: *const ::libc::c_char,
                              flags: ::libc::c_int,
                              _proc: *mut Tcl_CommandTraceProc,
                              clientData: ClientData) -> ();
    pub fn Tcl_AttemptAlloc(size: ::libc::c_uint) -> *mut ::libc::c_char;
    pub fn Tcl_AttemptDbCkalloc(size: ::libc::c_uint,
                                file: *const ::libc::c_char,
                                line: ::libc::c_int) -> *mut ::libc::c_char;
    pub fn Tcl_AttemptRealloc(ptr: *mut ::libc::c_char, size: ::libc::c_uint)
     -> *mut ::libc::c_char;
    pub fn Tcl_AttemptDbCkrealloc(ptr: *mut ::libc::c_char,
                                  size: ::libc::c_uint,
                                  file: *const ::libc::c_char,
                                  line: ::libc::c_int) -> *mut ::libc::c_char;
    pub fn Tcl_AttemptSetObjLength(objPtr: *mut Tcl_Obj,
                                   length: ::libc::c_int) -> ::libc::c_int;
    pub fn Tcl_GetChannelThread(channel: Tcl_Channel) -> Tcl_ThreadId;
    pub fn Tcl_GetUnicodeFromObj(objPtr: *mut Tcl_Obj,
                                 lengthPtr: *mut ::libc::c_int)
     -> *mut Tcl_UniChar;
    pub fn Tcl_GetMathFuncInfo(interp: *mut Tcl_Interp,
                               name: *const ::libc::c_char,
                               numArgsPtr: *mut ::libc::c_int,
                               argTypesPtr: *mut *mut Tcl_ValueType,
                               procPtr: *mut *mut Tcl_MathProc,
                               clientDataPtr: *mut ClientData)
     -> ::libc::c_int;
    pub fn Tcl_ListMathFuncs(interp: *mut Tcl_Interp,
                             pattern: *const ::libc::c_char) -> *mut Tcl_Obj;
    pub fn Tcl_SubstObj(interp: *mut Tcl_Interp, objPtr: *mut Tcl_Obj,
                        flags: ::libc::c_int) -> *mut Tcl_Obj;
    pub fn Tcl_DetachChannel(interp: *mut Tcl_Interp, channel: Tcl_Channel)
     -> ::libc::c_int;
    pub fn Tcl_IsStandardChannel(channel: Tcl_Channel) -> ::libc::c_int;
    pub fn Tcl_FSCopyFile(srcPathPtr: *mut Tcl_Obj, destPathPtr: *mut Tcl_Obj)
     -> ::libc::c_int;
    pub fn Tcl_FSCopyDirectory(srcPathPtr: *mut Tcl_Obj,
                               destPathPtr: *mut Tcl_Obj,
                               errorPtr: *mut *mut Tcl_Obj) -> ::libc::c_int;
    pub fn Tcl_FSCreateDirectory(pathPtr: *mut Tcl_Obj) -> ::libc::c_int;
    pub fn Tcl_FSDeleteFile(pathPtr: *mut Tcl_Obj) -> ::libc::c_int;
    pub fn Tcl_FSLoadFile(interp: *mut Tcl_Interp, pathPtr: *mut Tcl_Obj,
                          sym1: *const ::libc::c_char,
                          sym2: *const ::libc::c_char,
                          proc1Ptr: *mut *mut Tcl_PackageInitProc,
                          proc2Ptr: *mut *mut Tcl_PackageInitProc,
                          handlePtr: *mut Tcl_LoadHandle,
                          unloadProcPtr: *mut *mut Tcl_FSUnloadFileProc)
     -> ::libc::c_int;
    pub fn Tcl_FSMatchInDirectory(interp: *mut Tcl_Interp,
                                  result: *mut Tcl_Obj, pathPtr: *mut Tcl_Obj,
                                  pattern: *const ::libc::c_char,
                                  types: *mut Tcl_GlobTypeData)
     -> ::libc::c_int;
    pub fn Tcl_FSLink(pathPtr: *mut Tcl_Obj, toPtr: *mut Tcl_Obj,
                      linkAction: ::libc::c_int) -> *mut Tcl_Obj;
    pub fn Tcl_FSRemoveDirectory(pathPtr: *mut Tcl_Obj,
                                 recursive: ::libc::c_int,
                                 errorPtr: *mut *mut Tcl_Obj)
     -> ::libc::c_int;
    pub fn Tcl_FSRenameFile(srcPathPtr: *mut Tcl_Obj,
                            destPathPtr: *mut Tcl_Obj) -> ::libc::c_int;
    pub fn Tcl_FSLstat(pathPtr: *mut Tcl_Obj, buf: *mut Tcl_StatBuf)
     -> ::libc::c_int;
    pub fn Tcl_FSUtime(pathPtr: *mut Tcl_Obj, tval: *mut Struct_utimbuf)
     -> ::libc::c_int;
    pub fn Tcl_FSFileAttrsGet(interp: *mut Tcl_Interp, index: ::libc::c_int,
                              pathPtr: *mut Tcl_Obj,
                              objPtrRef: *mut *mut Tcl_Obj) -> ::libc::c_int;
    pub fn Tcl_FSFileAttrsSet(interp: *mut Tcl_Interp, index: ::libc::c_int,
                              pathPtr: *mut Tcl_Obj, objPtr: *mut Tcl_Obj)
     -> ::libc::c_int;
    pub fn Tcl_FSFileAttrStrings(pathPtr: *mut Tcl_Obj,
                                 objPtrRef: *mut *mut Tcl_Obj)
     -> *const *const ::libc::c_char;
    pub fn Tcl_FSStat(pathPtr: *mut Tcl_Obj, buf: *mut Tcl_StatBuf)
     -> ::libc::c_int;
    pub fn Tcl_FSAccess(pathPtr: *mut Tcl_Obj, mode: ::libc::c_int)
     -> ::libc::c_int;
    pub fn Tcl_FSOpenFileChannel(interp: *mut Tcl_Interp,
                                 pathPtr: *mut Tcl_Obj,
                                 modeString: *const ::libc::c_char,
                                 permissions: ::libc::c_int) -> Tcl_Channel;
    pub fn Tcl_FSGetCwd(interp: *mut Tcl_Interp) -> *mut Tcl_Obj;
    pub fn Tcl_FSChdir(pathPtr: *mut Tcl_Obj) -> ::libc::c_int;
    pub fn Tcl_FSConvertToPathType(interp: *mut Tcl_Interp,
                                   pathPtr: *mut Tcl_Obj) -> ::libc::c_int;
    pub fn Tcl_FSJoinPath(listObj: *mut Tcl_Obj, elements: ::libc::c_int)
     -> *mut Tcl_Obj;
    pub fn Tcl_FSSplitPath(pathPtr: *mut Tcl_Obj, lenPtr: *mut ::libc::c_int)
     -> *mut Tcl_Obj;
    pub fn Tcl_FSEqualPaths(firstPtr: *mut Tcl_Obj, secondPtr: *mut Tcl_Obj)
     -> ::libc::c_int;
    pub fn Tcl_FSGetNormalizedPath(interp: *mut Tcl_Interp,
                                   pathPtr: *mut Tcl_Obj) -> *mut Tcl_Obj;
    pub fn Tcl_FSJoinToPath(pathPtr: *mut Tcl_Obj, objc: ::libc::c_int,
                            objv: *const *mut Tcl_Obj) -> *mut Tcl_Obj;
    pub fn Tcl_FSGetInternalRep(pathPtr: *mut Tcl_Obj,
                                fsPtr: *const Tcl_Filesystem) -> ClientData;
    pub fn Tcl_FSGetTranslatedPath(interp: *mut Tcl_Interp,
                                   pathPtr: *mut Tcl_Obj) -> *mut Tcl_Obj;
    pub fn Tcl_FSEvalFile(interp: *mut Tcl_Interp, fileName: *mut Tcl_Obj)
     -> ::libc::c_int;
    pub fn Tcl_FSNewNativePath(fromFilesystem: *const Tcl_Filesystem,
                               clientData: ClientData) -> *mut Tcl_Obj;
    pub fn Tcl_FSGetNativePath(pathPtr: *mut Tcl_Obj)
     -> *const ::libc::c_void;
    pub fn Tcl_FSFileSystemInfo(pathPtr: *mut Tcl_Obj) -> *mut Tcl_Obj;
    pub fn Tcl_FSPathSeparator(pathPtr: *mut Tcl_Obj) -> *mut Tcl_Obj;
    pub fn Tcl_FSListVolumes() -> *mut Tcl_Obj;
    pub fn Tcl_FSRegister(clientData: ClientData,
                          fsPtr: *const Tcl_Filesystem) -> ::libc::c_int;
    pub fn Tcl_FSUnregister(fsPtr: *const Tcl_Filesystem) -> ::libc::c_int;
    pub fn Tcl_FSData(fsPtr: *const Tcl_Filesystem) -> ClientData;
    pub fn Tcl_FSGetTranslatedStringPath(interp: *mut Tcl_Interp,
                                         pathPtr: *mut Tcl_Obj)
     -> *const ::libc::c_char;
    pub fn Tcl_FSGetFileSystemForPath(pathPtr: *mut Tcl_Obj)
     -> *const Tcl_Filesystem;
    pub fn Tcl_FSGetPathType(pathPtr: *mut Tcl_Obj) -> Tcl_PathType;
    pub fn Tcl_OutputBuffered(chan: Tcl_Channel) -> ::libc::c_int;
    pub fn Tcl_FSMountsChanged(fsPtr: *const Tcl_Filesystem) -> ();
    pub fn Tcl_EvalTokensStandard(interp: *mut Tcl_Interp,
                                  tokenPtr: *mut Tcl_Token,
                                  count: ::libc::c_int) -> ::libc::c_int;
    pub fn Tcl_GetTime(timeBuf: *mut Tcl_Time) -> ();
    pub fn Tcl_CreateObjTrace(interp: *mut Tcl_Interp, level: ::libc::c_int,
                              flags: ::libc::c_int,
                              objProc: *mut Tcl_CmdObjTraceProc,
                              clientData: ClientData,
                              delProc: *mut Tcl_CmdObjTraceDeleteProc)
     -> Tcl_Trace;
    pub fn Tcl_GetCommandInfoFromToken(token: Tcl_Command,
                                       infoPtr: *mut Tcl_CmdInfo)
     -> ::libc::c_int;
    pub fn Tcl_SetCommandInfoFromToken(token: Tcl_Command,
                                       infoPtr: *const Tcl_CmdInfo)
     -> ::libc::c_int;
    pub fn Tcl_DbNewWideIntObj(wideValue: Tcl_WideInt,
                               file: *const ::libc::c_char,
                               line: ::libc::c_int) -> *mut Tcl_Obj;
    pub fn Tcl_GetWideIntFromObj(interp: *mut Tcl_Interp,
                                 objPtr: *mut Tcl_Obj,
                                 widePtr: *mut Tcl_WideInt) -> ::libc::c_int;
    pub fn Tcl_NewWideIntObj(wideValue: Tcl_WideInt) -> *mut Tcl_Obj;
    pub fn Tcl_SetWideIntObj(objPtr: *mut Tcl_Obj, wideValue: Tcl_WideInt)
     -> ();
    pub fn Tcl_AllocStatBuf() -> *mut Tcl_StatBuf;
    pub fn Tcl_Seek(chan: Tcl_Channel, offset: Tcl_WideInt,
                    mode: ::libc::c_int) -> Tcl_WideInt;
    pub fn Tcl_Tell(chan: Tcl_Channel) -> Tcl_WideInt;
    pub fn Tcl_ChannelWideSeekProc(chanTypePtr: *const Tcl_ChannelType)
     -> *mut Tcl_DriverWideSeekProc;
    pub fn Tcl_DictObjPut(interp: *mut Tcl_Interp, dictPtr: *mut Tcl_Obj,
                          keyPtr: *mut Tcl_Obj, valuePtr: *mut Tcl_Obj)
     -> ::libc::c_int;
    pub fn Tcl_DictObjGet(interp: *mut Tcl_Interp, dictPtr: *mut Tcl_Obj,
                          keyPtr: *mut Tcl_Obj,
                          valuePtrPtr: *mut *mut Tcl_Obj) -> ::libc::c_int;
    pub fn Tcl_DictObjRemove(interp: *mut Tcl_Interp, dictPtr: *mut Tcl_Obj,
                             keyPtr: *mut Tcl_Obj) -> ::libc::c_int;
    pub fn Tcl_DictObjSize(interp: *mut Tcl_Interp, dictPtr: *mut Tcl_Obj,
                           sizePtr: *mut ::libc::c_int) -> ::libc::c_int;
    pub fn Tcl_DictObjFirst(interp: *mut Tcl_Interp, dictPtr: *mut Tcl_Obj,
                            searchPtr: *mut Tcl_DictSearch,
                            keyPtrPtr: *mut *mut Tcl_Obj,
                            valuePtrPtr: *mut *mut Tcl_Obj,
                            donePtr: *mut ::libc::c_int) -> ::libc::c_int;
    pub fn Tcl_DictObjNext(searchPtr: *mut Tcl_DictSearch,
                           keyPtrPtr: *mut *mut Tcl_Obj,
                           valuePtrPtr: *mut *mut Tcl_Obj,
                           donePtr: *mut ::libc::c_int) -> ();
    pub fn Tcl_DictObjDone(searchPtr: *mut Tcl_DictSearch) -> ();
    pub fn Tcl_DictObjPutKeyList(interp: *mut Tcl_Interp,
                                 dictPtr: *mut Tcl_Obj, keyc: ::libc::c_int,
                                 keyv: *const *mut Tcl_Obj,
                                 valuePtr: *mut Tcl_Obj) -> ::libc::c_int;
    pub fn Tcl_DictObjRemoveKeyList(interp: *mut Tcl_Interp,
                                    dictPtr: *mut Tcl_Obj,
                                    keyc: ::libc::c_int,
                                    keyv: *const *mut Tcl_Obj)
     -> ::libc::c_int;
    pub fn Tcl_NewDictObj() -> *mut Tcl_Obj;
    pub fn Tcl_DbNewDictObj(file: *const ::libc::c_char, line: ::libc::c_int)
     -> *mut Tcl_Obj;
    pub fn Tcl_RegisterConfig(interp: *mut Tcl_Interp,
                              pkgName: *const ::libc::c_char,
                              configuration: *const Tcl_Config,
                              valEncoding: *const ::libc::c_char) -> ();
    pub fn Tcl_CreateNamespace(interp: *mut Tcl_Interp,
                               name: *const ::libc::c_char,
                               clientData: ClientData,
                               deleteProc: *mut Tcl_NamespaceDeleteProc)
     -> *mut Tcl_Namespace;
    pub fn Tcl_DeleteNamespace(nsPtr: *mut Tcl_Namespace) -> ();
    pub fn Tcl_AppendExportList(interp: *mut Tcl_Interp,
                                nsPtr: *mut Tcl_Namespace,
                                objPtr: *mut Tcl_Obj) -> ::libc::c_int;
    pub fn Tcl_Export(interp: *mut Tcl_Interp, nsPtr: *mut Tcl_Namespace,
                      pattern: *const ::libc::c_char,
                      resetListFirst: ::libc::c_int) -> ::libc::c_int;
    pub fn Tcl_Import(interp: *mut Tcl_Interp, nsPtr: *mut Tcl_Namespace,
                      pattern: *const ::libc::c_char,
                      allowOverwrite: ::libc::c_int) -> ::libc::c_int;
    pub fn Tcl_ForgetImport(interp: *mut Tcl_Interp,
                            nsPtr: *mut Tcl_Namespace,
                            pattern: *const ::libc::c_char) -> ::libc::c_int;
    pub fn Tcl_GetCurrentNamespace(interp: *mut Tcl_Interp)
     -> *mut Tcl_Namespace;
    pub fn Tcl_GetGlobalNamespace(interp: *mut Tcl_Interp)
     -> *mut Tcl_Namespace;
    pub fn Tcl_FindNamespace(interp: *mut Tcl_Interp,
                             name: *const ::libc::c_char,
                             contextNsPtr: *mut Tcl_Namespace,
                             flags: ::libc::c_int) -> *mut Tcl_Namespace;
    pub fn Tcl_FindCommand(interp: *mut Tcl_Interp,
                           name: *const ::libc::c_char,
                           contextNsPtr: *mut Tcl_Namespace,
                           flags: ::libc::c_int) -> Tcl_Command;
    pub fn Tcl_GetCommandFromObj(interp: *mut Tcl_Interp,
                                 objPtr: *mut Tcl_Obj) -> Tcl_Command;
    pub fn Tcl_GetCommandFullName(interp: *mut Tcl_Interp,
                                  command: Tcl_Command, objPtr: *mut Tcl_Obj)
     -> ();
    pub fn Tcl_FSEvalFileEx(interp: *mut Tcl_Interp, fileName: *mut Tcl_Obj,
                            encodingName: *const ::libc::c_char)
     -> ::libc::c_int;
    pub fn Tcl_SetExitProc(_proc: *mut Tcl_ExitProc) -> *mut Tcl_ExitProc;
    pub fn Tcl_LimitAddHandler(interp: *mut Tcl_Interp, _type: ::libc::c_int,
                               handlerProc: *mut Tcl_LimitHandlerProc,
                               clientData: ClientData,
                               deleteProc: *mut Tcl_LimitHandlerDeleteProc)
     -> ();
    pub fn Tcl_LimitRemoveHandler(interp: *mut Tcl_Interp,
                                  _type: ::libc::c_int,
                                  handlerProc: *mut Tcl_LimitHandlerProc,
                                  clientData: ClientData) -> ();
    pub fn Tcl_LimitReady(interp: *mut Tcl_Interp) -> ::libc::c_int;
    pub fn Tcl_LimitCheck(interp: *mut Tcl_Interp) -> ::libc::c_int;
    pub fn Tcl_LimitExceeded(interp: *mut Tcl_Interp) -> ::libc::c_int;
    pub fn Tcl_LimitSetCommands(interp: *mut Tcl_Interp,
                                commandLimit: ::libc::c_int) -> ();
    pub fn Tcl_LimitSetTime(interp: *mut Tcl_Interp,
                            timeLimitPtr: *mut Tcl_Time) -> ();
    pub fn Tcl_LimitSetGranularity(interp: *mut Tcl_Interp,
                                   _type: ::libc::c_int,
                                   granularity: ::libc::c_int) -> ();
    pub fn Tcl_LimitTypeEnabled(interp: *mut Tcl_Interp, _type: ::libc::c_int)
     -> ::libc::c_int;
    pub fn Tcl_LimitTypeExceeded(interp: *mut Tcl_Interp,
                                 _type: ::libc::c_int) -> ::libc::c_int;
    pub fn Tcl_LimitTypeSet(interp: *mut Tcl_Interp, _type: ::libc::c_int)
     -> ();
    pub fn Tcl_LimitTypeReset(interp: *mut Tcl_Interp, _type: ::libc::c_int)
     -> ();
    pub fn Tcl_LimitGetCommands(interp: *mut Tcl_Interp) -> ::libc::c_int;
    pub fn Tcl_LimitGetTime(interp: *mut Tcl_Interp,
                            timeLimitPtr: *mut Tcl_Time) -> ();
    pub fn Tcl_LimitGetGranularity(interp: *mut Tcl_Interp,
                                   _type: ::libc::c_int) -> ::libc::c_int;
    pub fn Tcl_SaveInterpState(interp: *mut Tcl_Interp, status: ::libc::c_int)
     -> Tcl_InterpState;
    pub fn Tcl_RestoreInterpState(interp: *mut Tcl_Interp,
                                  state: Tcl_InterpState) -> ::libc::c_int;
    pub fn Tcl_DiscardInterpState(state: Tcl_InterpState) -> ();
    pub fn Tcl_SetReturnOptions(interp: *mut Tcl_Interp,
                                options: *mut Tcl_Obj) -> ::libc::c_int;
    pub fn Tcl_GetReturnOptions(interp: *mut Tcl_Interp,
                                result: ::libc::c_int) -> *mut Tcl_Obj;
    pub fn Tcl_IsEnsemble(token: Tcl_Command) -> ::libc::c_int;
    pub fn Tcl_CreateEnsemble(interp: *mut Tcl_Interp,
                              name: *const ::libc::c_char,
                              namespacePtr: *mut Tcl_Namespace,
                              flags: ::libc::c_int) -> Tcl_Command;
    pub fn Tcl_FindEnsemble(interp: *mut Tcl_Interp, cmdNameObj: *mut Tcl_Obj,
                            flags: ::libc::c_int) -> Tcl_Command;
    pub fn Tcl_SetEnsembleSubcommandList(interp: *mut Tcl_Interp,
                                         token: Tcl_Command,
                                         subcmdList: *mut Tcl_Obj)
     -> ::libc::c_int;
    pub fn Tcl_SetEnsembleMappingDict(interp: *mut Tcl_Interp,
                                      token: Tcl_Command,
                                      mapDict: *mut Tcl_Obj) -> ::libc::c_int;
    pub fn Tcl_SetEnsembleUnknownHandler(interp: *mut Tcl_Interp,
                                         token: Tcl_Command,
                                         unknownList: *mut Tcl_Obj)
     -> ::libc::c_int;
    pub fn Tcl_SetEnsembleFlags(interp: *mut Tcl_Interp, token: Tcl_Command,
                                flags: ::libc::c_int) -> ::libc::c_int;
    pub fn Tcl_GetEnsembleSubcommandList(interp: *mut Tcl_Interp,
                                         token: Tcl_Command,
                                         subcmdListPtr: *mut *mut Tcl_Obj)
     -> ::libc::c_int;
    pub fn Tcl_GetEnsembleMappingDict(interp: *mut Tcl_Interp,
                                      token: Tcl_Command,
                                      mapDictPtr: *mut *mut Tcl_Obj)
     -> ::libc::c_int;
    pub fn Tcl_GetEnsembleUnknownHandler(interp: *mut Tcl_Interp,
                                         token: Tcl_Command,
                                         unknownListPtr: *mut *mut Tcl_Obj)
     -> ::libc::c_int;
    pub fn Tcl_GetEnsembleFlags(interp: *mut Tcl_Interp, token: Tcl_Command,
                                flagsPtr: *mut ::libc::c_int)
     -> ::libc::c_int;
    pub fn Tcl_GetEnsembleNamespace(interp: *mut Tcl_Interp,
                                    token: Tcl_Command,
                                    namespacePtrPtr: *mut *mut Tcl_Namespace)
     -> ::libc::c_int;
    pub fn Tcl_SetTimeProc(getProc: *mut Tcl_GetTimeProc,
                           scaleProc: *mut Tcl_ScaleTimeProc,
                           clientData: ClientData) -> ();
    pub fn Tcl_QueryTimeProc(getProc: *mut *mut Tcl_GetTimeProc,
                             scaleProc: *mut *mut Tcl_ScaleTimeProc,
                             clientData: *mut ClientData) -> ();
    pub fn Tcl_ChannelThreadActionProc(chanTypePtr: *const Tcl_ChannelType)
     -> *mut Tcl_DriverThreadActionProc;
    pub fn Tcl_NewBignumObj(value: *mut mp_int) -> *mut Tcl_Obj;
    pub fn Tcl_DbNewBignumObj(value: *mut mp_int, file: *const ::libc::c_char,
                              line: ::libc::c_int) -> *mut Tcl_Obj;
    pub fn Tcl_SetBignumObj(obj: *mut Tcl_Obj, value: *mut mp_int) -> ();
    pub fn Tcl_GetBignumFromObj(interp: *mut Tcl_Interp, obj: *mut Tcl_Obj,
                                value: *mut mp_int) -> ::libc::c_int;
    pub fn Tcl_TakeBignumFromObj(interp: *mut Tcl_Interp, obj: *mut Tcl_Obj,
                                 value: *mut mp_int) -> ::libc::c_int;
    pub fn Tcl_TruncateChannel(chan: Tcl_Channel, length: Tcl_WideInt)
     -> ::libc::c_int;
    pub fn Tcl_ChannelTruncateProc(chanTypePtr: *const Tcl_ChannelType)
     -> *mut Tcl_DriverTruncateProc;
    pub fn Tcl_SetChannelErrorInterp(interp: *mut Tcl_Interp,
                                     msg: *mut Tcl_Obj) -> ();
    pub fn Tcl_GetChannelErrorInterp(interp: *mut Tcl_Interp,
                                     msg: *mut *mut Tcl_Obj) -> ();
    pub fn Tcl_SetChannelError(chan: Tcl_Channel, msg: *mut Tcl_Obj) -> ();
    pub fn Tcl_GetChannelError(chan: Tcl_Channel, msg: *mut *mut Tcl_Obj)
     -> ();
    pub fn Tcl_InitBignumFromDouble(interp: *mut Tcl_Interp,
                                    initval: ::libc::c_double,
                                    toInit: *mut mp_int) -> ::libc::c_int;
    pub fn Tcl_GetNamespaceUnknownHandler(interp: *mut Tcl_Interp,
                                          nsPtr: *mut Tcl_Namespace)
     -> *mut Tcl_Obj;
    pub fn Tcl_SetNamespaceUnknownHandler(interp: *mut Tcl_Interp,
                                          nsPtr: *mut Tcl_Namespace,
                                          handlerPtr: *mut Tcl_Obj)
     -> ::libc::c_int;
    pub fn Tcl_GetEncodingFromObj(interp: *mut Tcl_Interp,
                                  objPtr: *mut Tcl_Obj,
                                  encodingPtr: *mut Tcl_Encoding)
     -> ::libc::c_int;
    pub fn Tcl_GetEncodingSearchPath() -> *mut Tcl_Obj;
    pub fn Tcl_SetEncodingSearchPath(searchPath: *mut Tcl_Obj)
     -> ::libc::c_int;
    pub fn Tcl_GetEncodingNameFromEnvironment(bufPtr: *mut Tcl_DString)
     -> *const ::libc::c_char;
    pub fn Tcl_PkgRequireProc(interp: *mut Tcl_Interp,
                              name: *const ::libc::c_char,
                              objc: ::libc::c_int, objv: *const *mut Tcl_Obj,
                              clientDataPtr: *mut ::libc::c_void)
     -> ::libc::c_int;
    pub fn Tcl_AppendObjToErrorInfo(interp: *mut Tcl_Interp,
                                    objPtr: *mut Tcl_Obj) -> ();
    pub fn Tcl_AppendLimitedToObj(objPtr: *mut Tcl_Obj,
                                  bytes: *const ::libc::c_char,
                                  length: ::libc::c_int, limit: ::libc::c_int,
                                  ellipsis: *const ::libc::c_char) -> ();
    pub fn Tcl_Format(interp: *mut Tcl_Interp, format: *const ::libc::c_char,
                      objc: ::libc::c_int, objv: *const *mut Tcl_Obj)
     -> *mut Tcl_Obj;
    pub fn Tcl_AppendFormatToObj(interp: *mut Tcl_Interp,
                                 objPtr: *mut Tcl_Obj,
                                 format: *const ::libc::c_char,
                                 objc: ::libc::c_int,
                                 objv: *const *mut Tcl_Obj) -> ::libc::c_int;
    pub fn Tcl_ObjPrintf(format: *const ::libc::c_char, ...) -> *mut Tcl_Obj;
    pub fn Tcl_AppendPrintfToObj(objPtr: *mut Tcl_Obj,
                                 format: *const ::libc::c_char, ...) -> ();
    pub fn Tcl_CancelEval(interp: *mut Tcl_Interp, resultObjPtr: *mut Tcl_Obj,
                          clientData: ClientData, flags: ::libc::c_int)
     -> ::libc::c_int;
    pub fn Tcl_Canceled(interp: *mut Tcl_Interp, flags: ::libc::c_int)
     -> ::libc::c_int;
    pub fn Tcl_CreatePipe(interp: *mut Tcl_Interp, rchan: *mut Tcl_Channel,
                          wchan: *mut Tcl_Channel, flags: ::libc::c_int)
     -> ::libc::c_int;
    pub fn Tcl_NRCreateCommand(interp: *mut Tcl_Interp,
                               cmdName: *const ::libc::c_char,
                               _proc: *mut Tcl_ObjCmdProc,
                               nreProc: *mut Tcl_ObjCmdProc,
                               clientData: ClientData,
                               deleteProc: *mut Tcl_CmdDeleteProc)
     -> Tcl_Command;
    pub fn Tcl_NREvalObj(interp: *mut Tcl_Interp, objPtr: *mut Tcl_Obj,
                         flags: ::libc::c_int) -> ::libc::c_int;
    pub fn Tcl_NREvalObjv(interp: *mut Tcl_Interp, objc: ::libc::c_int,
                          objv: *const *mut Tcl_Obj, flags: ::libc::c_int)
     -> ::libc::c_int;
    pub fn Tcl_NRCmdSwap(interp: *mut Tcl_Interp, cmd: Tcl_Command,
                         objc: ::libc::c_int, objv: *const *mut Tcl_Obj,
                         flags: ::libc::c_int) -> ::libc::c_int;
    pub fn Tcl_NRAddCallback(interp: *mut Tcl_Interp,
                             postProcPtr: *mut Tcl_NRPostProc,
                             data0: ClientData, data1: ClientData,
                             data2: ClientData, data3: ClientData) -> ();
    pub fn Tcl_NRCallObjProc(interp: *mut Tcl_Interp,
                             objProc: *mut Tcl_ObjCmdProc,
                             clientData: ClientData, objc: ::libc::c_int,
                             objv: *const *mut Tcl_Obj) -> ::libc::c_int;
    pub fn Tcl_GetFSDeviceFromStat(statPtr: *const Tcl_StatBuf)
     -> ::libc::c_uint;
    pub fn Tcl_GetFSInodeFromStat(statPtr: *const Tcl_StatBuf)
     -> ::libc::c_uint;
    pub fn Tcl_GetModeFromStat(statPtr: *const Tcl_StatBuf) -> ::libc::c_uint;
    pub fn Tcl_GetLinkCountFromStat(statPtr: *const Tcl_StatBuf)
     -> ::libc::c_int;
    pub fn Tcl_GetUserIdFromStat(statPtr: *const Tcl_StatBuf)
     -> ::libc::c_int;
    pub fn Tcl_GetGroupIdFromStat(statPtr: *const Tcl_StatBuf)
     -> ::libc::c_int;
    pub fn Tcl_GetDeviceTypeFromStat(statPtr: *const Tcl_StatBuf)
     -> ::libc::c_int;
    pub fn Tcl_GetAccessTimeFromStat(statPtr: *const Tcl_StatBuf)
     -> Tcl_WideInt;
    pub fn Tcl_GetModificationTimeFromStat(statPtr: *const Tcl_StatBuf)
     -> Tcl_WideInt;
    pub fn Tcl_GetChangeTimeFromStat(statPtr: *const Tcl_StatBuf)
     -> Tcl_WideInt;
    pub fn Tcl_GetSizeFromStat(statPtr: *const Tcl_StatBuf) -> Tcl_WideUInt;
    pub fn Tcl_GetBlocksFromStat(statPtr: *const Tcl_StatBuf) -> Tcl_WideUInt;
    pub fn Tcl_GetBlockSizeFromStat(statPtr: *const Tcl_StatBuf)
     -> ::libc::c_uint;
    pub fn Tcl_SetEnsembleParameterList(interp: *mut Tcl_Interp,
                                        token: Tcl_Command,
                                        paramList: *mut Tcl_Obj)
     -> ::libc::c_int;
    pub fn Tcl_GetEnsembleParameterList(interp: *mut Tcl_Interp,
                                        token: Tcl_Command,
                                        paramListPtr: *mut *mut Tcl_Obj)
     -> ::libc::c_int;
    pub fn Tcl_ParseArgsObjv(interp: *mut Tcl_Interp,
                             argTable: *const Tcl_ArgvInfo,
                             objcPtr: *mut ::libc::c_int,
                             objv: *const *mut Tcl_Obj,
                             remObjv: *mut *mut *mut Tcl_Obj)
     -> ::libc::c_int;
    pub fn Tcl_GetErrorLine(interp: *mut Tcl_Interp) -> ::libc::c_int;
    pub fn Tcl_SetErrorLine(interp: *mut Tcl_Interp, lineNum: ::libc::c_int)
     -> ();
    pub fn Tcl_TransferResult(sourceInterp: *mut Tcl_Interp,
                              result: ::libc::c_int,
                              targetInterp: *mut Tcl_Interp) -> ();
    pub fn Tcl_InterpActive(interp: *mut Tcl_Interp) -> ::libc::c_int;
    pub fn Tcl_BackgroundException(interp: *mut Tcl_Interp,
                                   code: ::libc::c_int) -> ();
    pub fn Tcl_ZlibDeflate(interp: *mut Tcl_Interp, format: ::libc::c_int,
                           data: *mut Tcl_Obj, level: ::libc::c_int,
                           gzipHeaderDictObj: *mut Tcl_Obj) -> ::libc::c_int;
    pub fn Tcl_ZlibInflate(interp: *mut Tcl_Interp, format: ::libc::c_int,
                           data: *mut Tcl_Obj, buffersize: ::libc::c_int,
                           gzipHeaderDictObj: *mut Tcl_Obj) -> ::libc::c_int;
    pub fn Tcl_ZlibCRC32(crc: ::libc::c_uint, buf: *const ::libc::c_uchar,
                         len: ::libc::c_int) -> ::libc::c_uint;
    pub fn Tcl_ZlibAdler32(adler: ::libc::c_uint, buf: *const ::libc::c_uchar,
                           len: ::libc::c_int) -> ::libc::c_uint;
    pub fn Tcl_ZlibStreamInit(interp: *mut Tcl_Interp, mode: ::libc::c_int,
                              format: ::libc::c_int, level: ::libc::c_int,
                              dictObj: *mut Tcl_Obj,
                              zshandle: *mut Tcl_ZlibStream) -> ::libc::c_int;
    pub fn Tcl_ZlibStreamGetCommandName(zshandle: Tcl_ZlibStream)
     -> *mut Tcl_Obj;
    pub fn Tcl_ZlibStreamEof(zshandle: Tcl_ZlibStream) -> ::libc::c_int;
    pub fn Tcl_ZlibStreamChecksum(zshandle: Tcl_ZlibStream) -> ::libc::c_int;
    pub fn Tcl_ZlibStreamPut(zshandle: Tcl_ZlibStream, data: *mut Tcl_Obj,
                             flush: ::libc::c_int) -> ::libc::c_int;
    pub fn Tcl_ZlibStreamGet(zshandle: Tcl_ZlibStream, data: *mut Tcl_Obj,
                             count: ::libc::c_int) -> ::libc::c_int;
    pub fn Tcl_ZlibStreamClose(zshandle: Tcl_ZlibStream) -> ::libc::c_int;
    pub fn Tcl_ZlibStreamReset(zshandle: Tcl_ZlibStream) -> ::libc::c_int;
    pub fn Tcl_SetStartupScript(path: *mut Tcl_Obj,
                                encoding: *const ::libc::c_char) -> ();
    pub fn Tcl_GetStartupScript(encodingPtr: *mut *const ::libc::c_char)
     -> *mut Tcl_Obj;
    pub fn Tcl_CloseEx(interp: *mut Tcl_Interp, chan: Tcl_Channel,
                       flags: ::libc::c_int) -> ::libc::c_int;
    pub fn Tcl_NRExprObj(interp: *mut Tcl_Interp, objPtr: *mut Tcl_Obj,
                         resultPtr: *mut Tcl_Obj) -> ::libc::c_int;
    pub fn Tcl_NRSubstObj(interp: *mut Tcl_Interp, objPtr: *mut Tcl_Obj,
                          flags: ::libc::c_int) -> ::libc::c_int;
    pub fn Tcl_LoadFile(interp: *mut Tcl_Interp, pathPtr: *mut Tcl_Obj,
                        symv: *const *const ::libc::c_char,
                        flags: ::libc::c_int, procPtrs: *mut ::libc::c_void,
                        handlePtr: *mut Tcl_LoadHandle) -> ::libc::c_int;
    pub fn Tcl_FindSymbol(interp: *mut Tcl_Interp, handle: Tcl_LoadHandle,
                          symbol: *const ::libc::c_char)
     -> *mut ::libc::c_void;
    pub fn Tcl_FSUnloadFile(interp: *mut Tcl_Interp,
                            handlePtr: Tcl_LoadHandle) -> ::libc::c_int;
    pub fn Tcl_ZlibStreamSetCompressionDictionary(zhandle: Tcl_ZlibStream,
                                                  compressionDictionaryObj:
                                                      *mut Tcl_Obj) -> ();
    pub fn Tcl_AppInit(arg1: *mut Tcl_Interp) -> ::libc::c_int;
}