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
|
/* ----------------------------------------------------------------------------
* This file was automatically generated by SWIG (http://www.swig.org).
* Version 3.0.10
*
* This file is not intended to be easily readable and contains a number of
* coding conventions designed to improve portability and efficiency. Do not make
* changes to this file unless you know what you are doing--modify the SWIG
* interface file instead.
* ----------------------------------------------------------------------------- */
#ifndef PHP_OPENBABEL_H
#define PHP_OPENBABEL_H
extern zend_module_entry openbabel_module_entry;
#define phpext_openbabel_ptr &openbabel_module_entry
#ifdef PHP_WIN32
# define PHP_OPENBABEL_API __declspec(dllexport)
#else
# define PHP_OPENBABEL_API
#endif
#ifdef ZTS
#include "TSRM.h"
#endif
PHP_MINIT_FUNCTION(openbabel);
PHP_MSHUTDOWN_FUNCTION(openbabel);
PHP_RINIT_FUNCTION(openbabel);
PHP_RSHUTDOWN_FUNCTION(openbabel);
PHP_MINFO_FUNCTION(openbabel);
ZEND_NAMED_FUNCTION(_wrap_new_vectorInt);
ZEND_NAMED_FUNCTION(_wrap_vectorInt_size);
ZEND_NAMED_FUNCTION(_wrap_vectorInt_is_empty);
ZEND_NAMED_FUNCTION(_wrap_vectorInt_get);
ZEND_NAMED_FUNCTION(_wrap_vectorInt_set);
ZEND_NAMED_FUNCTION(_wrap_new_vectorUnsignedInt);
ZEND_NAMED_FUNCTION(_wrap_vectorUnsignedInt_size);
ZEND_NAMED_FUNCTION(_wrap_vectorUnsignedInt_is_empty);
ZEND_NAMED_FUNCTION(_wrap_vectorUnsignedInt_get);
ZEND_NAMED_FUNCTION(_wrap_vectorUnsignedInt_set);
ZEND_NAMED_FUNCTION(_wrap_new_vectorvInt);
ZEND_NAMED_FUNCTION(_wrap_vectorvInt_size);
ZEND_NAMED_FUNCTION(_wrap_vectorvInt_is_empty);
ZEND_NAMED_FUNCTION(_wrap_vectorvInt_get);
ZEND_NAMED_FUNCTION(_wrap_vectorvInt_set);
ZEND_NAMED_FUNCTION(_wrap_new_vectorDouble);
ZEND_NAMED_FUNCTION(_wrap_vectorDouble_size);
ZEND_NAMED_FUNCTION(_wrap_vectorDouble_is_empty);
ZEND_NAMED_FUNCTION(_wrap_vectorDouble_get);
ZEND_NAMED_FUNCTION(_wrap_vectorDouble_set);
ZEND_NAMED_FUNCTION(_wrap_new_vectorString);
ZEND_NAMED_FUNCTION(_wrap_vectorString_size);
ZEND_NAMED_FUNCTION(_wrap_vectorString_is_empty);
ZEND_NAMED_FUNCTION(_wrap_vectorString_get);
ZEND_NAMED_FUNCTION(_wrap_vectorString_set);
ZEND_NAMED_FUNCTION(_wrap_new_vectorVector3);
ZEND_NAMED_FUNCTION(_wrap_vectorVector3_size);
ZEND_NAMED_FUNCTION(_wrap_vectorVector3_is_empty);
ZEND_NAMED_FUNCTION(_wrap_vectorVector3_get);
ZEND_NAMED_FUNCTION(_wrap_vectorVector3_set);
ZEND_NAMED_FUNCTION(_wrap_new_vectorvVector3);
ZEND_NAMED_FUNCTION(_wrap_vectorvVector3_size);
ZEND_NAMED_FUNCTION(_wrap_vectorvVector3_is_empty);
ZEND_NAMED_FUNCTION(_wrap_vectorvVector3_get);
ZEND_NAMED_FUNCTION(_wrap_vectorvVector3_set);
ZEND_NAMED_FUNCTION(_wrap_new_vectorOBMol);
ZEND_NAMED_FUNCTION(_wrap_vectorOBMol_size);
ZEND_NAMED_FUNCTION(_wrap_vectorOBMol_is_empty);
ZEND_NAMED_FUNCTION(_wrap_vectorOBMol_get);
ZEND_NAMED_FUNCTION(_wrap_vectorOBMol_set);
ZEND_NAMED_FUNCTION(_wrap_new_vectorOBBond);
ZEND_NAMED_FUNCTION(_wrap_vectorOBBond_size);
ZEND_NAMED_FUNCTION(_wrap_vectorOBBond_is_empty);
ZEND_NAMED_FUNCTION(_wrap_vectorOBBond_get);
ZEND_NAMED_FUNCTION(_wrap_vectorOBBond_set);
ZEND_NAMED_FUNCTION(_wrap_new_vectorOBResidue);
ZEND_NAMED_FUNCTION(_wrap_vectorOBResidue_size);
ZEND_NAMED_FUNCTION(_wrap_vectorOBResidue_is_empty);
ZEND_NAMED_FUNCTION(_wrap_vectorOBResidue_get);
ZEND_NAMED_FUNCTION(_wrap_vectorOBResidue_set);
ZEND_NAMED_FUNCTION(_wrap_new_vectorOBRing);
ZEND_NAMED_FUNCTION(_wrap_vectorOBRing_size);
ZEND_NAMED_FUNCTION(_wrap_vectorOBRing_is_empty);
ZEND_NAMED_FUNCTION(_wrap_vectorOBRing_get);
ZEND_NAMED_FUNCTION(_wrap_vectorOBRing_set);
ZEND_NAMED_FUNCTION(_wrap_new_vectorpOBRing);
ZEND_NAMED_FUNCTION(_wrap_vectorpOBRing_size);
ZEND_NAMED_FUNCTION(_wrap_vectorpOBRing_is_empty);
ZEND_NAMED_FUNCTION(_wrap_vectorpOBRing_get);
ZEND_NAMED_FUNCTION(_wrap_vectorpOBRing_set);
ZEND_NAMED_FUNCTION(_wrap_new_vectorpOBGenericData);
ZEND_NAMED_FUNCTION(_wrap_vectorpOBGenericData_size);
ZEND_NAMED_FUNCTION(_wrap_vectorpOBGenericData_is_empty);
ZEND_NAMED_FUNCTION(_wrap_vectorpOBGenericData_get);
ZEND_NAMED_FUNCTION(_wrap_vectorpOBGenericData_set);
ZEND_NAMED_FUNCTION(_wrap_new_vectorpOBInternalCoord);
ZEND_NAMED_FUNCTION(_wrap_vectorpOBInternalCoord_size);
ZEND_NAMED_FUNCTION(_wrap_vectorpOBInternalCoord_is_empty);
ZEND_NAMED_FUNCTION(_wrap_vectorpOBInternalCoord_get);
ZEND_NAMED_FUNCTION(_wrap_vectorpOBInternalCoord_set);
ZEND_NAMED_FUNCTION(_wrap_new_pairUIntUInt);
ZEND_NAMED_FUNCTION(_wrap_pairUIntUInt_first_set);
ZEND_NAMED_FUNCTION(_wrap_pairUIntUInt_first_get);
ZEND_NAMED_FUNCTION(_wrap_pairUIntUInt_second_set);
ZEND_NAMED_FUNCTION(_wrap_pairUIntUInt_second_get);
ZEND_NAMED_FUNCTION(_wrap_new_vpairUIntUInt);
ZEND_NAMED_FUNCTION(_wrap_vpairUIntUInt_size);
ZEND_NAMED_FUNCTION(_wrap_vpairUIntUInt_is_empty);
ZEND_NAMED_FUNCTION(_wrap_vpairUIntUInt_get);
ZEND_NAMED_FUNCTION(_wrap_vpairUIntUInt_set);
ZEND_NAMED_FUNCTION(_wrap_new_vvpairUIntUInt);
ZEND_NAMED_FUNCTION(_wrap_vvpairUIntUInt_size);
ZEND_NAMED_FUNCTION(_wrap_vvpairUIntUInt_capacity);
ZEND_NAMED_FUNCTION(_wrap_vvpairUIntUInt_reserve);
ZEND_NAMED_FUNCTION(_wrap_vvpairUIntUInt_clear);
ZEND_NAMED_FUNCTION(_wrap_vvpairUIntUInt_push);
ZEND_NAMED_FUNCTION(_wrap_vvpairUIntUInt_is_empty);
ZEND_NAMED_FUNCTION(_wrap_vvpairUIntUInt_pop);
ZEND_NAMED_FUNCTION(_wrap_vvpairUIntUInt_get);
ZEND_NAMED_FUNCTION(_wrap_vvpairUIntUInt_set);
ZEND_NAMED_FUNCTION(_wrap_toAliasData);
ZEND_NAMED_FUNCTION(_wrap_toAngleData);
ZEND_NAMED_FUNCTION(_wrap_toAtomClassData);
ZEND_NAMED_FUNCTION(_wrap_toChiralData);
ZEND_NAMED_FUNCTION(_wrap_toCommentData);
ZEND_NAMED_FUNCTION(_wrap_toConformerData);
ZEND_NAMED_FUNCTION(_wrap_toExternalBondData);
ZEND_NAMED_FUNCTION(_wrap_toGridData);
ZEND_NAMED_FUNCTION(_wrap_toMatrixData);
ZEND_NAMED_FUNCTION(_wrap_toNasaThermoData);
ZEND_NAMED_FUNCTION(_wrap_toPairData);
ZEND_NAMED_FUNCTION(_wrap_toRateData);
ZEND_NAMED_FUNCTION(_wrap_toRotamerList);
ZEND_NAMED_FUNCTION(_wrap_toRotationData);
ZEND_NAMED_FUNCTION(_wrap_toSerialNums);
ZEND_NAMED_FUNCTION(_wrap_toSetData);
ZEND_NAMED_FUNCTION(_wrap_toSymmetryData);
ZEND_NAMED_FUNCTION(_wrap_toTorsionData);
ZEND_NAMED_FUNCTION(_wrap_toUnitCell);
ZEND_NAMED_FUNCTION(_wrap_toVectorData);
ZEND_NAMED_FUNCTION(_wrap_toVibrationData);
ZEND_NAMED_FUNCTION(_wrap_toVirtualBond);
ZEND_NAMED_FUNCTION(_wrap_new_OBGlobalDataBase);
ZEND_NAMED_FUNCTION(_wrap_OBGlobalDataBase_Init);
ZEND_NAMED_FUNCTION(_wrap_OBGlobalDataBase_GetSize);
ZEND_NAMED_FUNCTION(_wrap_OBGlobalDataBase_SetReadDirectory);
ZEND_NAMED_FUNCTION(_wrap_OBGlobalDataBase_SetEnvironmentVariable);
ZEND_NAMED_FUNCTION(_wrap_OBGlobalDataBase_ParseLine);
ZEND_NAMED_FUNCTION(_wrap_new_OBElement);
ZEND_NAMED_FUNCTION(_wrap_OBElement_GetAtomicNum);
ZEND_NAMED_FUNCTION(_wrap_OBElement_GetSymbol);
ZEND_NAMED_FUNCTION(_wrap_OBElement_GetCovalentRad);
ZEND_NAMED_FUNCTION(_wrap_OBElement_GetVdwRad);
ZEND_NAMED_FUNCTION(_wrap_OBElement_GetMass);
ZEND_NAMED_FUNCTION(_wrap_OBElement_GetMaxBonds);
ZEND_NAMED_FUNCTION(_wrap_OBElement_GetElectroNeg);
ZEND_NAMED_FUNCTION(_wrap_OBElement_GetAllredRochowElectroNeg);
ZEND_NAMED_FUNCTION(_wrap_OBElement_GetIonization);
ZEND_NAMED_FUNCTION(_wrap_OBElement_GetElectronAffinity);
ZEND_NAMED_FUNCTION(_wrap_OBElement_GetName);
ZEND_NAMED_FUNCTION(_wrap_OBElement_GetRed);
ZEND_NAMED_FUNCTION(_wrap_OBElement_GetGreen);
ZEND_NAMED_FUNCTION(_wrap_OBElement_GetBlue);
ZEND_NAMED_FUNCTION(_wrap_new_OBElementTable);
ZEND_NAMED_FUNCTION(_wrap_OBElementTable_GetNumberOfElements);
ZEND_NAMED_FUNCTION(_wrap_OBElementTable_GetAtomicNum);
ZEND_NAMED_FUNCTION(_wrap_OBElementTable_GetSymbol);
ZEND_NAMED_FUNCTION(_wrap_OBElementTable_GetVdwRad);
ZEND_NAMED_FUNCTION(_wrap_OBElementTable_GetCovalentRad);
ZEND_NAMED_FUNCTION(_wrap_OBElementTable_GetMass);
ZEND_NAMED_FUNCTION(_wrap_OBElementTable_CorrectedBondRad);
ZEND_NAMED_FUNCTION(_wrap_OBElementTable_CorrectedVdwRad);
ZEND_NAMED_FUNCTION(_wrap_OBElementTable_GetMaxBonds);
ZEND_NAMED_FUNCTION(_wrap_OBElementTable_GetElectroNeg);
ZEND_NAMED_FUNCTION(_wrap_OBElementTable_GetAllredRochowElectroNeg);
ZEND_NAMED_FUNCTION(_wrap_OBElementTable_GetIonization);
ZEND_NAMED_FUNCTION(_wrap_OBElementTable_GetElectronAffinity);
ZEND_NAMED_FUNCTION(_wrap_OBElementTable_GetRGB);
ZEND_NAMED_FUNCTION(_wrap_OBElementTable_GetName);
ZEND_NAMED_FUNCTION(_wrap_new_OBIsotopeTable);
ZEND_NAMED_FUNCTION(_wrap_OBIsotopeTable_GetExactMass);
ZEND_NAMED_FUNCTION(_wrap_new_OBAtomHOF);
ZEND_NAMED_FUNCTION(_wrap_OBAtomHOF_Element);
ZEND_NAMED_FUNCTION(_wrap_OBAtomHOF_Charge);
ZEND_NAMED_FUNCTION(_wrap_OBAtomHOF_Method);
ZEND_NAMED_FUNCTION(_wrap_OBAtomHOF_Desc);
ZEND_NAMED_FUNCTION(_wrap_OBAtomHOF_T);
ZEND_NAMED_FUNCTION(_wrap_OBAtomHOF_Value);
ZEND_NAMED_FUNCTION(_wrap_OBAtomHOF_Multiplicity);
ZEND_NAMED_FUNCTION(_wrap_OBAtomHOF_Unit);
ZEND_NAMED_FUNCTION(_wrap_new_OBAtomicHeatOfFormationTable);
ZEND_NAMED_FUNCTION(_wrap_OBAtomicHeatOfFormationTable_GetHeatOfFormation);
ZEND_NAMED_FUNCTION(_wrap_new_OBTypeTable);
ZEND_NAMED_FUNCTION(_wrap_OBTypeTable_SetFromType);
ZEND_NAMED_FUNCTION(_wrap_OBTypeTable_SetToType);
ZEND_NAMED_FUNCTION(_wrap_OBTypeTable_Translate);
ZEND_NAMED_FUNCTION(_wrap_OBTypeTable_GetFromType);
ZEND_NAMED_FUNCTION(_wrap_OBTypeTable_GetToType);
ZEND_NAMED_FUNCTION(_wrap_new_OBResidueData);
ZEND_NAMED_FUNCTION(_wrap_OBResidueData_SetResName);
ZEND_NAMED_FUNCTION(_wrap_OBResidueData_LookupBO);
ZEND_NAMED_FUNCTION(_wrap_OBResidueData_LookupType);
ZEND_NAMED_FUNCTION(_wrap_OBResidueData_AssignBonds);
ZEND_NAMED_FUNCTION(_wrap_DoubleType_hi_set);
ZEND_NAMED_FUNCTION(_wrap_DoubleType_hi_get);
ZEND_NAMED_FUNCTION(_wrap_DoubleType_lo_set);
ZEND_NAMED_FUNCTION(_wrap_DoubleType_lo_get);
ZEND_NAMED_FUNCTION(_wrap_new_DoubleType);
ZEND_NAMED_FUNCTION(_wrap_DoubleMultiply);
ZEND_NAMED_FUNCTION(_wrap_DoubleAdd);
ZEND_NAMED_FUNCTION(_wrap_DoubleModulus);
ZEND_NAMED_FUNCTION(_wrap_new_OBRandom);
ZEND_NAMED_FUNCTION(_wrap_OBRandom_Seed);
ZEND_NAMED_FUNCTION(_wrap_OBRandom_TimeSeed);
ZEND_NAMED_FUNCTION(_wrap_OBRandom_NextInt);
ZEND_NAMED_FUNCTION(_wrap_OBRandom_NextFloat);
ZEND_NAMED_FUNCTION(_wrap_OBStopwatch_Start);
ZEND_NAMED_FUNCTION(_wrap_OBStopwatch_Lap);
ZEND_NAMED_FUNCTION(_wrap_OBStopwatch_Elapsed);
ZEND_NAMED_FUNCTION(_wrap_new_OBStopwatch);
ZEND_NAMED_FUNCTION(_wrap_new_OBSqrtTbl);
ZEND_NAMED_FUNCTION(_wrap_OBSqrtTbl_Sqrt);
ZEND_NAMED_FUNCTION(_wrap_OBSqrtTbl_Init);
ZEND_NAMED_FUNCTION(_wrap_rotate_coords);
ZEND_NAMED_FUNCTION(_wrap_calc_rms);
ZEND_NAMED_FUNCTION(_wrap_new_vector3);
ZEND_NAMED_FUNCTION(_wrap_vector3_begin);
ZEND_NAMED_FUNCTION(_wrap_vector3_end);
ZEND_NAMED_FUNCTION(_wrap_vector3_Set);
ZEND_NAMED_FUNCTION(_wrap_vector3_SetX);
ZEND_NAMED_FUNCTION(_wrap_vector3_SetY);
ZEND_NAMED_FUNCTION(_wrap_vector3_SetZ);
ZEND_NAMED_FUNCTION(_wrap_vector3_GetX);
ZEND_NAMED_FUNCTION(_wrap_vector3_GetY);
ZEND_NAMED_FUNCTION(_wrap_vector3_GetZ);
ZEND_NAMED_FUNCTION(_wrap_vector3_Get);
ZEND_NAMED_FUNCTION(_wrap_vector3_AsArray);
ZEND_NAMED_FUNCTION(_wrap_vector3_add);
ZEND_NAMED_FUNCTION(_wrap_vector3_randomUnitVector);
ZEND_NAMED_FUNCTION(_wrap_vector3_normalize);
ZEND_NAMED_FUNCTION(_wrap_vector3_CanBeNormalized);
ZEND_NAMED_FUNCTION(_wrap_vector3_length_2);
ZEND_NAMED_FUNCTION(_wrap_vector3_length);
ZEND_NAMED_FUNCTION(_wrap_vector3_x);
ZEND_NAMED_FUNCTION(_wrap_vector3_y);
ZEND_NAMED_FUNCTION(_wrap_vector3_z);
ZEND_NAMED_FUNCTION(_wrap_vector3_IsApprox);
ZEND_NAMED_FUNCTION(_wrap_vector3_distSq);
ZEND_NAMED_FUNCTION(_wrap_vector3_createOrthoVector);
ZEND_NAMED_FUNCTION(_wrap_dot);
ZEND_NAMED_FUNCTION(_wrap_cross);
ZEND_NAMED_FUNCTION(_wrap_vectorAngle);
ZEND_NAMED_FUNCTION(_wrap_CalcTorsionAngle);
ZEND_NAMED_FUNCTION(_wrap_Point2PlaneSigned);
ZEND_NAMED_FUNCTION(_wrap_Point2Plane);
ZEND_NAMED_FUNCTION(_wrap_Point2PlaneAngle);
ZEND_NAMED_FUNCTION(_wrap_Point2Line);
ZEND_NAMED_FUNCTION(_wrap_VZero_get);
ZEND_NAMED_FUNCTION(_wrap_VX_get);
ZEND_NAMED_FUNCTION(_wrap_VY_get);
ZEND_NAMED_FUNCTION(_wrap_VZ_get);
ZEND_NAMED_FUNCTION(_wrap_new_matrix3x3);
ZEND_NAMED_FUNCTION(_wrap_matrix3x3_GetArray);
ZEND_NAMED_FUNCTION(_wrap_matrix3x3_inverse);
ZEND_NAMED_FUNCTION(_wrap_matrix3x3_transpose);
ZEND_NAMED_FUNCTION(_wrap_matrix3x3_randomRotation);
ZEND_NAMED_FUNCTION(_wrap_matrix3x3_determinant);
ZEND_NAMED_FUNCTION(_wrap_matrix3x3_isSymmetric);
ZEND_NAMED_FUNCTION(_wrap_matrix3x3_isOrthogonal);
ZEND_NAMED_FUNCTION(_wrap_matrix3x3_isDiagonal);
ZEND_NAMED_FUNCTION(_wrap_matrix3x3_isUnitMatrix);
ZEND_NAMED_FUNCTION(_wrap_matrix3x3_Get);
ZEND_NAMED_FUNCTION(_wrap_matrix3x3_Set);
ZEND_NAMED_FUNCTION(_wrap_matrix3x3_SetColumn);
ZEND_NAMED_FUNCTION(_wrap_matrix3x3_SetRow);
ZEND_NAMED_FUNCTION(_wrap_matrix3x3_GetColumn);
ZEND_NAMED_FUNCTION(_wrap_matrix3x3_GetRow);
ZEND_NAMED_FUNCTION(_wrap_matrix3x3_SetupRotMat);
ZEND_NAMED_FUNCTION(_wrap_matrix3x3_PlaneReflection);
ZEND_NAMED_FUNCTION(_wrap_matrix3x3_RotAboutAxisByAngle);
ZEND_NAMED_FUNCTION(_wrap_matrix3x3_FillOrth);
ZEND_NAMED_FUNCTION(_wrap_matrix3x3_findEigenvectorsIfSymmetric);
ZEND_NAMED_FUNCTION(_wrap_matrix3x3_jacobi);
ZEND_NAMED_FUNCTION(_wrap_new_transform3d);
ZEND_NAMED_FUNCTION(_wrap_transform3d_DescribeAsString);
ZEND_NAMED_FUNCTION(_wrap_transform3d_DescribeAsValues);
ZEND_NAMED_FUNCTION(_wrap_transform3d_Normalize);
ZEND_NAMED_FUNCTION(_wrap_new_SpaceGroup);
ZEND_NAMED_FUNCTION(_wrap_SpaceGroup_SetHMName);
ZEND_NAMED_FUNCTION(_wrap_SpaceGroup_SetHallName);
ZEND_NAMED_FUNCTION(_wrap_SpaceGroup_SetId);
ZEND_NAMED_FUNCTION(_wrap_SpaceGroup_AddTransform);
ZEND_NAMED_FUNCTION(_wrap_SpaceGroup_GetHMName);
ZEND_NAMED_FUNCTION(_wrap_SpaceGroup_GetHallName);
ZEND_NAMED_FUNCTION(_wrap_SpaceGroup_GetId);
ZEND_NAMED_FUNCTION(_wrap_SpaceGroup_GetOriginAlternative);
ZEND_NAMED_FUNCTION(_wrap_SpaceGroup_Transform);
ZEND_NAMED_FUNCTION(_wrap_SpaceGroup_BeginTransform);
ZEND_NAMED_FUNCTION(_wrap_SpaceGroup_NextTransform);
ZEND_NAMED_FUNCTION(_wrap_SpaceGroup_GetSpaceGroup);
ZEND_NAMED_FUNCTION(_wrap_SpaceGroup_Find);
ZEND_NAMED_FUNCTION(_wrap_SpaceGroup_IsValid);
ZEND_NAMED_FUNCTION(_wrap_OBReleaseVersion);
ZEND_NAMED_FUNCTION(_wrap_new_OBGenericData);
ZEND_NAMED_FUNCTION(_wrap_OBGenericData_c_Clone);
ZEND_NAMED_FUNCTION(_wrap_OBGenericData_SetAttribute);
ZEND_NAMED_FUNCTION(_wrap_OBGenericData_SetOrigin);
ZEND_NAMED_FUNCTION(_wrap_OBGenericData_GetAttribute);
ZEND_NAMED_FUNCTION(_wrap_OBGenericData_GetDataType);
ZEND_NAMED_FUNCTION(_wrap_OBGenericData_GetValue);
ZEND_NAMED_FUNCTION(_wrap_OBGenericData_GetOrigin);
ZEND_NAMED_FUNCTION(_wrap_OBBase_Clear);
ZEND_NAMED_FUNCTION(_wrap_OBBase_DoTransformations);
ZEND_NAMED_FUNCTION(_wrap_OBBase_ClassDescription);
ZEND_NAMED_FUNCTION(_wrap_OBBase_GetTitle);
ZEND_NAMED_FUNCTION(_wrap_OBBase_SetTitle);
ZEND_NAMED_FUNCTION(_wrap_OBBase_HasData);
ZEND_NAMED_FUNCTION(_wrap_OBBase_DeleteData);
ZEND_NAMED_FUNCTION(_wrap_OBBase_CloneData);
ZEND_NAMED_FUNCTION(_wrap_OBBase_DataSize);
ZEND_NAMED_FUNCTION(_wrap_OBBase_GetAllData);
ZEND_NAMED_FUNCTION(_wrap_OBBase_GetData);
ZEND_NAMED_FUNCTION(_wrap_OBBase_BeginData);
ZEND_NAMED_FUNCTION(_wrap_OBBase_EndData);
ZEND_NAMED_FUNCTION(_wrap_new_OBBase);
ZEND_NAMED_FUNCTION(_wrap_new_OBCommentData);
ZEND_NAMED_FUNCTION(_wrap_OBCommentData_SetData);
ZEND_NAMED_FUNCTION(_wrap_OBCommentData_GetData);
ZEND_NAMED_FUNCTION(_wrap_new_OBExternalBond);
ZEND_NAMED_FUNCTION(_wrap_OBExternalBond_GetIdx);
ZEND_NAMED_FUNCTION(_wrap_OBExternalBond_GetAtom);
ZEND_NAMED_FUNCTION(_wrap_OBExternalBond_GetBond);
ZEND_NAMED_FUNCTION(_wrap_OBExternalBond_SetIdx);
ZEND_NAMED_FUNCTION(_wrap_OBExternalBond_SetAtom);
ZEND_NAMED_FUNCTION(_wrap_OBExternalBond_SetBond);
ZEND_NAMED_FUNCTION(_wrap_new_OBExternalBondData);
ZEND_NAMED_FUNCTION(_wrap_OBExternalBondData_SetData);
ZEND_NAMED_FUNCTION(_wrap_OBExternalBondData_GetData);
ZEND_NAMED_FUNCTION(_wrap_new_OBPairData);
ZEND_NAMED_FUNCTION(_wrap_OBPairData_SetValue);
ZEND_NAMED_FUNCTION(_wrap_new_OBSetData);
ZEND_NAMED_FUNCTION(_wrap_OBSetData_AddData);
ZEND_NAMED_FUNCTION(_wrap_OBSetData_SetData);
ZEND_NAMED_FUNCTION(_wrap_OBSetData_GetData);
ZEND_NAMED_FUNCTION(_wrap_OBSetData_GetBegin);
ZEND_NAMED_FUNCTION(_wrap_OBSetData_GetEnd);
ZEND_NAMED_FUNCTION(_wrap_OBSetData_DeleteData);
ZEND_NAMED_FUNCTION(_wrap_new_OBVirtualBond);
ZEND_NAMED_FUNCTION(_wrap_OBVirtualBond_GetBgn);
ZEND_NAMED_FUNCTION(_wrap_OBVirtualBond_GetEnd);
ZEND_NAMED_FUNCTION(_wrap_OBVirtualBond_GetOrder);
ZEND_NAMED_FUNCTION(_wrap_OBVirtualBond_GetStereo);
ZEND_NAMED_FUNCTION(_wrap_new_OBRingData);
ZEND_NAMED_FUNCTION(_wrap_OBRingData_SetData);
ZEND_NAMED_FUNCTION(_wrap_OBRingData_PushBack);
ZEND_NAMED_FUNCTION(_wrap_OBRingData_GetData);
ZEND_NAMED_FUNCTION(_wrap_OBRingData_BeginRings);
ZEND_NAMED_FUNCTION(_wrap_OBRingData_EndRings);
ZEND_NAMED_FUNCTION(_wrap_OBRingData_BeginRing);
ZEND_NAMED_FUNCTION(_wrap_OBRingData_NextRing);
ZEND_NAMED_FUNCTION(_wrap_new_OBUnitCell);
ZEND_NAMED_FUNCTION(_wrap_OBUnitCell_SetData);
ZEND_NAMED_FUNCTION(_wrap_OBUnitCell_SetOffset);
ZEND_NAMED_FUNCTION(_wrap_OBUnitCell_SetSpaceGroup);
ZEND_NAMED_FUNCTION(_wrap_OBUnitCell_SetLatticeType);
ZEND_NAMED_FUNCTION(_wrap_OBUnitCell_FillUnitCell);
ZEND_NAMED_FUNCTION(_wrap_OBUnitCell_GetA);
ZEND_NAMED_FUNCTION(_wrap_OBUnitCell_GetB);
ZEND_NAMED_FUNCTION(_wrap_OBUnitCell_GetC);
ZEND_NAMED_FUNCTION(_wrap_OBUnitCell_GetAlpha);
ZEND_NAMED_FUNCTION(_wrap_OBUnitCell_GetBeta);
ZEND_NAMED_FUNCTION(_wrap_OBUnitCell_GetGamma);
ZEND_NAMED_FUNCTION(_wrap_OBUnitCell_GetOffset);
ZEND_NAMED_FUNCTION(_wrap_OBUnitCell_GetSpaceGroup);
ZEND_NAMED_FUNCTION(_wrap_OBUnitCell_GetSpaceGroupName);
ZEND_NAMED_FUNCTION(_wrap_OBUnitCell_GetLatticeType);
ZEND_NAMED_FUNCTION(_wrap_OBUnitCell_GetCellVectors);
ZEND_NAMED_FUNCTION(_wrap_OBUnitCell_GetCellMatrix);
ZEND_NAMED_FUNCTION(_wrap_OBUnitCell_GetOrthoMatrix);
ZEND_NAMED_FUNCTION(_wrap_OBUnitCell_GetOrientationMatrix);
ZEND_NAMED_FUNCTION(_wrap_OBUnitCell_GetFractionalMatrix);
ZEND_NAMED_FUNCTION(_wrap_OBUnitCell_FractionalToCartesian);
ZEND_NAMED_FUNCTION(_wrap_OBUnitCell_CartesianToFractional);
ZEND_NAMED_FUNCTION(_wrap_OBUnitCell_WrapCartesianCoordinate);
ZEND_NAMED_FUNCTION(_wrap_OBUnitCell_WrapFractionalCoordinate);
ZEND_NAMED_FUNCTION(_wrap_OBUnitCell_GetSpaceGroupNumber);
ZEND_NAMED_FUNCTION(_wrap_OBUnitCell_GetCellVolume);
ZEND_NAMED_FUNCTION(_wrap_new_OBConformerData);
ZEND_NAMED_FUNCTION(_wrap_OBConformerData_SetDimension);
ZEND_NAMED_FUNCTION(_wrap_OBConformerData_SetEnergies);
ZEND_NAMED_FUNCTION(_wrap_OBConformerData_SetForces);
ZEND_NAMED_FUNCTION(_wrap_OBConformerData_SetVelocities);
ZEND_NAMED_FUNCTION(_wrap_OBConformerData_SetDisplacements);
ZEND_NAMED_FUNCTION(_wrap_OBConformerData_SetData);
ZEND_NAMED_FUNCTION(_wrap_OBConformerData_GetDimension);
ZEND_NAMED_FUNCTION(_wrap_OBConformerData_GetEnergies);
ZEND_NAMED_FUNCTION(_wrap_OBConformerData_GetForces);
ZEND_NAMED_FUNCTION(_wrap_OBConformerData_GetVelocities);
ZEND_NAMED_FUNCTION(_wrap_OBConformerData_GetDisplacements);
ZEND_NAMED_FUNCTION(_wrap_OBConformerData_GetData);
ZEND_NAMED_FUNCTION(_wrap_new_OBSymmetryData);
ZEND_NAMED_FUNCTION(_wrap_OBSymmetryData_SetData);
ZEND_NAMED_FUNCTION(_wrap_OBSymmetryData_SetPointGroup);
ZEND_NAMED_FUNCTION(_wrap_OBSymmetryData_SetSpaceGroup);
ZEND_NAMED_FUNCTION(_wrap_OBSymmetryData_GetPointGroup);
ZEND_NAMED_FUNCTION(_wrap_OBSymmetryData_GetSpaceGroup);
ZEND_NAMED_FUNCTION(_wrap_new_OBTorsion);
ZEND_NAMED_FUNCTION(_wrap_OBTorsion_Clear);
ZEND_NAMED_FUNCTION(_wrap_OBTorsion_c_Empty);
ZEND_NAMED_FUNCTION(_wrap_OBTorsion_AddTorsion);
ZEND_NAMED_FUNCTION(_wrap_OBTorsion_SetAngle);
ZEND_NAMED_FUNCTION(_wrap_OBTorsion_SetData);
ZEND_NAMED_FUNCTION(_wrap_OBTorsion_GetAngle);
ZEND_NAMED_FUNCTION(_wrap_OBTorsion_GetBondIdx);
ZEND_NAMED_FUNCTION(_wrap_OBTorsion_GetSize);
ZEND_NAMED_FUNCTION(_wrap_OBTorsion_GetBC);
ZEND_NAMED_FUNCTION(_wrap_OBTorsion_GetADs);
ZEND_NAMED_FUNCTION(_wrap_OBTorsion_IsProtonRotor);
ZEND_NAMED_FUNCTION(_wrap_OBTorsionData_Clear);
ZEND_NAMED_FUNCTION(_wrap_OBTorsionData_GetData);
ZEND_NAMED_FUNCTION(_wrap_OBTorsionData_GetSize);
ZEND_NAMED_FUNCTION(_wrap_OBTorsionData_SetData);
ZEND_NAMED_FUNCTION(_wrap_OBTorsionData_FillTorsionArray);
ZEND_NAMED_FUNCTION(_wrap_new_OBAngle);
ZEND_NAMED_FUNCTION(_wrap_OBAngle_Clear);
ZEND_NAMED_FUNCTION(_wrap_OBAngle_GetAngle);
ZEND_NAMED_FUNCTION(_wrap_OBAngle_SetAngle);
ZEND_NAMED_FUNCTION(_wrap_OBAngle_SetAtoms);
ZEND_NAMED_FUNCTION(_wrap_OBAngleData_Clear);
ZEND_NAMED_FUNCTION(_wrap_OBAngleData_FillAngleArray);
ZEND_NAMED_FUNCTION(_wrap_OBAngleData_SetData);
ZEND_NAMED_FUNCTION(_wrap_OBAngleData_GetSize);
ZEND_NAMED_FUNCTION(_wrap_new_OBChiralData);
ZEND_NAMED_FUNCTION(_wrap_OBChiralData_Clear);
ZEND_NAMED_FUNCTION(_wrap_OBChiralData_GetAtom4Refs);
ZEND_NAMED_FUNCTION(_wrap_OBChiralData_GetAtomRef);
ZEND_NAMED_FUNCTION(_wrap_OBChiralData_SetAtom4Refs);
ZEND_NAMED_FUNCTION(_wrap_OBChiralData_AddAtomRef);
ZEND_NAMED_FUNCTION(_wrap_OBChiralData_GetSize);
ZEND_NAMED_FUNCTION(_wrap_new_OBSerialNums);
ZEND_NAMED_FUNCTION(_wrap_OBSerialNums_GetData);
ZEND_NAMED_FUNCTION(_wrap_OBSerialNums_SetData);
ZEND_NAMED_FUNCTION(_wrap_new_OBVibrationData);
ZEND_NAMED_FUNCTION(_wrap_OBVibrationData_SetData);
ZEND_NAMED_FUNCTION(_wrap_OBVibrationData_GetLx);
ZEND_NAMED_FUNCTION(_wrap_OBVibrationData_GetFrequencies);
ZEND_NAMED_FUNCTION(_wrap_OBVibrationData_GetIntensities);
ZEND_NAMED_FUNCTION(_wrap_OBVibrationData_GetRamanActivities);
ZEND_NAMED_FUNCTION(_wrap_OBVibrationData_GetNumberOfFrequencies);
ZEND_NAMED_FUNCTION(_wrap_new_OBDOSData);
ZEND_NAMED_FUNCTION(_wrap_OBDOSData_SetData);
ZEND_NAMED_FUNCTION(_wrap_OBDOSData_GetFermiEnergy);
ZEND_NAMED_FUNCTION(_wrap_OBDOSData_GetEnergies);
ZEND_NAMED_FUNCTION(_wrap_OBDOSData_GetDensities);
ZEND_NAMED_FUNCTION(_wrap_OBDOSData_GetIntegration);
ZEND_NAMED_FUNCTION(_wrap_OBOrbital_SetData);
ZEND_NAMED_FUNCTION(_wrap_OBOrbital_GetEnergy);
ZEND_NAMED_FUNCTION(_wrap_OBOrbital_GetOccupation);
ZEND_NAMED_FUNCTION(_wrap_OBOrbital_GetSymbol);
ZEND_NAMED_FUNCTION(_wrap_new_OBOrbital);
ZEND_NAMED_FUNCTION(_wrap_new_OBOrbitalData);
ZEND_NAMED_FUNCTION(_wrap_OBOrbitalData_SetAlphaOrbitals);
ZEND_NAMED_FUNCTION(_wrap_OBOrbitalData_SetBetaOrbitals);
ZEND_NAMED_FUNCTION(_wrap_OBOrbitalData_SetHOMO);
ZEND_NAMED_FUNCTION(_wrap_OBOrbitalData_SetOpenShell);
ZEND_NAMED_FUNCTION(_wrap_OBOrbitalData_IsOpenShell);
ZEND_NAMED_FUNCTION(_wrap_OBOrbitalData_GetAlphaHOMO);
ZEND_NAMED_FUNCTION(_wrap_OBOrbitalData_GetBetaHOMO);
ZEND_NAMED_FUNCTION(_wrap_OBOrbitalData_GetAlphaOrbitals);
ZEND_NAMED_FUNCTION(_wrap_OBOrbitalData_GetBetaOrbitals);
ZEND_NAMED_FUNCTION(_wrap_OBOrbitalData_LoadClosedShellOrbitals);
ZEND_NAMED_FUNCTION(_wrap_OBOrbitalData_LoadAlphaOrbitals);
ZEND_NAMED_FUNCTION(_wrap_OBOrbitalData_LoadBetaOrbitals);
ZEND_NAMED_FUNCTION(_wrap_new_OBElectronicTransitionData);
ZEND_NAMED_FUNCTION(_wrap_OBElectronicTransitionData_SetData);
ZEND_NAMED_FUNCTION(_wrap_OBElectronicTransitionData_SetEDipole);
ZEND_NAMED_FUNCTION(_wrap_OBElectronicTransitionData_SetRotatoryStrengthsVelocity);
ZEND_NAMED_FUNCTION(_wrap_OBElectronicTransitionData_SetRotatoryStrengthsLength);
ZEND_NAMED_FUNCTION(_wrap_OBElectronicTransitionData_GetWavelengths);
ZEND_NAMED_FUNCTION(_wrap_OBElectronicTransitionData_GetForces);
ZEND_NAMED_FUNCTION(_wrap_OBElectronicTransitionData_GetEDipole);
ZEND_NAMED_FUNCTION(_wrap_OBElectronicTransitionData_GetRotatoryStrengthsVelocity);
ZEND_NAMED_FUNCTION(_wrap_OBElectronicTransitionData_GetRotatoryStrengthsLength);
ZEND_NAMED_FUNCTION(_wrap_new_OBRotationData);
ZEND_NAMED_FUNCTION(_wrap_OBRotationData_SetData);
ZEND_NAMED_FUNCTION(_wrap_OBRotationData_GetRotConsts);
ZEND_NAMED_FUNCTION(_wrap_OBRotationData_GetSymmetryNumber);
ZEND_NAMED_FUNCTION(_wrap_OBRotationData_GetRotorType);
ZEND_NAMED_FUNCTION(_wrap_new_OBVectorData);
ZEND_NAMED_FUNCTION(_wrap_OBVectorData_SetData);
ZEND_NAMED_FUNCTION(_wrap_OBVectorData_GetData);
ZEND_NAMED_FUNCTION(_wrap_new_OBMatrixData);
ZEND_NAMED_FUNCTION(_wrap_OBMatrixData_SetData);
ZEND_NAMED_FUNCTION(_wrap_OBMatrixData_GetData);
ZEND_NAMED_FUNCTION(_wrap_new_OBFreeGridPoint);
ZEND_NAMED_FUNCTION(_wrap_OBFreeGridPoint_GetX);
ZEND_NAMED_FUNCTION(_wrap_OBFreeGridPoint_GetY);
ZEND_NAMED_FUNCTION(_wrap_OBFreeGridPoint_GetZ);
ZEND_NAMED_FUNCTION(_wrap_OBFreeGridPoint_GetV);
ZEND_NAMED_FUNCTION(_wrap_OBFreeGridPoint_SetX);
ZEND_NAMED_FUNCTION(_wrap_OBFreeGridPoint_SetY);
ZEND_NAMED_FUNCTION(_wrap_OBFreeGridPoint_SetZ);
ZEND_NAMED_FUNCTION(_wrap_OBFreeGridPoint_SetV);
ZEND_NAMED_FUNCTION(_wrap_new_OBFreeGrid);
ZEND_NAMED_FUNCTION(_wrap_OBFreeGrid_NumPoints);
ZEND_NAMED_FUNCTION(_wrap_OBFreeGrid_AddPoint);
ZEND_NAMED_FUNCTION(_wrap_OBFreeGrid_BeginPoints);
ZEND_NAMED_FUNCTION(_wrap_OBFreeGrid_EndPoints);
ZEND_NAMED_FUNCTION(_wrap_OBFreeGrid_BeginPoint);
ZEND_NAMED_FUNCTION(_wrap_OBFreeGrid_NextPoint);
ZEND_NAMED_FUNCTION(_wrap_new_OBGridData);
ZEND_NAMED_FUNCTION(_wrap_OBGridData_GetXAxis);
ZEND_NAMED_FUNCTION(_wrap_OBGridData_GetYAxis);
ZEND_NAMED_FUNCTION(_wrap_OBGridData_GetZAxis);
ZEND_NAMED_FUNCTION(_wrap_OBGridData_GetAxes);
ZEND_NAMED_FUNCTION(_wrap_OBGridData_GetNumberOfPoints);
ZEND_NAMED_FUNCTION(_wrap_OBGridData_GetNumberOfSteps);
ZEND_NAMED_FUNCTION(_wrap_OBGridData_GetValues);
ZEND_NAMED_FUNCTION(_wrap_OBGridData_GetValue);
ZEND_NAMED_FUNCTION(_wrap_OBGridData_GetUnit);
ZEND_NAMED_FUNCTION(_wrap_OBGridData_GetMinValue);
ZEND_NAMED_FUNCTION(_wrap_OBGridData_GetMaxValue);
ZEND_NAMED_FUNCTION(_wrap_OBGridData_GetOriginVector);
ZEND_NAMED_FUNCTION(_wrap_OBGridData_GetMaxVector);
ZEND_NAMED_FUNCTION(_wrap_OBGridData_GetUnrestricted);
ZEND_NAMED_FUNCTION(_wrap_OBGridData_GetNumSymmetries);
ZEND_NAMED_FUNCTION(_wrap_OBGridData_SetNumberOfPoints);
ZEND_NAMED_FUNCTION(_wrap_OBGridData_SetLimits);
ZEND_NAMED_FUNCTION(_wrap_OBGridData_SetValue);
ZEND_NAMED_FUNCTION(_wrap_OBGridData_SetValues);
ZEND_NAMED_FUNCTION(_wrap_OBGridData_SetUnit);
ZEND_NAMED_FUNCTION(_wrap_OBGridData_SetUnrestricted);
ZEND_NAMED_FUNCTION(_wrap_OBGridData_SetNumSymmetries);
ZEND_NAMED_FUNCTION(_wrap_new_OBChainsParser);
ZEND_NAMED_FUNCTION(_wrap_OBChainsParser_PerceiveChains);
ZEND_NAMED_FUNCTION(_wrap_new_OBAtomTyper);
ZEND_NAMED_FUNCTION(_wrap_OBAtomTyper_AssignHyb);
ZEND_NAMED_FUNCTION(_wrap_OBAtomTyper_AssignTypes);
ZEND_NAMED_FUNCTION(_wrap_OBAtomTyper_AssignImplicitValence);
ZEND_NAMED_FUNCTION(_wrap_OBAtomTyper_CorrectAromaticNitrogens);
ZEND_NAMED_FUNCTION(_wrap_new_OBAromaticTyper);
ZEND_NAMED_FUNCTION(_wrap_OBAromaticTyper_AssignAromaticFlags);
ZEND_NAMED_FUNCTION(_wrap_OBAromaticTyper_PropagatePotentialAromatic);
ZEND_NAMED_FUNCTION(_wrap_OBAromaticTyper_SelectRootAtoms);
ZEND_NAMED_FUNCTION(_wrap_OBAromaticTyper_ExcludeSmallRing);
ZEND_NAMED_FUNCTION(_wrap_OBAromaticTyper_CheckAromaticity);
ZEND_NAMED_FUNCTION(_wrap_OBAromaticTyper_TraverseCycle);
ZEND_NAMED_FUNCTION(_wrap_new_OBRingTyper);
ZEND_NAMED_FUNCTION(_wrap_OBRingTyper_AssignTypes);
ZEND_NAMED_FUNCTION(_wrap_new_dummy);
ZEND_NAMED_FUNCTION(_wrap_new_CharPtrLess);
ZEND_NAMED_FUNCTION(_wrap_OBPlugin_Description);
ZEND_NAMED_FUNCTION(_wrap_OBPlugin_TypeID);
ZEND_NAMED_FUNCTION(_wrap_OBPlugin_Display);
ZEND_NAMED_FUNCTION(_wrap_OBPlugin_MakeInstance);
ZEND_NAMED_FUNCTION(_wrap_OBPlugin_Init);
ZEND_NAMED_FUNCTION(_wrap_OBPlugin_GetPlugin);
ZEND_NAMED_FUNCTION(_wrap_OBPlugin_GetID);
ZEND_NAMED_FUNCTION(_wrap_OBPlugin_ListAsVector);
ZEND_NAMED_FUNCTION(_wrap_OBPlugin_c_List);
ZEND_NAMED_FUNCTION(_wrap_OBPlugin_ListAsString);
ZEND_NAMED_FUNCTION(_wrap_OBPlugin_FirstLine);
ZEND_NAMED_FUNCTION(_wrap_OBPlugin_Begin);
ZEND_NAMED_FUNCTION(_wrap_OBPlugin_End);
ZEND_NAMED_FUNCTION(_wrap_OBPlugin_GetMap);
ZEND_NAMED_FUNCTION(_wrap_OBPlugin_LoadAllPlugins);
ZEND_NAMED_FUNCTION(_wrap_new_stringbuf);
ZEND_NAMED_FUNCTION(_wrap_new_OBError);
ZEND_NAMED_FUNCTION(_wrap_OBError_message);
ZEND_NAMED_FUNCTION(_wrap_OBError_GetMethod);
ZEND_NAMED_FUNCTION(_wrap_OBError_GetError);
ZEND_NAMED_FUNCTION(_wrap_OBError_GetExplanation);
ZEND_NAMED_FUNCTION(_wrap_OBError_GetPossibleCause);
ZEND_NAMED_FUNCTION(_wrap_OBError_GetSuggestedRemedy);
ZEND_NAMED_FUNCTION(_wrap_OBError_GetLevel);
ZEND_NAMED_FUNCTION(_wrap_new_OBMessageHandler);
ZEND_NAMED_FUNCTION(_wrap_OBMessageHandler_ThrowError);
ZEND_NAMED_FUNCTION(_wrap_OBMessageHandler_GetMessagesOfLevel);
ZEND_NAMED_FUNCTION(_wrap_OBMessageHandler_StartLogging);
ZEND_NAMED_FUNCTION(_wrap_OBMessageHandler_StopLogging);
ZEND_NAMED_FUNCTION(_wrap_OBMessageHandler_SetMaxLogEntries);
ZEND_NAMED_FUNCTION(_wrap_OBMessageHandler_GetMaxLogEntries);
ZEND_NAMED_FUNCTION(_wrap_OBMessageHandler_ClearLog);
ZEND_NAMED_FUNCTION(_wrap_OBMessageHandler_SetOutputLevel);
ZEND_NAMED_FUNCTION(_wrap_OBMessageHandler_GetOutputLevel);
ZEND_NAMED_FUNCTION(_wrap_OBMessageHandler_SetOutputStream);
ZEND_NAMED_FUNCTION(_wrap_OBMessageHandler_GetOutputStream);
ZEND_NAMED_FUNCTION(_wrap_OBMessageHandler_StartErrorWrap);
ZEND_NAMED_FUNCTION(_wrap_OBMessageHandler_StopErrorWrap);
ZEND_NAMED_FUNCTION(_wrap_OBMessageHandler_GetErrorMessageCount);
ZEND_NAMED_FUNCTION(_wrap_OBMessageHandler_GetWarningMessageCount);
ZEND_NAMED_FUNCTION(_wrap_OBMessageHandler_GetInfoMessageCount);
ZEND_NAMED_FUNCTION(_wrap_OBMessageHandler_GetAuditMessageCount);
ZEND_NAMED_FUNCTION(_wrap_OBMessageHandler_GetDebugMessageCount);
ZEND_NAMED_FUNCTION(_wrap_OBMessageHandler_GetMessageSummary);
ZEND_NAMED_FUNCTION(_wrap_obErrorLog_set);
ZEND_NAMED_FUNCTION(_wrap_obErrorLog_get);
ZEND_NAMED_FUNCTION(_wrap_new_obLogBuf);
ZEND_NAMED_FUNCTION(_wrap_OBFormat_c_Default);
ZEND_NAMED_FUNCTION(_wrap_OBFormat_FindType);
ZEND_NAMED_FUNCTION(_wrap_OBFormat_ReadMolecule);
ZEND_NAMED_FUNCTION(_wrap_OBFormat_ReadChemObject);
ZEND_NAMED_FUNCTION(_wrap_OBFormat_WriteMolecule);
ZEND_NAMED_FUNCTION(_wrap_OBFormat_WriteChemObject);
ZEND_NAMED_FUNCTION(_wrap_OBFormat_TargetClassDescription);
ZEND_NAMED_FUNCTION(_wrap_OBFormat_GetType);
ZEND_NAMED_FUNCTION(_wrap_OBFormat_SpecificationURL);
ZEND_NAMED_FUNCTION(_wrap_OBFormat_GetMIMEType);
ZEND_NAMED_FUNCTION(_wrap_OBFormat_Flags);
ZEND_NAMED_FUNCTION(_wrap_OBFormat_SkipObjects);
ZEND_NAMED_FUNCTION(_wrap_OBFormat_MakeNewInstance);
ZEND_NAMED_FUNCTION(_wrap_OBFormat_RegisterFormat);
ZEND_NAMED_FUNCTION(_wrap_OBFormat_Display);
ZEND_NAMED_FUNCTION(_wrap_OBFormat_FormatFromMIME);
ZEND_NAMED_FUNCTION(_wrap_new_OBConversion);
ZEND_NAMED_FUNCTION(_wrap_OBConversion_RegisterFormat);
ZEND_NAMED_FUNCTION(_wrap_OBConversion_FindFormat);
ZEND_NAMED_FUNCTION(_wrap_OBConversion_FormatFromExt);
ZEND_NAMED_FUNCTION(_wrap_OBConversion_FormatFromMIME);
ZEND_NAMED_FUNCTION(_wrap_OBConversion_Description);
ZEND_NAMED_FUNCTION(_wrap_OBConversion_GetInStream);
ZEND_NAMED_FUNCTION(_wrap_OBConversion_GetOutStream);
ZEND_NAMED_FUNCTION(_wrap_OBConversion_SetInStream);
ZEND_NAMED_FUNCTION(_wrap_OBConversion_SetOutStream);
ZEND_NAMED_FUNCTION(_wrap_OBConversion_SetInAndOutFormats);
ZEND_NAMED_FUNCTION(_wrap_OBConversion_SetInFormat);
ZEND_NAMED_FUNCTION(_wrap_OBConversion_SetOutFormat);
ZEND_NAMED_FUNCTION(_wrap_OBConversion_GetInFormat);
ZEND_NAMED_FUNCTION(_wrap_OBConversion_GetOutFormat);
ZEND_NAMED_FUNCTION(_wrap_OBConversion_GetInGzipped);
ZEND_NAMED_FUNCTION(_wrap_OBConversion_GetOutGzipped);
ZEND_NAMED_FUNCTION(_wrap_OBConversion_GetInFilename);
ZEND_NAMED_FUNCTION(_wrap_OBConversion_GetOutFilename);
ZEND_NAMED_FUNCTION(_wrap_OBConversion_GetInPos);
ZEND_NAMED_FUNCTION(_wrap_OBConversion_GetInLen);
ZEND_NAMED_FUNCTION(_wrap_OBConversion_GetTitle);
ZEND_NAMED_FUNCTION(_wrap_OBConversion_GetAuxConv);
ZEND_NAMED_FUNCTION(_wrap_OBConversion_SetAuxConv);
ZEND_NAMED_FUNCTION(_wrap_OBConversion_IsOption);
ZEND_NAMED_FUNCTION(_wrap_OBConversion_GetOptions);
ZEND_NAMED_FUNCTION(_wrap_OBConversion_AddOption);
ZEND_NAMED_FUNCTION(_wrap_OBConversion_RemoveOption);
ZEND_NAMED_FUNCTION(_wrap_OBConversion_SetOptions);
ZEND_NAMED_FUNCTION(_wrap_OBConversion_RegisterOptionParam);
ZEND_NAMED_FUNCTION(_wrap_OBConversion_GetOptionParams);
ZEND_NAMED_FUNCTION(_wrap_OBConversion_CopyOptions);
ZEND_NAMED_FUNCTION(_wrap_OBConversion_GetSupportedInputFormat);
ZEND_NAMED_FUNCTION(_wrap_OBConversion_GetSupportedOutputFormat);
ZEND_NAMED_FUNCTION(_wrap_OBConversion_Convert);
ZEND_NAMED_FUNCTION(_wrap_OBConversion_FullConvert);
ZEND_NAMED_FUNCTION(_wrap_OBConversion_AddChemObject);
ZEND_NAMED_FUNCTION(_wrap_OBConversion_GetChemObject);
ZEND_NAMED_FUNCTION(_wrap_OBConversion_IsLast);
ZEND_NAMED_FUNCTION(_wrap_OBConversion_IsFirstInput);
ZEND_NAMED_FUNCTION(_wrap_OBConversion_SetFirstInput);
ZEND_NAMED_FUNCTION(_wrap_OBConversion_GetOutputIndex);
ZEND_NAMED_FUNCTION(_wrap_OBConversion_SetOutputIndex);
ZEND_NAMED_FUNCTION(_wrap_OBConversion_SetMoreFilesToCome);
ZEND_NAMED_FUNCTION(_wrap_OBConversion_SetOneObjectOnly);
ZEND_NAMED_FUNCTION(_wrap_OBConversion_SetLast);
ZEND_NAMED_FUNCTION(_wrap_OBConversion_IsLastFile);
ZEND_NAMED_FUNCTION(_wrap_OBConversion_GetCount);
ZEND_NAMED_FUNCTION(_wrap_OBConversion_GetDefaultFormat);
ZEND_NAMED_FUNCTION(_wrap_OBConversion_Write);
ZEND_NAMED_FUNCTION(_wrap_OBConversion_WriteString);
ZEND_NAMED_FUNCTION(_wrap_OBConversion_WriteFile);
ZEND_NAMED_FUNCTION(_wrap_OBConversion_CloseOutFile);
ZEND_NAMED_FUNCTION(_wrap_OBConversion_Read);
ZEND_NAMED_FUNCTION(_wrap_OBConversion_ReadString);
ZEND_NAMED_FUNCTION(_wrap_OBConversion_ReadFile);
ZEND_NAMED_FUNCTION(_wrap_OBConversion_OpenInAndOutFiles);
ZEND_NAMED_FUNCTION(_wrap_OBConversion_ReportNumberConverted);
ZEND_NAMED_FUNCTION(_wrap_OBConversion_NumInputObjects);
ZEND_NAMED_FUNCTION(_wrap_new_OBResidue);
ZEND_NAMED_FUNCTION(_wrap_OBResidue_AddAtom);
ZEND_NAMED_FUNCTION(_wrap_OBResidue_InsertAtom);
ZEND_NAMED_FUNCTION(_wrap_OBResidue_RemoveAtom);
ZEND_NAMED_FUNCTION(_wrap_OBResidue_SetName);
ZEND_NAMED_FUNCTION(_wrap_OBResidue_SetNum);
ZEND_NAMED_FUNCTION(_wrap_OBResidue_SetChain);
ZEND_NAMED_FUNCTION(_wrap_OBResidue_SetChainNum);
ZEND_NAMED_FUNCTION(_wrap_OBResidue_SetIdx);
ZEND_NAMED_FUNCTION(_wrap_OBResidue_SetInsertionCode);
ZEND_NAMED_FUNCTION(_wrap_OBResidue_SetAtomID);
ZEND_NAMED_FUNCTION(_wrap_OBResidue_SetHetAtom);
ZEND_NAMED_FUNCTION(_wrap_OBResidue_SetSerialNum);
ZEND_NAMED_FUNCTION(_wrap_OBResidue_GetName);
ZEND_NAMED_FUNCTION(_wrap_OBResidue_GetNum);
ZEND_NAMED_FUNCTION(_wrap_OBResidue_GetNumString);
ZEND_NAMED_FUNCTION(_wrap_OBResidue_GetNumAtoms);
ZEND_NAMED_FUNCTION(_wrap_OBResidue_GetChain);
ZEND_NAMED_FUNCTION(_wrap_OBResidue_GetChainNum);
ZEND_NAMED_FUNCTION(_wrap_OBResidue_GetIdx);
ZEND_NAMED_FUNCTION(_wrap_OBResidue_GetResKey);
ZEND_NAMED_FUNCTION(_wrap_OBResidue_GetAtoms);
ZEND_NAMED_FUNCTION(_wrap_OBResidue_GetBonds);
ZEND_NAMED_FUNCTION(_wrap_OBResidue_GetAtomID);
ZEND_NAMED_FUNCTION(_wrap_OBResidue_GetSerialNum);
ZEND_NAMED_FUNCTION(_wrap_OBResidue_GetInsertionCode);
ZEND_NAMED_FUNCTION(_wrap_OBResidue_GetAminoAcidProperty);
ZEND_NAMED_FUNCTION(_wrap_OBResidue_GetAtomProperty);
ZEND_NAMED_FUNCTION(_wrap_OBResidue_GetResidueProperty);
ZEND_NAMED_FUNCTION(_wrap_OBResidue_IsHetAtom);
ZEND_NAMED_FUNCTION(_wrap_OBResidue_IsResidueType);
ZEND_NAMED_FUNCTION(_wrap_OBResidue_BeginAtoms);
ZEND_NAMED_FUNCTION(_wrap_OBResidue_EndAtoms);
ZEND_NAMED_FUNCTION(_wrap_OBResidue_BeginAtom);
ZEND_NAMED_FUNCTION(_wrap_OBResidue_NextAtom);
ZEND_NAMED_FUNCTION(_wrap_Residue_set);
ZEND_NAMED_FUNCTION(_wrap_Residue_get);
ZEND_NAMED_FUNCTION(_wrap_ElemDesc_set);
ZEND_NAMED_FUNCTION(_wrap_ElemDesc_get);
ZEND_NAMED_FUNCTION(_wrap_ResNo_set);
ZEND_NAMED_FUNCTION(_wrap_ResNo_get);
ZEND_NAMED_FUNCTION(_wrap_ElemNo_set);
ZEND_NAMED_FUNCTION(_wrap_ElemNo_get);
ZEND_NAMED_FUNCTION(_wrap_OBInternalCoord__a_set);
ZEND_NAMED_FUNCTION(_wrap_OBInternalCoord__a_get);
ZEND_NAMED_FUNCTION(_wrap_OBInternalCoord__b_set);
ZEND_NAMED_FUNCTION(_wrap_OBInternalCoord__b_get);
ZEND_NAMED_FUNCTION(_wrap_OBInternalCoord__c_set);
ZEND_NAMED_FUNCTION(_wrap_OBInternalCoord__c_get);
ZEND_NAMED_FUNCTION(_wrap_OBInternalCoord__dst_set);
ZEND_NAMED_FUNCTION(_wrap_OBInternalCoord__dst_get);
ZEND_NAMED_FUNCTION(_wrap_OBInternalCoord__ang_set);
ZEND_NAMED_FUNCTION(_wrap_OBInternalCoord__ang_get);
ZEND_NAMED_FUNCTION(_wrap_OBInternalCoord__tor_set);
ZEND_NAMED_FUNCTION(_wrap_OBInternalCoord__tor_get);
ZEND_NAMED_FUNCTION(_wrap_new_OBInternalCoord);
ZEND_NAMED_FUNCTION(_wrap_OBAtom_Visit_set);
ZEND_NAMED_FUNCTION(_wrap_OBAtom_Visit_get);
ZEND_NAMED_FUNCTION(_wrap_new_OBAtom);
ZEND_NAMED_FUNCTION(_wrap_OBAtom_Duplicate);
ZEND_NAMED_FUNCTION(_wrap_OBAtom_SetIdx);
ZEND_NAMED_FUNCTION(_wrap_OBAtom_SetId);
ZEND_NAMED_FUNCTION(_wrap_OBAtom_SetHyb);
ZEND_NAMED_FUNCTION(_wrap_OBAtom_SetAtomicNum);
ZEND_NAMED_FUNCTION(_wrap_OBAtom_SetIsotope);
ZEND_NAMED_FUNCTION(_wrap_OBAtom_SetImplicitValence);
ZEND_NAMED_FUNCTION(_wrap_OBAtom_IncrementImplicitValence);
ZEND_NAMED_FUNCTION(_wrap_OBAtom_DecrementImplicitValence);
ZEND_NAMED_FUNCTION(_wrap_OBAtom_SetFormalCharge);
ZEND_NAMED_FUNCTION(_wrap_OBAtom_SetSpinMultiplicity);
ZEND_NAMED_FUNCTION(_wrap_OBAtom_SetType);
ZEND_NAMED_FUNCTION(_wrap_OBAtom_SetPartialCharge);
ZEND_NAMED_FUNCTION(_wrap_OBAtom_SetCoordPtr);
ZEND_NAMED_FUNCTION(_wrap_OBAtom_SetVector);
ZEND_NAMED_FUNCTION(_wrap_OBAtom_SetResidue);
ZEND_NAMED_FUNCTION(_wrap_OBAtom_SetParent);
ZEND_NAMED_FUNCTION(_wrap_OBAtom_SetAromatic);
ZEND_NAMED_FUNCTION(_wrap_OBAtom_UnsetAromatic);
ZEND_NAMED_FUNCTION(_wrap_OBAtom_SetClockwiseStereo);
ZEND_NAMED_FUNCTION(_wrap_OBAtom_SetAntiClockwiseStereo);
ZEND_NAMED_FUNCTION(_wrap_OBAtom_SetPositiveStereo);
ZEND_NAMED_FUNCTION(_wrap_OBAtom_SetNegativeStereo);
ZEND_NAMED_FUNCTION(_wrap_OBAtom_UnsetStereo);
ZEND_NAMED_FUNCTION(_wrap_OBAtom_SetInRing);
ZEND_NAMED_FUNCTION(_wrap_OBAtom_SetChiral);
ZEND_NAMED_FUNCTION(_wrap_OBAtom_ClearCoordPtr);
ZEND_NAMED_FUNCTION(_wrap_OBAtom_GetFormalCharge);
ZEND_NAMED_FUNCTION(_wrap_OBAtom_GetAtomicNum);
ZEND_NAMED_FUNCTION(_wrap_OBAtom_GetIsotope);
ZEND_NAMED_FUNCTION(_wrap_OBAtom_GetSpinMultiplicity);
ZEND_NAMED_FUNCTION(_wrap_OBAtom_GetAtomicMass);
ZEND_NAMED_FUNCTION(_wrap_OBAtom_GetExactMass);
ZEND_NAMED_FUNCTION(_wrap_OBAtom_GetIdx);
ZEND_NAMED_FUNCTION(_wrap_OBAtom_GetIndex);
ZEND_NAMED_FUNCTION(_wrap_OBAtom_GetId);
ZEND_NAMED_FUNCTION(_wrap_OBAtom_GetCoordinateIdx);
ZEND_NAMED_FUNCTION(_wrap_OBAtom_GetCIdx);
ZEND_NAMED_FUNCTION(_wrap_OBAtom_GetValence);
ZEND_NAMED_FUNCTION(_wrap_OBAtom_GetHyb);
ZEND_NAMED_FUNCTION(_wrap_OBAtom_GetImplicitValence);
ZEND_NAMED_FUNCTION(_wrap_OBAtom_GetHvyValence);
ZEND_NAMED_FUNCTION(_wrap_OBAtom_GetHeteroValence);
ZEND_NAMED_FUNCTION(_wrap_OBAtom_GetType);
ZEND_NAMED_FUNCTION(_wrap_OBAtom_GetX);
ZEND_NAMED_FUNCTION(_wrap_OBAtom_GetY);
ZEND_NAMED_FUNCTION(_wrap_OBAtom_GetZ);
ZEND_NAMED_FUNCTION(_wrap_OBAtom_x);
ZEND_NAMED_FUNCTION(_wrap_OBAtom_y);
ZEND_NAMED_FUNCTION(_wrap_OBAtom_z);
ZEND_NAMED_FUNCTION(_wrap_OBAtom_GetCoordinate);
ZEND_NAMED_FUNCTION(_wrap_OBAtom_GetVector);
ZEND_NAMED_FUNCTION(_wrap_OBAtom_GetPartialCharge);
ZEND_NAMED_FUNCTION(_wrap_OBAtom_GetResidue);
ZEND_NAMED_FUNCTION(_wrap_OBAtom_GetParent);
ZEND_NAMED_FUNCTION(_wrap_OBAtom_GetNewBondVector);
ZEND_NAMED_FUNCTION(_wrap_OBAtom_GetBond);
ZEND_NAMED_FUNCTION(_wrap_OBAtom_GetNextAtom);
ZEND_NAMED_FUNCTION(_wrap_OBAtom_BeginBonds);
ZEND_NAMED_FUNCTION(_wrap_OBAtom_EndBonds);
ZEND_NAMED_FUNCTION(_wrap_OBAtom_BeginBond);
ZEND_NAMED_FUNCTION(_wrap_OBAtom_NextBond);
ZEND_NAMED_FUNCTION(_wrap_OBAtom_BeginNbrAtom);
ZEND_NAMED_FUNCTION(_wrap_OBAtom_NextNbrAtom);
ZEND_NAMED_FUNCTION(_wrap_OBAtom_GetDistance);
ZEND_NAMED_FUNCTION(_wrap_OBAtom_GetAngle);
ZEND_NAMED_FUNCTION(_wrap_OBAtom_NewResidue);
ZEND_NAMED_FUNCTION(_wrap_OBAtom_AddResidue);
ZEND_NAMED_FUNCTION(_wrap_OBAtom_DeleteResidue);
ZEND_NAMED_FUNCTION(_wrap_OBAtom_AddBond);
ZEND_NAMED_FUNCTION(_wrap_OBAtom_InsertBond);
ZEND_NAMED_FUNCTION(_wrap_OBAtom_DeleteBond);
ZEND_NAMED_FUNCTION(_wrap_OBAtom_ClearBond);
ZEND_NAMED_FUNCTION(_wrap_OBAtom_HtoMethyl);
ZEND_NAMED_FUNCTION(_wrap_OBAtom_SetHybAndGeom);
ZEND_NAMED_FUNCTION(_wrap_OBAtom_ForceNoH);
ZEND_NAMED_FUNCTION(_wrap_OBAtom_HasNoHForced);
ZEND_NAMED_FUNCTION(_wrap_OBAtom_ForceImplH);
ZEND_NAMED_FUNCTION(_wrap_OBAtom_HasImplHForced);
ZEND_NAMED_FUNCTION(_wrap_OBAtom_CountFreeOxygens);
ZEND_NAMED_FUNCTION(_wrap_OBAtom_CountFreeSulfurs);
ZEND_NAMED_FUNCTION(_wrap_OBAtom_ImplicitHydrogenCount);
ZEND_NAMED_FUNCTION(_wrap_OBAtom_ExplicitHydrogenCount);
ZEND_NAMED_FUNCTION(_wrap_OBAtom_MemberOfRingCount);
ZEND_NAMED_FUNCTION(_wrap_OBAtom_MemberOfRingSize);
ZEND_NAMED_FUNCTION(_wrap_OBAtom_CountRingBonds);
ZEND_NAMED_FUNCTION(_wrap_OBAtom_SmallestBondAngle);
ZEND_NAMED_FUNCTION(_wrap_OBAtom_AverageBondAngle);
ZEND_NAMED_FUNCTION(_wrap_OBAtom_BOSum);
ZEND_NAMED_FUNCTION(_wrap_OBAtom_KBOSum);
ZEND_NAMED_FUNCTION(_wrap_OBAtom_LewisAcidBaseCounts);
ZEND_NAMED_FUNCTION(_wrap_OBAtom_HasResidue);
ZEND_NAMED_FUNCTION(_wrap_OBAtom_IsHetAtom);
ZEND_NAMED_FUNCTION(_wrap_OBAtom_IsHydrogen);
ZEND_NAMED_FUNCTION(_wrap_OBAtom_IsCarbon);
ZEND_NAMED_FUNCTION(_wrap_OBAtom_IsNitrogen);
ZEND_NAMED_FUNCTION(_wrap_OBAtom_IsOxygen);
ZEND_NAMED_FUNCTION(_wrap_OBAtom_IsSulfur);
ZEND_NAMED_FUNCTION(_wrap_OBAtom_IsPhosphorus);
ZEND_NAMED_FUNCTION(_wrap_OBAtom_IsAromatic);
ZEND_NAMED_FUNCTION(_wrap_OBAtom_IsInRing);
ZEND_NAMED_FUNCTION(_wrap_OBAtom_IsInRingSize);
ZEND_NAMED_FUNCTION(_wrap_OBAtom_IsHeteroatom);
ZEND_NAMED_FUNCTION(_wrap_OBAtom_IsNotCorH);
ZEND_NAMED_FUNCTION(_wrap_OBAtom_IsConnected);
ZEND_NAMED_FUNCTION(_wrap_OBAtom_IsOneThree);
ZEND_NAMED_FUNCTION(_wrap_OBAtom_IsOneFour);
ZEND_NAMED_FUNCTION(_wrap_OBAtom_IsCarboxylOxygen);
ZEND_NAMED_FUNCTION(_wrap_OBAtom_IsPhosphateOxygen);
ZEND_NAMED_FUNCTION(_wrap_OBAtom_IsSulfateOxygen);
ZEND_NAMED_FUNCTION(_wrap_OBAtom_IsNitroOxygen);
ZEND_NAMED_FUNCTION(_wrap_OBAtom_IsAmideNitrogen);
ZEND_NAMED_FUNCTION(_wrap_OBAtom_IsPolarHydrogen);
ZEND_NAMED_FUNCTION(_wrap_OBAtom_IsNonPolarHydrogen);
ZEND_NAMED_FUNCTION(_wrap_OBAtom_IsAromaticNOxide);
ZEND_NAMED_FUNCTION(_wrap_OBAtom_IsChiral);
ZEND_NAMED_FUNCTION(_wrap_OBAtom_IsAxial);
ZEND_NAMED_FUNCTION(_wrap_OBAtom_IsClockwise);
ZEND_NAMED_FUNCTION(_wrap_OBAtom_IsAntiClockwise);
ZEND_NAMED_FUNCTION(_wrap_OBAtom_IsPositiveStereo);
ZEND_NAMED_FUNCTION(_wrap_OBAtom_IsNegativeStereo);
ZEND_NAMED_FUNCTION(_wrap_OBAtom_HasChiralitySpecified);
ZEND_NAMED_FUNCTION(_wrap_OBAtom_HasChiralVolume);
ZEND_NAMED_FUNCTION(_wrap_OBAtom_IsHbondAcceptor);
ZEND_NAMED_FUNCTION(_wrap_OBAtom_IsHbondAcceptorSimple);
ZEND_NAMED_FUNCTION(_wrap_OBAtom_IsHbondDonor);
ZEND_NAMED_FUNCTION(_wrap_OBAtom_IsHbondDonorH);
ZEND_NAMED_FUNCTION(_wrap_OBAtom_IsMetal);
ZEND_NAMED_FUNCTION(_wrap_OBAtom_HasAlphaBetaUnsat);
ZEND_NAMED_FUNCTION(_wrap_OBAtom_HasBondOfOrder);
ZEND_NAMED_FUNCTION(_wrap_OBAtom_CountBondsOfOrder);
ZEND_NAMED_FUNCTION(_wrap_OBAtom_HighestBondOrder);
ZEND_NAMED_FUNCTION(_wrap_OBAtom_HasNonSingleBond);
ZEND_NAMED_FUNCTION(_wrap_OBAtom_HasSingleBond);
ZEND_NAMED_FUNCTION(_wrap_OBAtom_HasDoubleBond);
ZEND_NAMED_FUNCTION(_wrap_OBAtom_HasAromaticBond);
ZEND_NAMED_FUNCTION(_wrap_OBAtom_MatchesSMARTS);
ZEND_NAMED_FUNCTION(_wrap_OBBond_Visit_set);
ZEND_NAMED_FUNCTION(_wrap_OBBond_Visit_get);
ZEND_NAMED_FUNCTION(_wrap_new_OBBond);
ZEND_NAMED_FUNCTION(_wrap_OBBond_SetIdx);
ZEND_NAMED_FUNCTION(_wrap_OBBond_SetId);
ZEND_NAMED_FUNCTION(_wrap_OBBond_SetBO);
ZEND_NAMED_FUNCTION(_wrap_OBBond_SetBondOrder);
ZEND_NAMED_FUNCTION(_wrap_OBBond_SetBegin);
ZEND_NAMED_FUNCTION(_wrap_OBBond_SetEnd);
ZEND_NAMED_FUNCTION(_wrap_OBBond_SetParent);
ZEND_NAMED_FUNCTION(_wrap_OBBond_SetLength);
ZEND_NAMED_FUNCTION(_wrap_OBBond_Set);
ZEND_NAMED_FUNCTION(_wrap_OBBond_SetKSingle);
ZEND_NAMED_FUNCTION(_wrap_OBBond_SetKDouble);
ZEND_NAMED_FUNCTION(_wrap_OBBond_SetKTriple);
ZEND_NAMED_FUNCTION(_wrap_OBBond_SetAromatic);
ZEND_NAMED_FUNCTION(_wrap_OBBond_SetWedge);
ZEND_NAMED_FUNCTION(_wrap_OBBond_SetHash);
ZEND_NAMED_FUNCTION(_wrap_OBBond_SetWedgeOrHash);
ZEND_NAMED_FUNCTION(_wrap_OBBond_SetUp);
ZEND_NAMED_FUNCTION(_wrap_OBBond_SetDown);
ZEND_NAMED_FUNCTION(_wrap_OBBond_SetInRing);
ZEND_NAMED_FUNCTION(_wrap_OBBond_SetClosure);
ZEND_NAMED_FUNCTION(_wrap_OBBond_UnsetHash);
ZEND_NAMED_FUNCTION(_wrap_OBBond_UnsetWedge);
ZEND_NAMED_FUNCTION(_wrap_OBBond_UnsetUp);
ZEND_NAMED_FUNCTION(_wrap_OBBond_UnsetDown);
ZEND_NAMED_FUNCTION(_wrap_OBBond_UnsetAromatic);
ZEND_NAMED_FUNCTION(_wrap_OBBond_UnsetKekule);
ZEND_NAMED_FUNCTION(_wrap_OBBond_GetIdx);
ZEND_NAMED_FUNCTION(_wrap_OBBond_GetId);
ZEND_NAMED_FUNCTION(_wrap_OBBond_GetBO);
ZEND_NAMED_FUNCTION(_wrap_OBBond_GetBondOrder);
ZEND_NAMED_FUNCTION(_wrap_OBBond_GetFlags);
ZEND_NAMED_FUNCTION(_wrap_OBBond_GetBeginAtomIdx);
ZEND_NAMED_FUNCTION(_wrap_OBBond_GetEndAtomIdx);
ZEND_NAMED_FUNCTION(_wrap_OBBond_GetBeginAtom);
ZEND_NAMED_FUNCTION(_wrap_OBBond_GetEndAtom);
ZEND_NAMED_FUNCTION(_wrap_OBBond_GetNbrAtom);
ZEND_NAMED_FUNCTION(_wrap_OBBond_GetParent);
ZEND_NAMED_FUNCTION(_wrap_OBBond_GetEquibLength);
ZEND_NAMED_FUNCTION(_wrap_OBBond_GetLength);
ZEND_NAMED_FUNCTION(_wrap_OBBond_GetNbrAtomIdx);
ZEND_NAMED_FUNCTION(_wrap_OBBond_FindSmallestRing);
ZEND_NAMED_FUNCTION(_wrap_OBBond_IsAromatic);
ZEND_NAMED_FUNCTION(_wrap_OBBond_IsInRing);
ZEND_NAMED_FUNCTION(_wrap_OBBond_IsRotor);
ZEND_NAMED_FUNCTION(_wrap_OBBond_IsAmide);
ZEND_NAMED_FUNCTION(_wrap_OBBond_IsPrimaryAmide);
ZEND_NAMED_FUNCTION(_wrap_OBBond_IsSecondaryAmide);
ZEND_NAMED_FUNCTION(_wrap_OBBond_IsTertiaryAmide);
ZEND_NAMED_FUNCTION(_wrap_OBBond_IsEster);
ZEND_NAMED_FUNCTION(_wrap_OBBond_IsCarbonyl);
ZEND_NAMED_FUNCTION(_wrap_OBBond_IsSingle);
ZEND_NAMED_FUNCTION(_wrap_OBBond_IsDouble);
ZEND_NAMED_FUNCTION(_wrap_OBBond_IsTriple);
ZEND_NAMED_FUNCTION(_wrap_OBBond_IsKSingle);
ZEND_NAMED_FUNCTION(_wrap_OBBond_IsKDouble);
ZEND_NAMED_FUNCTION(_wrap_OBBond_IsKTriple);
ZEND_NAMED_FUNCTION(_wrap_OBBond_IsClosure);
ZEND_NAMED_FUNCTION(_wrap_OBBond_IsUp);
ZEND_NAMED_FUNCTION(_wrap_OBBond_IsDown);
ZEND_NAMED_FUNCTION(_wrap_OBBond_IsWedge);
ZEND_NAMED_FUNCTION(_wrap_OBBond_IsHash);
ZEND_NAMED_FUNCTION(_wrap_OBBond_IsWedgeOrHash);
ZEND_NAMED_FUNCTION(_wrap_OBBond_IsCisOrTrans);
ZEND_NAMED_FUNCTION(_wrap_OBBond_IsDoubleBondGeometry);
ZEND_NAMED_FUNCTION(_wrap_new_OBReaction);
ZEND_NAMED_FUNCTION(_wrap_OBReaction_NumReactants);
ZEND_NAMED_FUNCTION(_wrap_OBReaction_NumProducts);
ZEND_NAMED_FUNCTION(_wrap_OBReaction_AddReactant);
ZEND_NAMED_FUNCTION(_wrap_OBReaction_AddProduct);
ZEND_NAMED_FUNCTION(_wrap_OBReaction_SetTransitionState);
ZEND_NAMED_FUNCTION(_wrap_OBReaction_AddAgent);
ZEND_NAMED_FUNCTION(_wrap_OBReaction_GetReactant);
ZEND_NAMED_FUNCTION(_wrap_OBReaction_GetProduct);
ZEND_NAMED_FUNCTION(_wrap_OBReaction_GetTransitionState);
ZEND_NAMED_FUNCTION(_wrap_OBReaction_GetAgent);
ZEND_NAMED_FUNCTION(_wrap_OBReaction_GetTitle);
ZEND_NAMED_FUNCTION(_wrap_OBReaction_GetComment);
ZEND_NAMED_FUNCTION(_wrap_OBReaction_SetTitle);
ZEND_NAMED_FUNCTION(_wrap_OBReaction_SetComment);
ZEND_NAMED_FUNCTION(_wrap_OBReaction_IsReversible);
ZEND_NAMED_FUNCTION(_wrap_OBReaction_SetReversible);
ZEND_NAMED_FUNCTION(_wrap_OBReaction_ClassDescription);
ZEND_NAMED_FUNCTION(_wrap_new_OBMol);
ZEND_NAMED_FUNCTION(_wrap_OBMol_add);
ZEND_NAMED_FUNCTION(_wrap_OBMol_ReserveAtoms);
ZEND_NAMED_FUNCTION(_wrap_OBMol_CreateAtom);
ZEND_NAMED_FUNCTION(_wrap_OBMol_CreateBond);
ZEND_NAMED_FUNCTION(_wrap_OBMol_CreateResidue);
ZEND_NAMED_FUNCTION(_wrap_OBMol_DestroyAtom);
ZEND_NAMED_FUNCTION(_wrap_OBMol_DestroyBond);
ZEND_NAMED_FUNCTION(_wrap_OBMol_DestroyResidue);
ZEND_NAMED_FUNCTION(_wrap_OBMol_AddAtom);
ZEND_NAMED_FUNCTION(_wrap_OBMol_InsertAtom);
ZEND_NAMED_FUNCTION(_wrap_OBMol_AddBond);
ZEND_NAMED_FUNCTION(_wrap_OBMol_AddResidue);
ZEND_NAMED_FUNCTION(_wrap_OBMol_NewAtom);
ZEND_NAMED_FUNCTION(_wrap_OBMol_NewBond);
ZEND_NAMED_FUNCTION(_wrap_OBMol_NewResidue);
ZEND_NAMED_FUNCTION(_wrap_OBMol_DeleteAtom);
ZEND_NAMED_FUNCTION(_wrap_OBMol_DeleteBond);
ZEND_NAMED_FUNCTION(_wrap_OBMol_DeleteResidue);
ZEND_NAMED_FUNCTION(_wrap_OBMol_BeginModify);
ZEND_NAMED_FUNCTION(_wrap_OBMol_EndModify);
ZEND_NAMED_FUNCTION(_wrap_OBMol_GetMod);
ZEND_NAMED_FUNCTION(_wrap_OBMol_IncrementMod);
ZEND_NAMED_FUNCTION(_wrap_OBMol_DecrementMod);
ZEND_NAMED_FUNCTION(_wrap_OBMol_GetFlags);
ZEND_NAMED_FUNCTION(_wrap_OBMol_GetTitle);
ZEND_NAMED_FUNCTION(_wrap_OBMol_NumAtoms);
ZEND_NAMED_FUNCTION(_wrap_OBMol_NumBonds);
ZEND_NAMED_FUNCTION(_wrap_OBMol_NumHvyAtoms);
ZEND_NAMED_FUNCTION(_wrap_OBMol_NumResidues);
ZEND_NAMED_FUNCTION(_wrap_OBMol_NumRotors);
ZEND_NAMED_FUNCTION(_wrap_OBMol_GetAtom);
ZEND_NAMED_FUNCTION(_wrap_OBMol_GetAtomById);
ZEND_NAMED_FUNCTION(_wrap_OBMol_GetFirstAtom);
ZEND_NAMED_FUNCTION(_wrap_OBMol_GetBondById);
ZEND_NAMED_FUNCTION(_wrap_OBMol_GetBond);
ZEND_NAMED_FUNCTION(_wrap_OBMol_GetResidue);
ZEND_NAMED_FUNCTION(_wrap_OBMol_GetInternalCoord);
ZEND_NAMED_FUNCTION(_wrap_OBMol_GetTorsion);
ZEND_NAMED_FUNCTION(_wrap_OBMol_GetAngle);
ZEND_NAMED_FUNCTION(_wrap_OBMol_AreInSameRing);
ZEND_NAMED_FUNCTION(_wrap_OBMol_GetFormula);
ZEND_NAMED_FUNCTION(_wrap_OBMol_GetSpacedFormula);
ZEND_NAMED_FUNCTION(_wrap_OBMol_GetMolWt);
ZEND_NAMED_FUNCTION(_wrap_OBMol_GetExactMass);
ZEND_NAMED_FUNCTION(_wrap_OBMol_GetTotalCharge);
ZEND_NAMED_FUNCTION(_wrap_OBMol_GetTotalSpinMultiplicity);
ZEND_NAMED_FUNCTION(_wrap_OBMol_GetDimension);
ZEND_NAMED_FUNCTION(_wrap_OBMol_GetCoordinates);
ZEND_NAMED_FUNCTION(_wrap_OBMol_GetSSSR);
ZEND_NAMED_FUNCTION(_wrap_OBMol_GetLSSR);
ZEND_NAMED_FUNCTION(_wrap_OBMol_AutomaticFormalCharge);
ZEND_NAMED_FUNCTION(_wrap_OBMol_AutomaticPartialCharge);
ZEND_NAMED_FUNCTION(_wrap_OBMol_SetTitle);
ZEND_NAMED_FUNCTION(_wrap_OBMol_SetFormula);
ZEND_NAMED_FUNCTION(_wrap_OBMol_SetEnergy);
ZEND_NAMED_FUNCTION(_wrap_OBMol_SetDimension);
ZEND_NAMED_FUNCTION(_wrap_OBMol_SetTotalCharge);
ZEND_NAMED_FUNCTION(_wrap_OBMol_SetTotalSpinMultiplicity);
ZEND_NAMED_FUNCTION(_wrap_OBMol_SetInternalCoord);
ZEND_NAMED_FUNCTION(_wrap_OBMol_SetAutomaticFormalCharge);
ZEND_NAMED_FUNCTION(_wrap_OBMol_SetAutomaticPartialCharge);
ZEND_NAMED_FUNCTION(_wrap_OBMol_SetAromaticPerceived);
ZEND_NAMED_FUNCTION(_wrap_OBMol_SetSSSRPerceived);
ZEND_NAMED_FUNCTION(_wrap_OBMol_SetLSSRPerceived);
ZEND_NAMED_FUNCTION(_wrap_OBMol_SetRingAtomsAndBondsPerceived);
ZEND_NAMED_FUNCTION(_wrap_OBMol_SetAtomTypesPerceived);
ZEND_NAMED_FUNCTION(_wrap_OBMol_SetRingTypesPerceived);
ZEND_NAMED_FUNCTION(_wrap_OBMol_SetChainsPerceived);
ZEND_NAMED_FUNCTION(_wrap_OBMol_SetChiralityPerceived);
ZEND_NAMED_FUNCTION(_wrap_OBMol_SetPartialChargesPerceived);
ZEND_NAMED_FUNCTION(_wrap_OBMol_SetHybridizationPerceived);
ZEND_NAMED_FUNCTION(_wrap_OBMol_SetImplicitValencePerceived);
ZEND_NAMED_FUNCTION(_wrap_OBMol_SetKekulePerceived);
ZEND_NAMED_FUNCTION(_wrap_OBMol_SetClosureBondsPerceived);
ZEND_NAMED_FUNCTION(_wrap_OBMol_SetHydrogensAdded);
ZEND_NAMED_FUNCTION(_wrap_OBMol_SetCorrectedForPH);
ZEND_NAMED_FUNCTION(_wrap_OBMol_SetAromaticCorrected);
ZEND_NAMED_FUNCTION(_wrap_OBMol_SetSpinMultiplicityAssigned);
ZEND_NAMED_FUNCTION(_wrap_OBMol_SetFlags);
ZEND_NAMED_FUNCTION(_wrap_OBMol_UnsetAromaticPerceived);
ZEND_NAMED_FUNCTION(_wrap_OBMol_UnsetSSSRPerceived);
ZEND_NAMED_FUNCTION(_wrap_OBMol_UnsetLSSRPerceived);
ZEND_NAMED_FUNCTION(_wrap_OBMol_UnsetRingTypesPerceived);
ZEND_NAMED_FUNCTION(_wrap_OBMol_UnsetPartialChargesPerceived);
ZEND_NAMED_FUNCTION(_wrap_OBMol_UnsetImplicitValencePerceived);
ZEND_NAMED_FUNCTION(_wrap_OBMol_UnsetHydrogensAdded);
ZEND_NAMED_FUNCTION(_wrap_OBMol_UnsetFlag);
ZEND_NAMED_FUNCTION(_wrap_OBMol_ClassDescription);
ZEND_NAMED_FUNCTION(_wrap_OBMol_RenumberAtoms);
ZEND_NAMED_FUNCTION(_wrap_OBMol_SetCoordinates);
ZEND_NAMED_FUNCTION(_wrap_OBMol_ToInertialFrame);
ZEND_NAMED_FUNCTION(_wrap_OBMol_Translate);
ZEND_NAMED_FUNCTION(_wrap_OBMol_Rotate);
ZEND_NAMED_FUNCTION(_wrap_OBMol_Kekulize);
ZEND_NAMED_FUNCTION(_wrap_OBMol_PerceiveKekuleBonds);
ZEND_NAMED_FUNCTION(_wrap_OBMol_NewPerceiveKekuleBonds);
ZEND_NAMED_FUNCTION(_wrap_OBMol_DeleteHydrogens);
ZEND_NAMED_FUNCTION(_wrap_OBMol_DeletePolarHydrogens);
ZEND_NAMED_FUNCTION(_wrap_OBMol_DeleteNonPolarHydrogens);
ZEND_NAMED_FUNCTION(_wrap_OBMol_DeleteHydrogen);
ZEND_NAMED_FUNCTION(_wrap_OBMol_AddHydrogens);
ZEND_NAMED_FUNCTION(_wrap_OBMol_AddPolarHydrogens);
ZEND_NAMED_FUNCTION(_wrap_OBMol_AddNonPolarHydrogens);
ZEND_NAMED_FUNCTION(_wrap_OBMol_AddNewHydrogens);
ZEND_NAMED_FUNCTION(_wrap_OBMol_StripSalts);
ZEND_NAMED_FUNCTION(_wrap_OBMol_Separate);
ZEND_NAMED_FUNCTION(_wrap_OBMol_GetNextFragment);
ZEND_NAMED_FUNCTION(_wrap_OBMol_ConvertDativeBonds);
ZEND_NAMED_FUNCTION(_wrap_OBMol_MakeDativeBonds);
ZEND_NAMED_FUNCTION(_wrap_OBMol_ConvertZeroBonds);
ZEND_NAMED_FUNCTION(_wrap_OBMol_CorrectForPH);
ZEND_NAMED_FUNCTION(_wrap_OBMol_AssignSpinMultiplicity);
ZEND_NAMED_FUNCTION(_wrap_OBMol_AssignTotalChargeToAtoms);
ZEND_NAMED_FUNCTION(_wrap_OBMol_SetIsPatternStructure);
ZEND_NAMED_FUNCTION(_wrap_OBMol_Center);
ZEND_NAMED_FUNCTION(_wrap_OBMol_FindSSSR);
ZEND_NAMED_FUNCTION(_wrap_OBMol_FindLSSR);
ZEND_NAMED_FUNCTION(_wrap_OBMol_FindRingAtomsAndBonds);
ZEND_NAMED_FUNCTION(_wrap_OBMol_FindChiralCenters);
ZEND_NAMED_FUNCTION(_wrap_OBMol_FindChildren);
ZEND_NAMED_FUNCTION(_wrap_OBMol_FindLargestFragment);
ZEND_NAMED_FUNCTION(_wrap_OBMol_ContigFragList);
ZEND_NAMED_FUNCTION(_wrap_OBMol_Align);
ZEND_NAMED_FUNCTION(_wrap_OBMol_ConnectTheDots);
ZEND_NAMED_FUNCTION(_wrap_OBMol_PerceiveBondOrders);
ZEND_NAMED_FUNCTION(_wrap_OBMol_FindAngles);
ZEND_NAMED_FUNCTION(_wrap_OBMol_FindTorsions);
ZEND_NAMED_FUNCTION(_wrap_OBMol_GetGTDVector);
ZEND_NAMED_FUNCTION(_wrap_OBMol_GetGIVector);
ZEND_NAMED_FUNCTION(_wrap_OBMol_GetGIDVector);
ZEND_NAMED_FUNCTION(_wrap_OBMol_Has2D);
ZEND_NAMED_FUNCTION(_wrap_OBMol_Has3D);
ZEND_NAMED_FUNCTION(_wrap_OBMol_HasNonZeroCoords);
ZEND_NAMED_FUNCTION(_wrap_OBMol_HasAromaticPerceived);
ZEND_NAMED_FUNCTION(_wrap_OBMol_HasSSSRPerceived);
ZEND_NAMED_FUNCTION(_wrap_OBMol_HasLSSRPerceived);
ZEND_NAMED_FUNCTION(_wrap_OBMol_HasRingAtomsAndBondsPerceived);
ZEND_NAMED_FUNCTION(_wrap_OBMol_HasAtomTypesPerceived);
ZEND_NAMED_FUNCTION(_wrap_OBMol_HasRingTypesPerceived);
ZEND_NAMED_FUNCTION(_wrap_OBMol_HasChiralityPerceived);
ZEND_NAMED_FUNCTION(_wrap_OBMol_HasPartialChargesPerceived);
ZEND_NAMED_FUNCTION(_wrap_OBMol_HasHybridizationPerceived);
ZEND_NAMED_FUNCTION(_wrap_OBMol_HasImplicitValencePerceived);
ZEND_NAMED_FUNCTION(_wrap_OBMol_HasKekulePerceived);
ZEND_NAMED_FUNCTION(_wrap_OBMol_HasClosureBondsPerceived);
ZEND_NAMED_FUNCTION(_wrap_OBMol_HasChainsPerceived);
ZEND_NAMED_FUNCTION(_wrap_OBMol_HasHydrogensAdded);
ZEND_NAMED_FUNCTION(_wrap_OBMol_HasAromaticCorrected);
ZEND_NAMED_FUNCTION(_wrap_OBMol_IsCorrectedForPH);
ZEND_NAMED_FUNCTION(_wrap_OBMol_HasSpinMultiplicityAssigned);
ZEND_NAMED_FUNCTION(_wrap_OBMol_IsChiral);
ZEND_NAMED_FUNCTION(_wrap_OBMol_c_Empty);
ZEND_NAMED_FUNCTION(_wrap_OBMol_NumConformers);
ZEND_NAMED_FUNCTION(_wrap_OBMol_SetConformers);
ZEND_NAMED_FUNCTION(_wrap_OBMol_AddConformer);
ZEND_NAMED_FUNCTION(_wrap_OBMol_SetConformer);
ZEND_NAMED_FUNCTION(_wrap_OBMol_CopyConformer);
ZEND_NAMED_FUNCTION(_wrap_OBMol_DeleteConformer);
ZEND_NAMED_FUNCTION(_wrap_OBMol_GetConformer);
ZEND_NAMED_FUNCTION(_wrap_OBMol_SetEnergies);
ZEND_NAMED_FUNCTION(_wrap_OBMol_GetEnergies);
ZEND_NAMED_FUNCTION(_wrap_OBMol_GetEnergy);
ZEND_NAMED_FUNCTION(_wrap_OBMol_BeginConformer);
ZEND_NAMED_FUNCTION(_wrap_OBMol_NextConformer);
ZEND_NAMED_FUNCTION(_wrap_OBMol_GetConformers);
ZEND_NAMED_FUNCTION(_wrap_OBMol_BeginInternalCoord);
ZEND_NAMED_FUNCTION(_wrap_OBMol_NextInternalCoord);
ZEND_NAMED_FUNCTION(_wrap_OBMol_SetTorsion);
ZEND_NAMED_FUNCTION(_wrap_ThrowError);
ZEND_NAMED_FUNCTION(_wrap_CartesianToInternal);
ZEND_NAMED_FUNCTION(_wrap_InternalToCartesian);
ZEND_NAMED_FUNCTION(_wrap_NewExtension);
ZEND_NAMED_FUNCTION(_wrap_etab_set);
ZEND_NAMED_FUNCTION(_wrap_etab_get);
ZEND_NAMED_FUNCTION(_wrap_ttab_set);
ZEND_NAMED_FUNCTION(_wrap_ttab_get);
ZEND_NAMED_FUNCTION(_wrap_isotab_set);
ZEND_NAMED_FUNCTION(_wrap_isotab_get);
ZEND_NAMED_FUNCTION(_wrap_aromtyper_set);
ZEND_NAMED_FUNCTION(_wrap_aromtyper_get);
ZEND_NAMED_FUNCTION(_wrap_atomtyper_set);
ZEND_NAMED_FUNCTION(_wrap_atomtyper_get);
ZEND_NAMED_FUNCTION(_wrap_chainsparser_set);
ZEND_NAMED_FUNCTION(_wrap_chainsparser_get);
ZEND_NAMED_FUNCTION(_wrap_resdat_set);
ZEND_NAMED_FUNCTION(_wrap_resdat_get);
ZEND_NAMED_FUNCTION(_wrap_NoId_get);
ZEND_NAMED_FUNCTION(_wrap_get_rmat);
ZEND_NAMED_FUNCTION(_wrap_ob_make_rmat);
ZEND_NAMED_FUNCTION(_wrap_qtrfit);
ZEND_NAMED_FUNCTION(_wrap_superimpose);
ZEND_NAMED_FUNCTION(_wrap_OBRing_ring_id_set);
ZEND_NAMED_FUNCTION(_wrap_OBRing_ring_id_get);
ZEND_NAMED_FUNCTION(_wrap_OBRing__path_set);
ZEND_NAMED_FUNCTION(_wrap_OBRing__path_get);
ZEND_NAMED_FUNCTION(_wrap_OBRing__pathset_set);
ZEND_NAMED_FUNCTION(_wrap_OBRing__pathset_get);
ZEND_NAMED_FUNCTION(_wrap_new_OBRing);
ZEND_NAMED_FUNCTION(_wrap_OBRing_Size);
ZEND_NAMED_FUNCTION(_wrap_OBRing_PathSize);
ZEND_NAMED_FUNCTION(_wrap_OBRing_IsAromatic);
ZEND_NAMED_FUNCTION(_wrap_OBRing_SetType);
ZEND_NAMED_FUNCTION(_wrap_OBRing_GetType);
ZEND_NAMED_FUNCTION(_wrap_OBRing_GetRootAtom);
ZEND_NAMED_FUNCTION(_wrap_OBRing_IsMember);
ZEND_NAMED_FUNCTION(_wrap_OBRing_IsInRing);
ZEND_NAMED_FUNCTION(_wrap_OBRing_SetParent);
ZEND_NAMED_FUNCTION(_wrap_OBRing_GetParent);
ZEND_NAMED_FUNCTION(_wrap_OBRing_findCenterAndNormal);
ZEND_NAMED_FUNCTION(_wrap_CompareRingSize);
ZEND_NAMED_FUNCTION(_wrap_new_OBRingSearch);
ZEND_NAMED_FUNCTION(_wrap_OBRingSearch_SortRings);
ZEND_NAMED_FUNCTION(_wrap_OBRingSearch_RemoveRedundant);
ZEND_NAMED_FUNCTION(_wrap_OBRingSearch_AddRingFromClosure);
ZEND_NAMED_FUNCTION(_wrap_OBRingSearch_SaveUniqueRing);
ZEND_NAMED_FUNCTION(_wrap_OBRingSearch_WriteRings);
ZEND_NAMED_FUNCTION(_wrap_OBRingSearch_BeginRings);
ZEND_NAMED_FUNCTION(_wrap_OBRingSearch_EndRings);
ZEND_NAMED_FUNCTION(_wrap_new_OBRTree);
ZEND_NAMED_FUNCTION(_wrap_OBRTree_GetAtomIdx);
ZEND_NAMED_FUNCTION(_wrap_OBRTree_PathToRoot);
ZEND_NAMED_FUNCTION(_wrap_new_OBSmartsPattern);
ZEND_NAMED_FUNCTION(_wrap_OBSmartsPattern_Init);
ZEND_NAMED_FUNCTION(_wrap_OBSmartsPattern_GetSMARTS);
ZEND_NAMED_FUNCTION(_wrap_OBSmartsPattern_c_Empty);
ZEND_NAMED_FUNCTION(_wrap_OBSmartsPattern_IsValid);
ZEND_NAMED_FUNCTION(_wrap_OBSmartsPattern_NumAtoms);
ZEND_NAMED_FUNCTION(_wrap_OBSmartsPattern_NumBonds);
ZEND_NAMED_FUNCTION(_wrap_OBSmartsPattern_GetBond);
ZEND_NAMED_FUNCTION(_wrap_OBSmartsPattern_GetAtomicNum);
ZEND_NAMED_FUNCTION(_wrap_OBSmartsPattern_GetCharge);
ZEND_NAMED_FUNCTION(_wrap_OBSmartsPattern_GetVectorBinding);
ZEND_NAMED_FUNCTION(_wrap_OBSmartsPattern_Match);
ZEND_NAMED_FUNCTION(_wrap_OBSmartsPattern_HasMatch);
ZEND_NAMED_FUNCTION(_wrap_OBSmartsPattern_RestrictedMatch);
ZEND_NAMED_FUNCTION(_wrap_OBSmartsPattern_NumMatches);
ZEND_NAMED_FUNCTION(_wrap_OBSmartsPattern_GetMapList);
ZEND_NAMED_FUNCTION(_wrap_OBSmartsPattern_BeginMList);
ZEND_NAMED_FUNCTION(_wrap_OBSmartsPattern_EndMList);
ZEND_NAMED_FUNCTION(_wrap_OBSmartsPattern_GetUMapList);
ZEND_NAMED_FUNCTION(_wrap_OBSmartsPattern_WriteMapList);
ZEND_NAMED_FUNCTION(_wrap_new_OBSmartsMatcher);
ZEND_NAMED_FUNCTION(_wrap_OBSmartsMatcher_match);
ZEND_NAMED_FUNCTION(_wrap_new_OBSSMatch);
ZEND_NAMED_FUNCTION(_wrap_OBSSMatch_Match);
ZEND_NAMED_FUNCTION(_wrap_SmartsLexReplace);
ZEND_NAMED_FUNCTION(_wrap_AliasDataType_get);
ZEND_NAMED_FUNCTION(_wrap_new_AliasData);
ZEND_NAMED_FUNCTION(_wrap_AliasData_SetAlias);
ZEND_NAMED_FUNCTION(_wrap_AliasData_GetAlias);
ZEND_NAMED_FUNCTION(_wrap_AliasData_GetColor);
ZEND_NAMED_FUNCTION(_wrap_AliasData_SetColor);
ZEND_NAMED_FUNCTION(_wrap_AliasData_IsExpanded);
ZEND_NAMED_FUNCTION(_wrap_AliasData_RevertToAliasForm);
ZEND_NAMED_FUNCTION(_wrap_AliasData_Expand);
ZEND_NAMED_FUNCTION(_wrap_new_OBAtomClassData);
ZEND_NAMED_FUNCTION(_wrap_OBAtomClassData_Clear);
ZEND_NAMED_FUNCTION(_wrap_OBAtomClassData_Add);
ZEND_NAMED_FUNCTION(_wrap_OBAtomClassData_HasClass);
ZEND_NAMED_FUNCTION(_wrap_OBAtomClassData_GetClass);
ZEND_NAMED_FUNCTION(_wrap_OBAtomClassData_GetClassString);
ZEND_NAMED_FUNCTION(_wrap_OBAtomClassData_size);
ZEND_NAMED_FUNCTION(_wrap_OBFingerprint_c_Default);
ZEND_NAMED_FUNCTION(_wrap_OBFingerprint_FindType);
ZEND_NAMED_FUNCTION(_wrap_OBFingerprint_SetBit);
ZEND_NAMED_FUNCTION(_wrap_OBFingerprint_GetBit);
ZEND_NAMED_FUNCTION(_wrap_OBFingerprint_Fold);
ZEND_NAMED_FUNCTION(_wrap_OBFingerprint_GetFingerprint);
ZEND_NAMED_FUNCTION(_wrap_OBFingerprint_Flags);
ZEND_NAMED_FUNCTION(_wrap_OBFingerprint_SetFlags);
ZEND_NAMED_FUNCTION(_wrap_OBFingerprint_DescribeBits);
ZEND_NAMED_FUNCTION(_wrap_OBFingerprint_Tanimoto);
ZEND_NAMED_FUNCTION(_wrap_OBFingerprint_Getbitsperint);
ZEND_NAMED_FUNCTION(_wrap_OBFingerprint_FindFingerprint);
ZEND_NAMED_FUNCTION(_wrap_FptIndexHeader_headerlength_set);
ZEND_NAMED_FUNCTION(_wrap_FptIndexHeader_headerlength_get);
ZEND_NAMED_FUNCTION(_wrap_FptIndexHeader_nEntries_set);
ZEND_NAMED_FUNCTION(_wrap_FptIndexHeader_nEntries_get);
ZEND_NAMED_FUNCTION(_wrap_FptIndexHeader_words_set);
ZEND_NAMED_FUNCTION(_wrap_FptIndexHeader_words_get);
ZEND_NAMED_FUNCTION(_wrap_FptIndexHeader_fpid_set);
ZEND_NAMED_FUNCTION(_wrap_FptIndexHeader_fpid_get);
ZEND_NAMED_FUNCTION(_wrap_FptIndexHeader_datafilename_set);
ZEND_NAMED_FUNCTION(_wrap_FptIndexHeader_datafilename_get);
ZEND_NAMED_FUNCTION(_wrap_new_FptIndexHeader);
ZEND_NAMED_FUNCTION(_wrap_FastSearch_ReadIndexFile);
ZEND_NAMED_FUNCTION(_wrap_FastSearch_ReadIndex);
ZEND_NAMED_FUNCTION(_wrap_FastSearch_Find);
ZEND_NAMED_FUNCTION(_wrap_FastSearch_FindMatch);
ZEND_NAMED_FUNCTION(_wrap_FastSearch_FindSimilar);
ZEND_NAMED_FUNCTION(_wrap_FastSearch_GetFingerprint);
ZEND_NAMED_FUNCTION(_wrap_FastSearch_GetIndexHeader);
ZEND_NAMED_FUNCTION(_wrap_new_FastSearch);
ZEND_NAMED_FUNCTION(_wrap_new_FastSearchIndexer);
ZEND_NAMED_FUNCTION(_wrap_FastSearchIndexer_Add);
ZEND_NAMED_FUNCTION(_wrap_OBDescriptor_c_Default);
ZEND_NAMED_FUNCTION(_wrap_new_OBDescriptor);
ZEND_NAMED_FUNCTION(_wrap_OBDescriptor_FindType);
ZEND_NAMED_FUNCTION(_wrap_OBDescriptor_Predict);
ZEND_NAMED_FUNCTION(_wrap_OBDescriptor_PredictAndSave);
ZEND_NAMED_FUNCTION(_wrap_OBDescriptor_GetStringValue);
ZEND_NAMED_FUNCTION(_wrap_OBDescriptor_Compare);
ZEND_NAMED_FUNCTION(_wrap_OBDescriptor_Display);
ZEND_NAMED_FUNCTION(_wrap_OBDescriptor_Order);
ZEND_NAMED_FUNCTION(_wrap_OBDescriptor_FilterCompare);
ZEND_NAMED_FUNCTION(_wrap_OBDescriptor_AddProperties);
ZEND_NAMED_FUNCTION(_wrap_OBDescriptor_DeleteProperties);
ZEND_NAMED_FUNCTION(_wrap_OBDescriptor_GetValues);
ZEND_NAMED_FUNCTION(_wrap_OBDescriptor_GetIdentifier);
ZEND_NAMED_FUNCTION(_wrap_new_LineSearchType);
ZEND_NAMED_FUNCTION(_wrap_OBFFParameter_a_set);
ZEND_NAMED_FUNCTION(_wrap_OBFFParameter_a_get);
ZEND_NAMED_FUNCTION(_wrap_OBFFParameter_b_set);
ZEND_NAMED_FUNCTION(_wrap_OBFFParameter_b_get);
ZEND_NAMED_FUNCTION(_wrap_OBFFParameter_c_set);
ZEND_NAMED_FUNCTION(_wrap_OBFFParameter_c_get);
ZEND_NAMED_FUNCTION(_wrap_OBFFParameter_d_set);
ZEND_NAMED_FUNCTION(_wrap_OBFFParameter_d_get);
ZEND_NAMED_FUNCTION(_wrap_OBFFParameter__a_set);
ZEND_NAMED_FUNCTION(_wrap_OBFFParameter__a_get);
ZEND_NAMED_FUNCTION(_wrap_OBFFParameter__b_set);
ZEND_NAMED_FUNCTION(_wrap_OBFFParameter__b_get);
ZEND_NAMED_FUNCTION(_wrap_OBFFParameter__c_set);
ZEND_NAMED_FUNCTION(_wrap_OBFFParameter__c_get);
ZEND_NAMED_FUNCTION(_wrap_OBFFParameter__d_set);
ZEND_NAMED_FUNCTION(_wrap_OBFFParameter__d_get);
ZEND_NAMED_FUNCTION(_wrap_OBFFParameter__ipar_set);
ZEND_NAMED_FUNCTION(_wrap_OBFFParameter__ipar_get);
ZEND_NAMED_FUNCTION(_wrap_OBFFParameter__dpar_set);
ZEND_NAMED_FUNCTION(_wrap_OBFFParameter__dpar_get);
ZEND_NAMED_FUNCTION(_wrap_OBFFParameter_clear);
ZEND_NAMED_FUNCTION(_wrap_new_OBFFParameter);
ZEND_NAMED_FUNCTION(_wrap_OBFFCalculation2_energy_set);
ZEND_NAMED_FUNCTION(_wrap_OBFFCalculation2_energy_get);
ZEND_NAMED_FUNCTION(_wrap_OBFFCalculation2_a_set);
ZEND_NAMED_FUNCTION(_wrap_OBFFCalculation2_a_get);
ZEND_NAMED_FUNCTION(_wrap_OBFFCalculation2_b_set);
ZEND_NAMED_FUNCTION(_wrap_OBFFCalculation2_b_get);
ZEND_NAMED_FUNCTION(_wrap_OBFFCalculation2_idx_a_set);
ZEND_NAMED_FUNCTION(_wrap_OBFFCalculation2_idx_a_get);
ZEND_NAMED_FUNCTION(_wrap_OBFFCalculation2_idx_b_set);
ZEND_NAMED_FUNCTION(_wrap_OBFFCalculation2_idx_b_get);
ZEND_NAMED_FUNCTION(_wrap_OBFFCalculation2_pos_a_set);
ZEND_NAMED_FUNCTION(_wrap_OBFFCalculation2_pos_a_get);
ZEND_NAMED_FUNCTION(_wrap_OBFFCalculation2_pos_b_set);
ZEND_NAMED_FUNCTION(_wrap_OBFFCalculation2_pos_b_get);
ZEND_NAMED_FUNCTION(_wrap_OBFFCalculation2_force_a_set);
ZEND_NAMED_FUNCTION(_wrap_OBFFCalculation2_force_a_get);
ZEND_NAMED_FUNCTION(_wrap_OBFFCalculation2_force_b_set);
ZEND_NAMED_FUNCTION(_wrap_OBFFCalculation2_force_b_get);
ZEND_NAMED_FUNCTION(_wrap_OBFFCalculation2_SetupPointers);
ZEND_NAMED_FUNCTION(_wrap_new_OBFFCalculation2);
ZEND_NAMED_FUNCTION(_wrap_OBFFCalculation3_c_set);
ZEND_NAMED_FUNCTION(_wrap_OBFFCalculation3_c_get);
ZEND_NAMED_FUNCTION(_wrap_OBFFCalculation3_idx_c_set);
ZEND_NAMED_FUNCTION(_wrap_OBFFCalculation3_idx_c_get);
ZEND_NAMED_FUNCTION(_wrap_OBFFCalculation3_pos_c_set);
ZEND_NAMED_FUNCTION(_wrap_OBFFCalculation3_pos_c_get);
ZEND_NAMED_FUNCTION(_wrap_OBFFCalculation3_force_c_set);
ZEND_NAMED_FUNCTION(_wrap_OBFFCalculation3_force_c_get);
ZEND_NAMED_FUNCTION(_wrap_new_OBFFCalculation3);
ZEND_NAMED_FUNCTION(_wrap_OBFFCalculation4_d_set);
ZEND_NAMED_FUNCTION(_wrap_OBFFCalculation4_d_get);
ZEND_NAMED_FUNCTION(_wrap_OBFFCalculation4_idx_d_set);
ZEND_NAMED_FUNCTION(_wrap_OBFFCalculation4_idx_d_get);
ZEND_NAMED_FUNCTION(_wrap_OBFFCalculation4_pos_d_set);
ZEND_NAMED_FUNCTION(_wrap_OBFFCalculation4_pos_d_get);
ZEND_NAMED_FUNCTION(_wrap_OBFFCalculation4_force_d_set);
ZEND_NAMED_FUNCTION(_wrap_OBFFCalculation4_force_d_get);
ZEND_NAMED_FUNCTION(_wrap_new_OBFFCalculation4);
ZEND_NAMED_FUNCTION(_wrap_OBFFConstraint_factor_set);
ZEND_NAMED_FUNCTION(_wrap_OBFFConstraint_factor_get);
ZEND_NAMED_FUNCTION(_wrap_OBFFConstraint_constraint_value_set);
ZEND_NAMED_FUNCTION(_wrap_OBFFConstraint_constraint_value_get);
ZEND_NAMED_FUNCTION(_wrap_OBFFConstraint_rab0_set);
ZEND_NAMED_FUNCTION(_wrap_OBFFConstraint_rab0_get);
ZEND_NAMED_FUNCTION(_wrap_OBFFConstraint_rbc0_set);
ZEND_NAMED_FUNCTION(_wrap_OBFFConstraint_rbc0_get);
ZEND_NAMED_FUNCTION(_wrap_OBFFConstraint_type_set);
ZEND_NAMED_FUNCTION(_wrap_OBFFConstraint_type_get);
ZEND_NAMED_FUNCTION(_wrap_OBFFConstraint_ia_set);
ZEND_NAMED_FUNCTION(_wrap_OBFFConstraint_ia_get);
ZEND_NAMED_FUNCTION(_wrap_OBFFConstraint_ib_set);
ZEND_NAMED_FUNCTION(_wrap_OBFFConstraint_ib_get);
ZEND_NAMED_FUNCTION(_wrap_OBFFConstraint_ic_set);
ZEND_NAMED_FUNCTION(_wrap_OBFFConstraint_ic_get);
ZEND_NAMED_FUNCTION(_wrap_OBFFConstraint_id_set);
ZEND_NAMED_FUNCTION(_wrap_OBFFConstraint_id_get);
ZEND_NAMED_FUNCTION(_wrap_OBFFConstraint_a_set);
ZEND_NAMED_FUNCTION(_wrap_OBFFConstraint_a_get);
ZEND_NAMED_FUNCTION(_wrap_OBFFConstraint_b_set);
ZEND_NAMED_FUNCTION(_wrap_OBFFConstraint_b_get);
ZEND_NAMED_FUNCTION(_wrap_OBFFConstraint_c_set);
ZEND_NAMED_FUNCTION(_wrap_OBFFConstraint_c_get);
ZEND_NAMED_FUNCTION(_wrap_OBFFConstraint_d_set);
ZEND_NAMED_FUNCTION(_wrap_OBFFConstraint_d_get);
ZEND_NAMED_FUNCTION(_wrap_OBFFConstraint_grada_set);
ZEND_NAMED_FUNCTION(_wrap_OBFFConstraint_grada_get);
ZEND_NAMED_FUNCTION(_wrap_OBFFConstraint_gradb_set);
ZEND_NAMED_FUNCTION(_wrap_OBFFConstraint_gradb_get);
ZEND_NAMED_FUNCTION(_wrap_OBFFConstraint_gradc_set);
ZEND_NAMED_FUNCTION(_wrap_OBFFConstraint_gradc_get);
ZEND_NAMED_FUNCTION(_wrap_OBFFConstraint_gradd_set);
ZEND_NAMED_FUNCTION(_wrap_OBFFConstraint_gradd_get);
ZEND_NAMED_FUNCTION(_wrap_new_OBFFConstraint);
ZEND_NAMED_FUNCTION(_wrap_OBFFConstraint_GetGradient);
ZEND_NAMED_FUNCTION(_wrap_new_OBFFConstraints);
ZEND_NAMED_FUNCTION(_wrap_OBFFConstraints_Clear);
ZEND_NAMED_FUNCTION(_wrap_OBFFConstraints_GetConstraintEnergy);
ZEND_NAMED_FUNCTION(_wrap_OBFFConstraints_GetGradient);
ZEND_NAMED_FUNCTION(_wrap_OBFFConstraints_Setup);
ZEND_NAMED_FUNCTION(_wrap_OBFFConstraints_SetFactor);
ZEND_NAMED_FUNCTION(_wrap_OBFFConstraints_AddIgnore);
ZEND_NAMED_FUNCTION(_wrap_OBFFConstraints_AddAtomConstraint);
ZEND_NAMED_FUNCTION(_wrap_OBFFConstraints_AddAtomXConstraint);
ZEND_NAMED_FUNCTION(_wrap_OBFFConstraints_AddAtomYConstraint);
ZEND_NAMED_FUNCTION(_wrap_OBFFConstraints_AddAtomZConstraint);
ZEND_NAMED_FUNCTION(_wrap_OBFFConstraints_AddDistanceConstraint);
ZEND_NAMED_FUNCTION(_wrap_OBFFConstraints_AddAngleConstraint);
ZEND_NAMED_FUNCTION(_wrap_OBFFConstraints_AddTorsionConstraint);
ZEND_NAMED_FUNCTION(_wrap_OBFFConstraints_DeleteConstraint);
ZEND_NAMED_FUNCTION(_wrap_OBFFConstraints_GetFactor);
ZEND_NAMED_FUNCTION(_wrap_OBFFConstraints_Size);
ZEND_NAMED_FUNCTION(_wrap_OBFFConstraints_GetConstraintType);
ZEND_NAMED_FUNCTION(_wrap_OBFFConstraints_GetConstraintValue);
ZEND_NAMED_FUNCTION(_wrap_OBFFConstraints_GetConstraintAtomA);
ZEND_NAMED_FUNCTION(_wrap_OBFFConstraints_GetConstraintAtomB);
ZEND_NAMED_FUNCTION(_wrap_OBFFConstraints_GetConstraintAtomC);
ZEND_NAMED_FUNCTION(_wrap_OBFFConstraints_GetConstraintAtomD);
ZEND_NAMED_FUNCTION(_wrap_OBFFConstraints_IsIgnored);
ZEND_NAMED_FUNCTION(_wrap_OBFFConstraints_IsFixed);
ZEND_NAMED_FUNCTION(_wrap_OBFFConstraints_IsXFixed);
ZEND_NAMED_FUNCTION(_wrap_OBFFConstraints_IsYFixed);
ZEND_NAMED_FUNCTION(_wrap_OBFFConstraints_IsZFixed);
ZEND_NAMED_FUNCTION(_wrap_OBFFConstraints_GetIgnoredBitVec);
ZEND_NAMED_FUNCTION(_wrap_OBFFConstraints_GetFixedBitVec);
ZEND_NAMED_FUNCTION(_wrap_OBForceField_c_Default);
ZEND_NAMED_FUNCTION(_wrap_OBForceField_FindType);
ZEND_NAMED_FUNCTION(_wrap_OBForceField_MakeNewInstance);
ZEND_NAMED_FUNCTION(_wrap_OBForceField_FindForceField);
ZEND_NAMED_FUNCTION(_wrap_OBForceField_SetParameterFile);
ZEND_NAMED_FUNCTION(_wrap_OBForceField_GetUnit);
ZEND_NAMED_FUNCTION(_wrap_OBForceField_HasAnalyticalGradients);
ZEND_NAMED_FUNCTION(_wrap_OBForceField_Setup);
ZEND_NAMED_FUNCTION(_wrap_OBForceField_ParseParamFile);
ZEND_NAMED_FUNCTION(_wrap_OBForceField_SetTypes);
ZEND_NAMED_FUNCTION(_wrap_OBForceField_SetFormalCharges);
ZEND_NAMED_FUNCTION(_wrap_OBForceField_SetPartialCharges);
ZEND_NAMED_FUNCTION(_wrap_OBForceField_SetupCalculations);
ZEND_NAMED_FUNCTION(_wrap_OBForceField_SetupPointers);
ZEND_NAMED_FUNCTION(_wrap_OBForceField_IsSetupNeeded);
ZEND_NAMED_FUNCTION(_wrap_OBForceField_GetAtomTypes);
ZEND_NAMED_FUNCTION(_wrap_OBForceField_GetPartialCharges);
ZEND_NAMED_FUNCTION(_wrap_OBForceField_GetCoordinates);
ZEND_NAMED_FUNCTION(_wrap_OBForceField_UpdateCoordinates);
ZEND_NAMED_FUNCTION(_wrap_OBForceField_GetConformers);
ZEND_NAMED_FUNCTION(_wrap_OBForceField_UpdateConformers);
ZEND_NAMED_FUNCTION(_wrap_OBForceField_SetCoordinates);
ZEND_NAMED_FUNCTION(_wrap_OBForceField_SetConformers);
ZEND_NAMED_FUNCTION(_wrap_OBForceField_GetGrid);
ZEND_NAMED_FUNCTION(_wrap_OBForceField_AddIntraGroup);
ZEND_NAMED_FUNCTION(_wrap_OBForceField_AddInterGroup);
ZEND_NAMED_FUNCTION(_wrap_OBForceField_AddInterGroups);
ZEND_NAMED_FUNCTION(_wrap_OBForceField_ClearGroups);
ZEND_NAMED_FUNCTION(_wrap_OBForceField_HasGroups);
ZEND_NAMED_FUNCTION(_wrap_OBForceField_EnableCutOff);
ZEND_NAMED_FUNCTION(_wrap_OBForceField_IsCutOffEnabled);
ZEND_NAMED_FUNCTION(_wrap_OBForceField_SetVDWCutOff);
ZEND_NAMED_FUNCTION(_wrap_OBForceField_GetVDWCutOff);
ZEND_NAMED_FUNCTION(_wrap_OBForceField_SetElectrostaticCutOff);
ZEND_NAMED_FUNCTION(_wrap_OBForceField_GetElectrostaticCutOff);
ZEND_NAMED_FUNCTION(_wrap_OBForceField_SetUpdateFrequency);
ZEND_NAMED_FUNCTION(_wrap_OBForceField_GetUpdateFrequency);
ZEND_NAMED_FUNCTION(_wrap_OBForceField_UpdatePairsSimple);
ZEND_NAMED_FUNCTION(_wrap_OBForceField_GetNumPairs);
ZEND_NAMED_FUNCTION(_wrap_OBForceField_GetNumElectrostaticPairs);
ZEND_NAMED_FUNCTION(_wrap_OBForceField_GetNumVDWPairs);
ZEND_NAMED_FUNCTION(_wrap_OBForceField_EnableAllPairs);
ZEND_NAMED_FUNCTION(_wrap_OBForceField_Energy);
ZEND_NAMED_FUNCTION(_wrap_OBForceField_E_Bond);
ZEND_NAMED_FUNCTION(_wrap_OBForceField_E_Angle);
ZEND_NAMED_FUNCTION(_wrap_OBForceField_E_StrBnd);
ZEND_NAMED_FUNCTION(_wrap_OBForceField_E_Torsion);
ZEND_NAMED_FUNCTION(_wrap_OBForceField_E_OOP);
ZEND_NAMED_FUNCTION(_wrap_OBForceField_E_VDW);
ZEND_NAMED_FUNCTION(_wrap_OBForceField_E_Electrostatic);
ZEND_NAMED_FUNCTION(_wrap_OBForceField_PrintTypes);
ZEND_NAMED_FUNCTION(_wrap_OBForceField_PrintFormalCharges);
ZEND_NAMED_FUNCTION(_wrap_OBForceField_PrintPartialCharges);
ZEND_NAMED_FUNCTION(_wrap_OBForceField_PrintVelocities);
ZEND_NAMED_FUNCTION(_wrap_OBForceField_SetLogFile);
ZEND_NAMED_FUNCTION(_wrap_OBForceField_SetLogLevel);
ZEND_NAMED_FUNCTION(_wrap_OBForceField_GetLogLevel);
ZEND_NAMED_FUNCTION(_wrap_OBForceField_OBFFLog);
ZEND_NAMED_FUNCTION(_wrap_OBForceField_DistanceGeometry);
ZEND_NAMED_FUNCTION(_wrap_OBForceField_SystematicRotorSearch);
ZEND_NAMED_FUNCTION(_wrap_OBForceField_SystematicRotorSearchInitialize);
ZEND_NAMED_FUNCTION(_wrap_OBForceField_SystematicRotorSearchNextConformer);
ZEND_NAMED_FUNCTION(_wrap_OBForceField_RandomRotorSearch);
ZEND_NAMED_FUNCTION(_wrap_OBForceField_RandomRotorSearchInitialize);
ZEND_NAMED_FUNCTION(_wrap_OBForceField_RandomRotorSearchNextConformer);
ZEND_NAMED_FUNCTION(_wrap_OBForceField_WeightedRotorSearch);
ZEND_NAMED_FUNCTION(_wrap_OBForceField_FastRotorSearch);
ZEND_NAMED_FUNCTION(_wrap_OBForceField_SetLineSearchType);
ZEND_NAMED_FUNCTION(_wrap_OBForceField_GetLineSearchType);
ZEND_NAMED_FUNCTION(_wrap_OBForceField_LineSearch);
ZEND_NAMED_FUNCTION(_wrap_OBForceField_Newton2NumLineSearch);
ZEND_NAMED_FUNCTION(_wrap_OBForceField_LineSearchTakeStep);
ZEND_NAMED_FUNCTION(_wrap_OBForceField_SteepestDescent);
ZEND_NAMED_FUNCTION(_wrap_OBForceField_SteepestDescentInitialize);
ZEND_NAMED_FUNCTION(_wrap_OBForceField_SteepestDescentTakeNSteps);
ZEND_NAMED_FUNCTION(_wrap_OBForceField_ConjugateGradients);
ZEND_NAMED_FUNCTION(_wrap_OBForceField_ConjugateGradientsInitialize);
ZEND_NAMED_FUNCTION(_wrap_OBForceField_ConjugateGradientsTakeNSteps);
ZEND_NAMED_FUNCTION(_wrap_OBForceField_GenerateVelocities);
ZEND_NAMED_FUNCTION(_wrap_OBForceField_CorrectVelocities);
ZEND_NAMED_FUNCTION(_wrap_OBForceField_MolecularDynamicsTakeNSteps);
ZEND_NAMED_FUNCTION(_wrap_OBForceField_GetConstraints);
ZEND_NAMED_FUNCTION(_wrap_OBForceField_SetConstraints);
ZEND_NAMED_FUNCTION(_wrap_OBForceField_SetFixAtom);
ZEND_NAMED_FUNCTION(_wrap_OBForceField_UnsetFixAtom);
ZEND_NAMED_FUNCTION(_wrap_OBForceField_SetIgnoreAtom);
ZEND_NAMED_FUNCTION(_wrap_OBForceField_UnsetIgnoreAtom);
ZEND_NAMED_FUNCTION(_wrap_OBForceField_IgnoreCalculation);
ZEND_NAMED_FUNCTION(_wrap_OBForceField_DetectExplosion);
ZEND_NAMED_FUNCTION(_wrap_OBForceField_ValidateLineSearch);
ZEND_NAMED_FUNCTION(_wrap_OBForceField_ValidateSteepestDescent);
ZEND_NAMED_FUNCTION(_wrap_OBForceField_ValidateConjugateGradients);
ZEND_NAMED_FUNCTION(_wrap_OBForceField_Validate);
ZEND_NAMED_FUNCTION(_wrap_OBForceField_ValidateGradients);
ZEND_NAMED_FUNCTION(_wrap_OBForceField_ValidateGradientError);
ZEND_NAMED_FUNCTION(_wrap_OBForceField_VectorBondDerivative);
ZEND_NAMED_FUNCTION(_wrap_OBForceField_VectorDistanceDerivative);
ZEND_NAMED_FUNCTION(_wrap_OBForceField_VectorLengthDerivative);
ZEND_NAMED_FUNCTION(_wrap_OBForceField_VectorAngleDerivative);
ZEND_NAMED_FUNCTION(_wrap_OBForceField_VectorOOPDerivative);
ZEND_NAMED_FUNCTION(_wrap_OBForceField_VectorTorsionDerivative);
ZEND_NAMED_FUNCTION(_wrap_OBForceField_VectorSubtract);
ZEND_NAMED_FUNCTION(_wrap_OBForceField_VectorAdd);
ZEND_NAMED_FUNCTION(_wrap_OBForceField_VectorDivide);
ZEND_NAMED_FUNCTION(_wrap_OBForceField_VectorMultiply);
ZEND_NAMED_FUNCTION(_wrap_OBForceField_VectorSelfMultiply);
ZEND_NAMED_FUNCTION(_wrap_OBForceField_VectorNormalize);
ZEND_NAMED_FUNCTION(_wrap_OBForceField_VectorCopy);
ZEND_NAMED_FUNCTION(_wrap_OBForceField_VectorLength);
ZEND_NAMED_FUNCTION(_wrap_OBForceField_VectorDistance);
ZEND_NAMED_FUNCTION(_wrap_OBForceField_VectorAngle);
ZEND_NAMED_FUNCTION(_wrap_OBForceField_VectorTorsion);
ZEND_NAMED_FUNCTION(_wrap_OBForceField_VectorOOP);
ZEND_NAMED_FUNCTION(_wrap_OBForceField_VectorClear);
ZEND_NAMED_FUNCTION(_wrap_OBForceField_VectorDot);
ZEND_NAMED_FUNCTION(_wrap_OBForceField_VectorCross);
ZEND_NAMED_FUNCTION(_wrap_OBForceField_PrintVector);
ZEND_NAMED_FUNCTION(_wrap_OBForceField_SetLogToStdOut);
ZEND_NAMED_FUNCTION(_wrap_OBForceField_SetLogToStdErr);
ZEND_NAMED_FUNCTION(_wrap_new_OBBuilder);
ZEND_NAMED_FUNCTION(_wrap_OBBuilder_Build);
ZEND_NAMED_FUNCTION(_wrap_OBBuilder_SetKeepRings);
ZEND_NAMED_FUNCTION(_wrap_OBBuilder_UnsetKeepRings);
ZEND_NAMED_FUNCTION(_wrap_OBBuilder_LoadFragments);
ZEND_NAMED_FUNCTION(_wrap_OBBuilder_GetNewBondVector);
ZEND_NAMED_FUNCTION(_wrap_OBBuilder_Connect);
ZEND_NAMED_FUNCTION(_wrap_OBBuilder_Swap);
ZEND_NAMED_FUNCTION(_wrap_OBBuilder_CorrectStereoBonds);
ZEND_NAMED_FUNCTION(_wrap_OBBuilder_CorrectStereoAtoms);
ZEND_NAMED_FUNCTION(_wrap_OBBuilder_IsSpiroAtom);
ZEND_NAMED_FUNCTION(_wrap_OBBuilder_GetFragment);
ZEND_NAMED_FUNCTION(_wrap_OBBuilder_AddNbrs);
ZEND_NAMED_FUNCTION(_wrap_OBOp_c_Default);
ZEND_NAMED_FUNCTION(_wrap_OBOp_FindType);
ZEND_NAMED_FUNCTION(_wrap_OBOp_c_Do);
ZEND_NAMED_FUNCTION(_wrap_OBOp_WorksWith);
ZEND_NAMED_FUNCTION(_wrap_OBOp_ProcessVec);
ZEND_NAMED_FUNCTION(_wrap_OBOp_OpOptions);
ZEND_NAMED_FUNCTION(_wrap_OBOp_DoOps);
ZEND_NAMED_FUNCTION(_wrap_OBChargeModel_c_Default);
ZEND_NAMED_FUNCTION(_wrap_new_OBChargeModel);
ZEND_NAMED_FUNCTION(_wrap_OBChargeModel_FindType);
ZEND_NAMED_FUNCTION(_wrap_OBChargeModel_ComputeCharges);
ZEND_NAMED_FUNCTION(_wrap_OBChargeModel_GetFormalCharges);
ZEND_NAMED_FUNCTION(_wrap_OBChargeModel_GetPartialCharges);
ZEND_NAMED_FUNCTION(_wrap_OBChargeModel_GetDipoleMoment);
ZEND_NAMED_FUNCTION(_wrap_new_OBGraphSym);
ZEND_NAMED_FUNCTION(_wrap_OBGraphSym_NoSymmetryClass_get);
ZEND_NAMED_FUNCTION(_wrap_OBGraphSym_GetSymmetry);
ZEND_NAMED_FUNCTION(_wrap_OBGraphSym_ClearSymmetry);
ZEND_NAMED_FUNCTION(_wrap_OBIsomorphismMapper_GetInstance);
ZEND_NAMED_FUNCTION(_wrap_OBIsomorphismMapper_MapFirst);
ZEND_NAMED_FUNCTION(_wrap_OBIsomorphismMapper_MapUnique);
ZEND_NAMED_FUNCTION(_wrap_OBIsomorphismMapper_MapAll);
ZEND_NAMED_FUNCTION(_wrap_OBIsomorphismMapper_MapGeneric);
ZEND_NAMED_FUNCTION(_wrap_OBIsomorphismMapper_SetTimeout);
ZEND_NAMED_FUNCTION(_wrap_MapsTo);
ZEND_NAMED_FUNCTION(_wrap_FindAutomorphisms);
ZEND_NAMED_FUNCTION(_wrap_new_OBQueryAtom);
ZEND_NAMED_FUNCTION(_wrap_OBQueryAtom_GetIndex);
ZEND_NAMED_FUNCTION(_wrap_OBQueryAtom_GetBonds);
ZEND_NAMED_FUNCTION(_wrap_OBQueryAtom_GetNbrs);
ZEND_NAMED_FUNCTION(_wrap_OBQueryAtom_Matches);
ZEND_NAMED_FUNCTION(_wrap_new_OBQueryBond);
ZEND_NAMED_FUNCTION(_wrap_OBQueryBond_GetIndex);
ZEND_NAMED_FUNCTION(_wrap_OBQueryBond_GetBeginAtom);
ZEND_NAMED_FUNCTION(_wrap_OBQueryBond_GetEndAtom);
ZEND_NAMED_FUNCTION(_wrap_OBQueryBond_Matches);
ZEND_NAMED_FUNCTION(_wrap_OBQuery_NumAtoms);
ZEND_NAMED_FUNCTION(_wrap_OBQuery_NumBonds);
ZEND_NAMED_FUNCTION(_wrap_OBQuery_GetAtoms);
ZEND_NAMED_FUNCTION(_wrap_OBQuery_GetBonds);
ZEND_NAMED_FUNCTION(_wrap_OBQuery_GetBond);
ZEND_NAMED_FUNCTION(_wrap_OBQuery_AddAtom);
ZEND_NAMED_FUNCTION(_wrap_OBQuery_AddBond);
ZEND_NAMED_FUNCTION(_wrap_new_OBQuery);
ZEND_NAMED_FUNCTION(_wrap_CompileMoleculeQuery);
ZEND_NAMED_FUNCTION(_wrap_CompileSmilesQuery);
ZEND_NAMED_FUNCTION(_wrap_CanonicalLabels);
ZEND_NAMED_FUNCTION(_wrap_OBStereo_MakeRefs);
ZEND_NAMED_FUNCTION(_wrap_OBStereo_ContainsSameRefs);
ZEND_NAMED_FUNCTION(_wrap_OBStereo_ContainsRef);
ZEND_NAMED_FUNCTION(_wrap_OBStereo_NumInversions);
ZEND_NAMED_FUNCTION(_wrap_OBStereo_Permutate);
ZEND_NAMED_FUNCTION(_wrap_OBStereo_Permutated);
ZEND_NAMED_FUNCTION(_wrap_new_OBStereo);
ZEND_NAMED_FUNCTION(_wrap_new_OBStereoUnit);
ZEND_NAMED_FUNCTION(_wrap_OBStereoUnit_type_set);
ZEND_NAMED_FUNCTION(_wrap_OBStereoUnit_type_get);
ZEND_NAMED_FUNCTION(_wrap_OBStereoUnit_id_set);
ZEND_NAMED_FUNCTION(_wrap_OBStereoUnit_id_get);
ZEND_NAMED_FUNCTION(_wrap_OBStereoUnit_para_set);
ZEND_NAMED_FUNCTION(_wrap_OBStereoUnit_para_get);
ZEND_NAMED_FUNCTION(_wrap_OBStereoBase_GetMolecule);
ZEND_NAMED_FUNCTION(_wrap_OBStereoBase_GetType);
ZEND_NAMED_FUNCTION(_wrap_OBStereoBase_SetSpecified);
ZEND_NAMED_FUNCTION(_wrap_OBStereoBase_IsSpecified);
ZEND_NAMED_FUNCTION(_wrap_new_OBStereoFacade);
ZEND_NAMED_FUNCTION(_wrap_OBStereoFacade_NumTetrahedralStereo);
ZEND_NAMED_FUNCTION(_wrap_OBStereoFacade_HasTetrahedralStereo);
ZEND_NAMED_FUNCTION(_wrap_OBStereoFacade_GetTetrahedralStereo);
ZEND_NAMED_FUNCTION(_wrap_OBStereoFacade_NumCisTransStereo);
ZEND_NAMED_FUNCTION(_wrap_OBStereoFacade_HasCisTransStereo);
ZEND_NAMED_FUNCTION(_wrap_OBStereoFacade_GetCisTransStereo);
ZEND_NAMED_FUNCTION(_wrap_OBStereoFacade_NumSquarePlanarStereo);
ZEND_NAMED_FUNCTION(_wrap_OBStereoFacade_HasSquarePlanarStereo);
ZEND_NAMED_FUNCTION(_wrap_OBStereoFacade_GetSquarePlanarStereo);
ZEND_NAMED_FUNCTION(_wrap_PerceiveStereo);
ZEND_NAMED_FUNCTION(_wrap_StereoFrom2D);
ZEND_NAMED_FUNCTION(_wrap_StereoFrom3D);
ZEND_NAMED_FUNCTION(_wrap_StereoFrom0D);
ZEND_NAMED_FUNCTION(_wrap_TetrahedralFrom3D);
ZEND_NAMED_FUNCTION(_wrap_TetrahedralFrom2D);
ZEND_NAMED_FUNCTION(_wrap_TetrahedralFrom0D);
ZEND_NAMED_FUNCTION(_wrap_CisTransFrom3D);
ZEND_NAMED_FUNCTION(_wrap_CisTransFrom2D);
ZEND_NAMED_FUNCTION(_wrap_TetStereoToWedgeHash);
ZEND_NAMED_FUNCTION(_wrap_GetUnspecifiedCisTrans);
ZEND_NAMED_FUNCTION(_wrap_StereoRefToImplicit);
ZEND_NAMED_FUNCTION(_wrap_ImplicitRefToStereo);
ZEND_NAMED_FUNCTION(_wrap_CisTransFrom0D);
ZEND_NAMED_FUNCTION(_wrap_FindStereogenicUnits);
ZEND_NAMED_FUNCTION(_wrap_new_OBBitVec);
ZEND_NAMED_FUNCTION(_wrap_OBBitVec_SetBitOn);
ZEND_NAMED_FUNCTION(_wrap_OBBitVec_SetBitOff);
ZEND_NAMED_FUNCTION(_wrap_OBBitVec_SetRangeOn);
ZEND_NAMED_FUNCTION(_wrap_OBBitVec_SetRangeOff);
ZEND_NAMED_FUNCTION(_wrap_OBBitVec_Fold);
ZEND_NAMED_FUNCTION(_wrap_OBBitVec_FirstBit);
ZEND_NAMED_FUNCTION(_wrap_OBBitVec_NextBit);
ZEND_NAMED_FUNCTION(_wrap_OBBitVec_EndBit);
ZEND_NAMED_FUNCTION(_wrap_OBBitVec_GetSize);
ZEND_NAMED_FUNCTION(_wrap_OBBitVec_CountBits);
ZEND_NAMED_FUNCTION(_wrap_OBBitVec_c_Empty);
ZEND_NAMED_FUNCTION(_wrap_OBBitVec_IsEmpty);
ZEND_NAMED_FUNCTION(_wrap_OBBitVec_Resize);
ZEND_NAMED_FUNCTION(_wrap_OBBitVec_ResizeWords);
ZEND_NAMED_FUNCTION(_wrap_OBBitVec_BitIsSet);
ZEND_NAMED_FUNCTION(_wrap_OBBitVec_BitIsOn);
ZEND_NAMED_FUNCTION(_wrap_OBBitVec_FromVecInt);
ZEND_NAMED_FUNCTION(_wrap_OBBitVec_FromString);
ZEND_NAMED_FUNCTION(_wrap_OBBitVec_ToVecInt);
ZEND_NAMED_FUNCTION(_wrap_OBBitVec_Clear);
ZEND_NAMED_FUNCTION(_wrap_OBBitVec_Negate);
ZEND_NAMED_FUNCTION(_wrap_OBBitVec_GetWords);
ZEND_NAMED_FUNCTION(_wrap_OBBitVec_add);
ZEND_NAMED_FUNCTION(_wrap_Tanimoto);
ZEND_NAMED_FUNCTION(_wrap_new_OBRotorRule);
ZEND_NAMED_FUNCTION(_wrap_OBRotorRule_IsValid);
ZEND_NAMED_FUNCTION(_wrap_OBRotorRule_GetReferenceAtoms);
ZEND_NAMED_FUNCTION(_wrap_OBRotorRule_SetDelta);
ZEND_NAMED_FUNCTION(_wrap_OBRotorRule_GetDelta);
ZEND_NAMED_FUNCTION(_wrap_OBRotorRule_GetTorsionVals);
ZEND_NAMED_FUNCTION(_wrap_OBRotorRule_GetSmartsString);
ZEND_NAMED_FUNCTION(_wrap_OBRotorRule_GetSmartsPattern);
ZEND_NAMED_FUNCTION(_wrap_new_OBRotorRules);
ZEND_NAMED_FUNCTION(_wrap_OBRotorRules_SetFilename);
ZEND_NAMED_FUNCTION(_wrap_OBRotorRules_GetRotorIncrements);
ZEND_NAMED_FUNCTION(_wrap_OBRotorRules_Quiet);
ZEND_NAMED_FUNCTION(_wrap_new_OBRotor);
ZEND_NAMED_FUNCTION(_wrap_OBRotor_SetBond);
ZEND_NAMED_FUNCTION(_wrap_OBRotor_SetRings);
ZEND_NAMED_FUNCTION(_wrap_OBRotor_SetIdx);
ZEND_NAMED_FUNCTION(_wrap_OBRotor_SetDihedralAtoms);
ZEND_NAMED_FUNCTION(_wrap_OBRotor_SetRotAtoms);
ZEND_NAMED_FUNCTION(_wrap_OBRotor_SetTorsionValues);
ZEND_NAMED_FUNCTION(_wrap_OBRotor_SetFixedBonds);
ZEND_NAMED_FUNCTION(_wrap_OBRotor_SetToAngle);
ZEND_NAMED_FUNCTION(_wrap_OBRotor_SetRotor);
ZEND_NAMED_FUNCTION(_wrap_OBRotor_Precompute);
ZEND_NAMED_FUNCTION(_wrap_OBRotor_Precalc);
ZEND_NAMED_FUNCTION(_wrap_OBRotor_Set);
ZEND_NAMED_FUNCTION(_wrap_OBRotor_GetBond);
ZEND_NAMED_FUNCTION(_wrap_OBRotor_Size);
ZEND_NAMED_FUNCTION(_wrap_OBRotor_GetIdx);
ZEND_NAMED_FUNCTION(_wrap_OBRotor_GetDihedralAtoms);
ZEND_NAMED_FUNCTION(_wrap_OBRotor_GetTorsionValues);
ZEND_NAMED_FUNCTION(_wrap_OBRotor_GetFixedBonds);
ZEND_NAMED_FUNCTION(_wrap_OBRotor_CalcTorsion);
ZEND_NAMED_FUNCTION(_wrap_OBRotor_CalcBondLength);
ZEND_NAMED_FUNCTION(_wrap_OBRotor_BeginTorIncrement);
ZEND_NAMED_FUNCTION(_wrap_OBRotor_EndTorIncrement);
ZEND_NAMED_FUNCTION(_wrap_OBRotor_RemoveSymTorsionValues);
ZEND_NAMED_FUNCTION(_wrap_OBRotor_SetDelta);
ZEND_NAMED_FUNCTION(_wrap_OBRotor_GetDelta);
ZEND_NAMED_FUNCTION(_wrap_OBRotor_GetFixedAtoms);
ZEND_NAMED_FUNCTION(_wrap_OBRotor_SetFixedAtoms);
ZEND_NAMED_FUNCTION(_wrap_OBRotor_GetEvalAtoms);
ZEND_NAMED_FUNCTION(_wrap_OBRotor_SetEvalAtoms);
ZEND_NAMED_FUNCTION(_wrap_OBRotor_GetRotAtoms);
ZEND_NAMED_FUNCTION(_wrap_OBRotor_GetResolution);
ZEND_NAMED_FUNCTION(_wrap_OBRotor_SetNumCoords);
ZEND_NAMED_FUNCTION(_wrap_new_OBRotorList);
ZEND_NAMED_FUNCTION(_wrap_OBRotorList_Clear);
ZEND_NAMED_FUNCTION(_wrap_OBRotorList_Size);
ZEND_NAMED_FUNCTION(_wrap_OBRotorList_IsFixedBond);
ZEND_NAMED_FUNCTION(_wrap_OBRotorList_HasFixedBonds);
ZEND_NAMED_FUNCTION(_wrap_OBRotorList_RemoveSymVals);
ZEND_NAMED_FUNCTION(_wrap_OBRotorList_HasRingRotors);
ZEND_NAMED_FUNCTION(_wrap_OBRotorList_Setup);
ZEND_NAMED_FUNCTION(_wrap_OBRotorList_SetFixedBonds);
ZEND_NAMED_FUNCTION(_wrap_OBRotorList_Init);
ZEND_NAMED_FUNCTION(_wrap_OBRotorList_SetQuiet);
ZEND_NAMED_FUNCTION(_wrap_OBRotorList_SetRotAtoms);
ZEND_NAMED_FUNCTION(_wrap_OBRotorList_FindRotors);
ZEND_NAMED_FUNCTION(_wrap_OBRotorList_SetEvalAtoms);
ZEND_NAMED_FUNCTION(_wrap_OBRotorList_AssignTorVals);
ZEND_NAMED_FUNCTION(_wrap_OBRotorList_BeginRotor);
ZEND_NAMED_FUNCTION(_wrap_OBRotorList_NextRotor);
ZEND_NAMED_FUNCTION(_wrap_OBRotorList_BeginRotors);
ZEND_NAMED_FUNCTION(_wrap_OBRotorList_EndRotors);
ZEND_NAMED_FUNCTION(_wrap_OBRotorList_IdentifyEvalAtoms);
ZEND_NAMED_FUNCTION(_wrap_OBRotorList_SetFixAtoms);
ZEND_NAMED_FUNCTION(_wrap_OBRotorList_HasFixedAtoms);
ZEND_NAMED_FUNCTION(_wrap_OBRotorList_IgnoreSymmetryRemoval);
ZEND_NAMED_FUNCTION(_wrap_OBRotorList_SetRotAtomsByFix);
ZEND_NAMED_FUNCTION(_wrap_new_rotor_digit);
ZEND_NAMED_FUNCTION(_wrap_rotor_digit_set_size);
ZEND_NAMED_FUNCTION(_wrap_rotor_digit_set_state);
ZEND_NAMED_FUNCTION(_wrap_rotor_digit_get_state);
ZEND_NAMED_FUNCTION(_wrap_rotor_digit_size);
ZEND_NAMED_FUNCTION(_wrap_rotor_digit_next);
ZEND_NAMED_FUNCTION(_wrap_new_OBRotorKeys);
ZEND_NAMED_FUNCTION(_wrap_OBRotorKeys_Clear);
ZEND_NAMED_FUNCTION(_wrap_OBRotorKeys_NumKeys);
ZEND_NAMED_FUNCTION(_wrap_OBRotorKeys_AddRotor);
ZEND_NAMED_FUNCTION(_wrap_OBRotorKeys_Next);
ZEND_NAMED_FUNCTION(_wrap_OBRotorKeys_GetKey);
ZEND_NAMED_FUNCTION(_wrap_new_OBRotamerList);
ZEND_NAMED_FUNCTION(_wrap_OBRotamerList_Setup);
ZEND_NAMED_FUNCTION(_wrap_OBRotamerList_NumRotors);
ZEND_NAMED_FUNCTION(_wrap_OBRotamerList_NumRotamers);
ZEND_NAMED_FUNCTION(_wrap_OBRotamerList_AddRotamer);
ZEND_NAMED_FUNCTION(_wrap_OBRotamerList_AddRotamers);
ZEND_NAMED_FUNCTION(_wrap_OBRotamerList_GetReferenceArray);
ZEND_NAMED_FUNCTION(_wrap_OBRotamerList_BeginRotamer);
ZEND_NAMED_FUNCTION(_wrap_OBRotamerList_EndRotamer);
ZEND_NAMED_FUNCTION(_wrap_OBRotamerList_CreateConformerList);
ZEND_NAMED_FUNCTION(_wrap_OBRotamerList_ExpandConformerList);
ZEND_NAMED_FUNCTION(_wrap_OBRotamerList_SetCurrentCoordinates);
ZEND_NAMED_FUNCTION(_wrap_OBRotamerList_SetBaseCoordinateSets);
ZEND_NAMED_FUNCTION(_wrap_OBRotamerList_NumBaseCoordinateSets);
ZEND_NAMED_FUNCTION(_wrap_OBRotamerList_GetBaseCoordinateSet);
ZEND_NAMED_FUNCTION(_wrap_OBRotamerList_NumAtoms);
ZEND_NAMED_FUNCTION(_wrap_new_OBSpectrophore);
ZEND_NAMED_FUNCTION(_wrap_OBSpectrophore_SetResolution);
ZEND_NAMED_FUNCTION(_wrap_OBSpectrophore_SetAccuracy);
ZEND_NAMED_FUNCTION(_wrap_OBSpectrophore_SetStereo);
ZEND_NAMED_FUNCTION(_wrap_OBSpectrophore_SetNormalization);
ZEND_NAMED_FUNCTION(_wrap_OBSpectrophore_GetAccuracy);
ZEND_NAMED_FUNCTION(_wrap_OBSpectrophore_GetResolution);
ZEND_NAMED_FUNCTION(_wrap_OBSpectrophore_GetStereo);
ZEND_NAMED_FUNCTION(_wrap_OBSpectrophore_GetNormalization);
ZEND_NAMED_FUNCTION(_wrap_OBSpectrophore_GetSpectrophore);
ZEND_NAMED_FUNCTION(_wrap_new_OBMolAtomIter);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomIter___deref__);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomIter___ref__);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomIter_Visit_set);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomIter_Visit_get);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomIter_Duplicate);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomIter_SetIdx);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomIter_SetId);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomIter_SetHyb);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomIter_SetAtomicNum);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomIter_SetIsotope);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomIter_SetImplicitValence);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomIter_IncrementImplicitValence);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomIter_DecrementImplicitValence);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomIter_SetFormalCharge);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomIter_SetSpinMultiplicity);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomIter_SetType);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomIter_SetPartialCharge);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomIter_SetVector);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomIter_SetCoordPtr);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomIter_SetResidue);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomIter_SetParent);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomIter_SetAromatic);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomIter_UnsetAromatic);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomIter_SetClockwiseStereo);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomIter_SetAntiClockwiseStereo);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomIter_SetPositiveStereo);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomIter_SetNegativeStereo);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomIter_UnsetStereo);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomIter_SetInRing);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomIter_SetChiral);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomIter_ClearCoordPtr);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomIter_GetFormalCharge);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomIter_GetAtomicNum);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomIter_GetIsotope);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomIter_GetSpinMultiplicity);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomIter_GetAtomicMass);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomIter_GetExactMass);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomIter_GetIdx);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomIter_GetIndex);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomIter_GetId);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomIter_GetCoordinateIdx);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomIter_GetCIdx);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomIter_GetValence);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomIter_GetHyb);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomIter_GetImplicitValence);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomIter_GetHvyValence);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomIter_GetHeteroValence);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomIter_GetType);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomIter_GetX);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomIter_GetY);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomIter_GetZ);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomIter_x);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomIter_y);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomIter_z);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomIter_GetCoordinate);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomIter_GetVector);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomIter_GetPartialCharge);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomIter_GetResidue);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomIter_GetParent);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomIter_GetNewBondVector);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomIter_GetBond);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomIter_GetNextAtom);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomIter_BeginBonds);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomIter_EndBonds);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomIter_BeginBond);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomIter_NextBond);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomIter_BeginNbrAtom);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomIter_NextNbrAtom);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomIter_GetDistance);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomIter_GetAngle);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomIter_NewResidue);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomIter_AddResidue);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomIter_DeleteResidue);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomIter_AddBond);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomIter_InsertBond);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomIter_DeleteBond);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomIter_ClearBond);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomIter_HtoMethyl);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomIter_SetHybAndGeom);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomIter_ForceNoH);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomIter_HasNoHForced);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomIter_ForceImplH);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomIter_HasImplHForced);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomIter_CountFreeOxygens);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomIter_CountFreeSulfurs);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomIter_ImplicitHydrogenCount);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomIter_ExplicitHydrogenCount);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomIter_MemberOfRingCount);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomIter_MemberOfRingSize);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomIter_CountRingBonds);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomIter_SmallestBondAngle);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomIter_AverageBondAngle);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomIter_BOSum);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomIter_KBOSum);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomIter_LewisAcidBaseCounts);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomIter_HasResidue);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomIter_IsHetAtom);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomIter_IsHydrogen);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomIter_IsCarbon);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomIter_IsNitrogen);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomIter_IsOxygen);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomIter_IsSulfur);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomIter_IsPhosphorus);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomIter_IsAromatic);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomIter_IsInRing);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomIter_IsInRingSize);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomIter_IsHeteroatom);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomIter_IsNotCorH);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomIter_IsConnected);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomIter_IsOneThree);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomIter_IsOneFour);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomIter_IsCarboxylOxygen);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomIter_IsPhosphateOxygen);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomIter_IsSulfateOxygen);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomIter_IsNitroOxygen);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomIter_IsAmideNitrogen);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomIter_IsPolarHydrogen);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomIter_IsNonPolarHydrogen);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomIter_IsAromaticNOxide);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomIter_IsChiral);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomIter_IsAxial);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomIter_IsClockwise);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomIter_IsAntiClockwise);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomIter_IsPositiveStereo);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomIter_IsNegativeStereo);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomIter_HasChiralitySpecified);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomIter_HasChiralVolume);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomIter_IsHbondAcceptor);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomIter_IsHbondAcceptorSimple);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomIter_IsHbondDonor);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomIter_IsHbondDonorH);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomIter_IsMetal);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomIter_HasAlphaBetaUnsat);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomIter_HasBondOfOrder);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomIter_CountBondsOfOrder);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomIter_HighestBondOrder);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomIter_HasNonSingleBond);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomIter_HasSingleBond);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomIter_HasDoubleBond);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomIter_HasAromaticBond);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomIter_MatchesSMARTS);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomIter_Clear);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomIter_DoTransformations);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomIter_ClassDescription);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomIter_GetTitle);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomIter_SetTitle);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomIter_HasData);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomIter_DeleteData);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomIter_CloneData);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomIter_DataSize);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomIter_GetData);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomIter_GetAllData);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomIter_BeginData);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomIter_EndData);
ZEND_NAMED_FUNCTION(_wrap_new_OBMolAtomDFSIter);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomDFSIter___deref__);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomDFSIter___ref__);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomDFSIter_next);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomDFSIter_Visit_set);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomDFSIter_Visit_get);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomDFSIter_Duplicate);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomDFSIter_SetIdx);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomDFSIter_SetId);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomDFSIter_SetHyb);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomDFSIter_SetAtomicNum);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomDFSIter_SetIsotope);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomDFSIter_SetImplicitValence);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomDFSIter_IncrementImplicitValence);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomDFSIter_DecrementImplicitValence);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomDFSIter_SetFormalCharge);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomDFSIter_SetSpinMultiplicity);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomDFSIter_SetType);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomDFSIter_SetPartialCharge);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomDFSIter_SetVector);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomDFSIter_SetCoordPtr);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomDFSIter_SetResidue);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomDFSIter_SetParent);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomDFSIter_SetAromatic);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomDFSIter_UnsetAromatic);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomDFSIter_SetClockwiseStereo);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomDFSIter_SetAntiClockwiseStereo);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomDFSIter_SetPositiveStereo);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomDFSIter_SetNegativeStereo);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomDFSIter_UnsetStereo);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomDFSIter_SetInRing);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomDFSIter_SetChiral);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomDFSIter_ClearCoordPtr);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomDFSIter_GetFormalCharge);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomDFSIter_GetAtomicNum);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomDFSIter_GetIsotope);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomDFSIter_GetSpinMultiplicity);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomDFSIter_GetAtomicMass);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomDFSIter_GetExactMass);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomDFSIter_GetIdx);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomDFSIter_GetIndex);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomDFSIter_GetId);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomDFSIter_GetCoordinateIdx);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomDFSIter_GetCIdx);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomDFSIter_GetValence);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomDFSIter_GetHyb);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomDFSIter_GetImplicitValence);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomDFSIter_GetHvyValence);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomDFSIter_GetHeteroValence);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomDFSIter_GetType);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomDFSIter_GetX);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomDFSIter_GetY);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomDFSIter_GetZ);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomDFSIter_x);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomDFSIter_y);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomDFSIter_z);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomDFSIter_GetCoordinate);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomDFSIter_GetVector);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomDFSIter_GetPartialCharge);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomDFSIter_GetResidue);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomDFSIter_GetParent);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomDFSIter_GetNewBondVector);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomDFSIter_GetBond);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomDFSIter_GetNextAtom);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomDFSIter_BeginBonds);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomDFSIter_EndBonds);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomDFSIter_BeginBond);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomDFSIter_NextBond);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomDFSIter_BeginNbrAtom);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomDFSIter_NextNbrAtom);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomDFSIter_GetDistance);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomDFSIter_GetAngle);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomDFSIter_NewResidue);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomDFSIter_AddResidue);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomDFSIter_DeleteResidue);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomDFSIter_AddBond);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomDFSIter_InsertBond);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomDFSIter_DeleteBond);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomDFSIter_ClearBond);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomDFSIter_HtoMethyl);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomDFSIter_SetHybAndGeom);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomDFSIter_ForceNoH);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomDFSIter_HasNoHForced);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomDFSIter_ForceImplH);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomDFSIter_HasImplHForced);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomDFSIter_CountFreeOxygens);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomDFSIter_CountFreeSulfurs);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomDFSIter_ImplicitHydrogenCount);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomDFSIter_ExplicitHydrogenCount);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomDFSIter_MemberOfRingCount);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomDFSIter_MemberOfRingSize);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomDFSIter_CountRingBonds);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomDFSIter_SmallestBondAngle);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomDFSIter_AverageBondAngle);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomDFSIter_BOSum);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomDFSIter_KBOSum);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomDFSIter_LewisAcidBaseCounts);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomDFSIter_HasResidue);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomDFSIter_IsHetAtom);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomDFSIter_IsHydrogen);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomDFSIter_IsCarbon);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomDFSIter_IsNitrogen);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomDFSIter_IsOxygen);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomDFSIter_IsSulfur);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomDFSIter_IsPhosphorus);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomDFSIter_IsAromatic);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomDFSIter_IsInRing);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomDFSIter_IsInRingSize);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomDFSIter_IsHeteroatom);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomDFSIter_IsNotCorH);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomDFSIter_IsConnected);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomDFSIter_IsOneThree);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomDFSIter_IsOneFour);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomDFSIter_IsCarboxylOxygen);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomDFSIter_IsPhosphateOxygen);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomDFSIter_IsSulfateOxygen);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomDFSIter_IsNitroOxygen);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomDFSIter_IsAmideNitrogen);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomDFSIter_IsPolarHydrogen);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomDFSIter_IsNonPolarHydrogen);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomDFSIter_IsAromaticNOxide);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomDFSIter_IsChiral);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomDFSIter_IsAxial);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomDFSIter_IsClockwise);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomDFSIter_IsAntiClockwise);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomDFSIter_IsPositiveStereo);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomDFSIter_IsNegativeStereo);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomDFSIter_HasChiralitySpecified);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomDFSIter_HasChiralVolume);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomDFSIter_IsHbondAcceptor);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomDFSIter_IsHbondAcceptorSimple);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomDFSIter_IsHbondDonor);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomDFSIter_IsHbondDonorH);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomDFSIter_IsMetal);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomDFSIter_HasAlphaBetaUnsat);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomDFSIter_HasBondOfOrder);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomDFSIter_CountBondsOfOrder);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomDFSIter_HighestBondOrder);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomDFSIter_HasNonSingleBond);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomDFSIter_HasSingleBond);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomDFSIter_HasDoubleBond);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomDFSIter_HasAromaticBond);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomDFSIter_MatchesSMARTS);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomDFSIter_Clear);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomDFSIter_DoTransformations);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomDFSIter_ClassDescription);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomDFSIter_GetTitle);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomDFSIter_SetTitle);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomDFSIter_HasData);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomDFSIter_DeleteData);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomDFSIter_CloneData);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomDFSIter_DataSize);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomDFSIter_GetData);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomDFSIter_GetAllData);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomDFSIter_BeginData);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomDFSIter_EndData);
ZEND_NAMED_FUNCTION(_wrap_new_OBMolAtomBFSIter);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomBFSIter___deref__);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomBFSIter___ref__);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomBFSIter_CurrentDepth);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomBFSIter_Visit_set);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomBFSIter_Visit_get);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomBFSIter_Duplicate);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomBFSIter_SetIdx);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomBFSIter_SetId);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomBFSIter_SetHyb);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomBFSIter_SetAtomicNum);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomBFSIter_SetIsotope);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomBFSIter_SetImplicitValence);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomBFSIter_IncrementImplicitValence);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomBFSIter_DecrementImplicitValence);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomBFSIter_SetFormalCharge);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomBFSIter_SetSpinMultiplicity);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomBFSIter_SetType);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomBFSIter_SetPartialCharge);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomBFSIter_SetVector);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomBFSIter_SetCoordPtr);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomBFSIter_SetResidue);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomBFSIter_SetParent);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomBFSIter_SetAromatic);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomBFSIter_UnsetAromatic);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomBFSIter_SetClockwiseStereo);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomBFSIter_SetAntiClockwiseStereo);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomBFSIter_SetPositiveStereo);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomBFSIter_SetNegativeStereo);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomBFSIter_UnsetStereo);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomBFSIter_SetInRing);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomBFSIter_SetChiral);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomBFSIter_ClearCoordPtr);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomBFSIter_GetFormalCharge);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomBFSIter_GetAtomicNum);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomBFSIter_GetIsotope);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomBFSIter_GetSpinMultiplicity);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomBFSIter_GetAtomicMass);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomBFSIter_GetExactMass);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomBFSIter_GetIdx);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomBFSIter_GetIndex);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomBFSIter_GetId);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomBFSIter_GetCoordinateIdx);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomBFSIter_GetCIdx);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomBFSIter_GetValence);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomBFSIter_GetHyb);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomBFSIter_GetImplicitValence);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomBFSIter_GetHvyValence);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomBFSIter_GetHeteroValence);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomBFSIter_GetType);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomBFSIter_GetX);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomBFSIter_GetY);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomBFSIter_GetZ);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomBFSIter_x);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomBFSIter_y);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomBFSIter_z);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomBFSIter_GetCoordinate);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomBFSIter_GetVector);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomBFSIter_GetPartialCharge);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomBFSIter_GetResidue);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomBFSIter_GetParent);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomBFSIter_GetNewBondVector);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomBFSIter_GetBond);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomBFSIter_GetNextAtom);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomBFSIter_BeginBonds);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomBFSIter_EndBonds);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomBFSIter_BeginBond);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomBFSIter_NextBond);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomBFSIter_BeginNbrAtom);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomBFSIter_NextNbrAtom);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomBFSIter_GetDistance);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomBFSIter_GetAngle);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomBFSIter_NewResidue);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomBFSIter_AddResidue);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomBFSIter_DeleteResidue);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomBFSIter_AddBond);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomBFSIter_InsertBond);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomBFSIter_DeleteBond);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomBFSIter_ClearBond);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomBFSIter_HtoMethyl);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomBFSIter_SetHybAndGeom);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomBFSIter_ForceNoH);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomBFSIter_HasNoHForced);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomBFSIter_ForceImplH);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomBFSIter_HasImplHForced);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomBFSIter_CountFreeOxygens);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomBFSIter_CountFreeSulfurs);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomBFSIter_ImplicitHydrogenCount);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomBFSIter_ExplicitHydrogenCount);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomBFSIter_MemberOfRingCount);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomBFSIter_MemberOfRingSize);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomBFSIter_CountRingBonds);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomBFSIter_SmallestBondAngle);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomBFSIter_AverageBondAngle);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomBFSIter_BOSum);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomBFSIter_KBOSum);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomBFSIter_LewisAcidBaseCounts);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomBFSIter_HasResidue);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomBFSIter_IsHetAtom);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomBFSIter_IsHydrogen);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomBFSIter_IsCarbon);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomBFSIter_IsNitrogen);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomBFSIter_IsOxygen);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomBFSIter_IsSulfur);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomBFSIter_IsPhosphorus);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomBFSIter_IsAromatic);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomBFSIter_IsInRing);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomBFSIter_IsInRingSize);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomBFSIter_IsHeteroatom);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomBFSIter_IsNotCorH);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomBFSIter_IsConnected);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomBFSIter_IsOneThree);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomBFSIter_IsOneFour);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomBFSIter_IsCarboxylOxygen);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomBFSIter_IsPhosphateOxygen);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomBFSIter_IsSulfateOxygen);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomBFSIter_IsNitroOxygen);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomBFSIter_IsAmideNitrogen);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomBFSIter_IsPolarHydrogen);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomBFSIter_IsNonPolarHydrogen);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomBFSIter_IsAromaticNOxide);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomBFSIter_IsChiral);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomBFSIter_IsAxial);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomBFSIter_IsClockwise);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomBFSIter_IsAntiClockwise);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomBFSIter_IsPositiveStereo);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomBFSIter_IsNegativeStereo);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomBFSIter_HasChiralitySpecified);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomBFSIter_HasChiralVolume);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomBFSIter_IsHbondAcceptor);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomBFSIter_IsHbondAcceptorSimple);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomBFSIter_IsHbondDonor);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomBFSIter_IsHbondDonorH);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomBFSIter_IsMetal);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomBFSIter_HasAlphaBetaUnsat);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomBFSIter_HasBondOfOrder);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomBFSIter_CountBondsOfOrder);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomBFSIter_HighestBondOrder);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomBFSIter_HasNonSingleBond);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomBFSIter_HasSingleBond);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomBFSIter_HasDoubleBond);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomBFSIter_HasAromaticBond);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomBFSIter_MatchesSMARTS);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomBFSIter_Clear);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomBFSIter_DoTransformations);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomBFSIter_ClassDescription);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomBFSIter_GetTitle);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomBFSIter_SetTitle);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomBFSIter_HasData);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomBFSIter_DeleteData);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomBFSIter_CloneData);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomBFSIter_DataSize);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomBFSIter_GetData);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomBFSIter_GetAllData);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomBFSIter_BeginData);
ZEND_NAMED_FUNCTION(_wrap_OBMolAtomBFSIter_EndData);
ZEND_NAMED_FUNCTION(_wrap_new_OBMolBondBFSIter);
ZEND_NAMED_FUNCTION(_wrap_OBMolBondBFSIter___deref__);
ZEND_NAMED_FUNCTION(_wrap_OBMolBondBFSIter___ref__);
ZEND_NAMED_FUNCTION(_wrap_OBMolBondBFSIter_CurrentDepth);
ZEND_NAMED_FUNCTION(_wrap_OBMolBondBFSIter_Visit_set);
ZEND_NAMED_FUNCTION(_wrap_OBMolBondBFSIter_Visit_get);
ZEND_NAMED_FUNCTION(_wrap_OBMolBondBFSIter_SetIdx);
ZEND_NAMED_FUNCTION(_wrap_OBMolBondBFSIter_SetId);
ZEND_NAMED_FUNCTION(_wrap_OBMolBondBFSIter_SetBO);
ZEND_NAMED_FUNCTION(_wrap_OBMolBondBFSIter_SetBondOrder);
ZEND_NAMED_FUNCTION(_wrap_OBMolBondBFSIter_SetBegin);
ZEND_NAMED_FUNCTION(_wrap_OBMolBondBFSIter_SetEnd);
ZEND_NAMED_FUNCTION(_wrap_OBMolBondBFSIter_SetParent);
ZEND_NAMED_FUNCTION(_wrap_OBMolBondBFSIter_SetLength);
ZEND_NAMED_FUNCTION(_wrap_OBMolBondBFSIter_Set);
ZEND_NAMED_FUNCTION(_wrap_OBMolBondBFSIter_SetKSingle);
ZEND_NAMED_FUNCTION(_wrap_OBMolBondBFSIter_SetKDouble);
ZEND_NAMED_FUNCTION(_wrap_OBMolBondBFSIter_SetKTriple);
ZEND_NAMED_FUNCTION(_wrap_OBMolBondBFSIter_SetAromatic);
ZEND_NAMED_FUNCTION(_wrap_OBMolBondBFSIter_SetWedge);
ZEND_NAMED_FUNCTION(_wrap_OBMolBondBFSIter_SetHash);
ZEND_NAMED_FUNCTION(_wrap_OBMolBondBFSIter_SetWedgeOrHash);
ZEND_NAMED_FUNCTION(_wrap_OBMolBondBFSIter_SetUp);
ZEND_NAMED_FUNCTION(_wrap_OBMolBondBFSIter_SetDown);
ZEND_NAMED_FUNCTION(_wrap_OBMolBondBFSIter_SetInRing);
ZEND_NAMED_FUNCTION(_wrap_OBMolBondBFSIter_SetClosure);
ZEND_NAMED_FUNCTION(_wrap_OBMolBondBFSIter_UnsetHash);
ZEND_NAMED_FUNCTION(_wrap_OBMolBondBFSIter_UnsetWedge);
ZEND_NAMED_FUNCTION(_wrap_OBMolBondBFSIter_UnsetUp);
ZEND_NAMED_FUNCTION(_wrap_OBMolBondBFSIter_UnsetDown);
ZEND_NAMED_FUNCTION(_wrap_OBMolBondBFSIter_UnsetAromatic);
ZEND_NAMED_FUNCTION(_wrap_OBMolBondBFSIter_UnsetKekule);
ZEND_NAMED_FUNCTION(_wrap_OBMolBondBFSIter_GetIdx);
ZEND_NAMED_FUNCTION(_wrap_OBMolBondBFSIter_GetId);
ZEND_NAMED_FUNCTION(_wrap_OBMolBondBFSIter_GetBO);
ZEND_NAMED_FUNCTION(_wrap_OBMolBondBFSIter_GetBondOrder);
ZEND_NAMED_FUNCTION(_wrap_OBMolBondBFSIter_GetFlags);
ZEND_NAMED_FUNCTION(_wrap_OBMolBondBFSIter_GetBeginAtomIdx);
ZEND_NAMED_FUNCTION(_wrap_OBMolBondBFSIter_GetEndAtomIdx);
ZEND_NAMED_FUNCTION(_wrap_OBMolBondBFSIter_GetBeginAtom);
ZEND_NAMED_FUNCTION(_wrap_OBMolBondBFSIter_GetEndAtom);
ZEND_NAMED_FUNCTION(_wrap_OBMolBondBFSIter_GetNbrAtom);
ZEND_NAMED_FUNCTION(_wrap_OBMolBondBFSIter_GetParent);
ZEND_NAMED_FUNCTION(_wrap_OBMolBondBFSIter_GetEquibLength);
ZEND_NAMED_FUNCTION(_wrap_OBMolBondBFSIter_GetLength);
ZEND_NAMED_FUNCTION(_wrap_OBMolBondBFSIter_GetNbrAtomIdx);
ZEND_NAMED_FUNCTION(_wrap_OBMolBondBFSIter_FindSmallestRing);
ZEND_NAMED_FUNCTION(_wrap_OBMolBondBFSIter_IsAromatic);
ZEND_NAMED_FUNCTION(_wrap_OBMolBondBFSIter_IsInRing);
ZEND_NAMED_FUNCTION(_wrap_OBMolBondBFSIter_IsRotor);
ZEND_NAMED_FUNCTION(_wrap_OBMolBondBFSIter_IsAmide);
ZEND_NAMED_FUNCTION(_wrap_OBMolBondBFSIter_IsPrimaryAmide);
ZEND_NAMED_FUNCTION(_wrap_OBMolBondBFSIter_IsSecondaryAmide);
ZEND_NAMED_FUNCTION(_wrap_OBMolBondBFSIter_IsTertiaryAmide);
ZEND_NAMED_FUNCTION(_wrap_OBMolBondBFSIter_IsEster);
ZEND_NAMED_FUNCTION(_wrap_OBMolBondBFSIter_IsCarbonyl);
ZEND_NAMED_FUNCTION(_wrap_OBMolBondBFSIter_IsSingle);
ZEND_NAMED_FUNCTION(_wrap_OBMolBondBFSIter_IsDouble);
ZEND_NAMED_FUNCTION(_wrap_OBMolBondBFSIter_IsTriple);
ZEND_NAMED_FUNCTION(_wrap_OBMolBondBFSIter_IsKSingle);
ZEND_NAMED_FUNCTION(_wrap_OBMolBondBFSIter_IsKDouble);
ZEND_NAMED_FUNCTION(_wrap_OBMolBondBFSIter_IsKTriple);
ZEND_NAMED_FUNCTION(_wrap_OBMolBondBFSIter_IsClosure);
ZEND_NAMED_FUNCTION(_wrap_OBMolBondBFSIter_IsUp);
ZEND_NAMED_FUNCTION(_wrap_OBMolBondBFSIter_IsDown);
ZEND_NAMED_FUNCTION(_wrap_OBMolBondBFSIter_IsWedge);
ZEND_NAMED_FUNCTION(_wrap_OBMolBondBFSIter_IsHash);
ZEND_NAMED_FUNCTION(_wrap_OBMolBondBFSIter_IsWedgeOrHash);
ZEND_NAMED_FUNCTION(_wrap_OBMolBondBFSIter_IsCisOrTrans);
ZEND_NAMED_FUNCTION(_wrap_OBMolBondBFSIter_IsDoubleBondGeometry);
ZEND_NAMED_FUNCTION(_wrap_OBMolBondBFSIter_Clear);
ZEND_NAMED_FUNCTION(_wrap_OBMolBondBFSIter_DoTransformations);
ZEND_NAMED_FUNCTION(_wrap_OBMolBondBFSIter_ClassDescription);
ZEND_NAMED_FUNCTION(_wrap_OBMolBondBFSIter_GetTitle);
ZEND_NAMED_FUNCTION(_wrap_OBMolBondBFSIter_SetTitle);
ZEND_NAMED_FUNCTION(_wrap_OBMolBondBFSIter_HasData);
ZEND_NAMED_FUNCTION(_wrap_OBMolBondBFSIter_DeleteData);
ZEND_NAMED_FUNCTION(_wrap_OBMolBondBFSIter_CloneData);
ZEND_NAMED_FUNCTION(_wrap_OBMolBondBFSIter_DataSize);
ZEND_NAMED_FUNCTION(_wrap_OBMolBondBFSIter_GetData);
ZEND_NAMED_FUNCTION(_wrap_OBMolBondBFSIter_GetAllData);
ZEND_NAMED_FUNCTION(_wrap_OBMolBondBFSIter_BeginData);
ZEND_NAMED_FUNCTION(_wrap_OBMolBondBFSIter_EndData);
ZEND_NAMED_FUNCTION(_wrap_new_OBMolBondIter);
ZEND_NAMED_FUNCTION(_wrap_OBMolBondIter___deref__);
ZEND_NAMED_FUNCTION(_wrap_OBMolBondIter___ref__);
ZEND_NAMED_FUNCTION(_wrap_OBMolBondIter_Visit_set);
ZEND_NAMED_FUNCTION(_wrap_OBMolBondIter_Visit_get);
ZEND_NAMED_FUNCTION(_wrap_OBMolBondIter_SetIdx);
ZEND_NAMED_FUNCTION(_wrap_OBMolBondIter_SetId);
ZEND_NAMED_FUNCTION(_wrap_OBMolBondIter_SetBO);
ZEND_NAMED_FUNCTION(_wrap_OBMolBondIter_SetBondOrder);
ZEND_NAMED_FUNCTION(_wrap_OBMolBondIter_SetBegin);
ZEND_NAMED_FUNCTION(_wrap_OBMolBondIter_SetEnd);
ZEND_NAMED_FUNCTION(_wrap_OBMolBondIter_SetParent);
ZEND_NAMED_FUNCTION(_wrap_OBMolBondIter_SetLength);
ZEND_NAMED_FUNCTION(_wrap_OBMolBondIter_Set);
ZEND_NAMED_FUNCTION(_wrap_OBMolBondIter_SetKSingle);
ZEND_NAMED_FUNCTION(_wrap_OBMolBondIter_SetKDouble);
ZEND_NAMED_FUNCTION(_wrap_OBMolBondIter_SetKTriple);
ZEND_NAMED_FUNCTION(_wrap_OBMolBondIter_SetAromatic);
ZEND_NAMED_FUNCTION(_wrap_OBMolBondIter_SetWedge);
ZEND_NAMED_FUNCTION(_wrap_OBMolBondIter_SetHash);
ZEND_NAMED_FUNCTION(_wrap_OBMolBondIter_SetWedgeOrHash);
ZEND_NAMED_FUNCTION(_wrap_OBMolBondIter_SetUp);
ZEND_NAMED_FUNCTION(_wrap_OBMolBondIter_SetDown);
ZEND_NAMED_FUNCTION(_wrap_OBMolBondIter_SetInRing);
ZEND_NAMED_FUNCTION(_wrap_OBMolBondIter_SetClosure);
ZEND_NAMED_FUNCTION(_wrap_OBMolBondIter_UnsetHash);
ZEND_NAMED_FUNCTION(_wrap_OBMolBondIter_UnsetWedge);
ZEND_NAMED_FUNCTION(_wrap_OBMolBondIter_UnsetUp);
ZEND_NAMED_FUNCTION(_wrap_OBMolBondIter_UnsetDown);
ZEND_NAMED_FUNCTION(_wrap_OBMolBondIter_UnsetAromatic);
ZEND_NAMED_FUNCTION(_wrap_OBMolBondIter_UnsetKekule);
ZEND_NAMED_FUNCTION(_wrap_OBMolBondIter_GetIdx);
ZEND_NAMED_FUNCTION(_wrap_OBMolBondIter_GetId);
ZEND_NAMED_FUNCTION(_wrap_OBMolBondIter_GetBO);
ZEND_NAMED_FUNCTION(_wrap_OBMolBondIter_GetBondOrder);
ZEND_NAMED_FUNCTION(_wrap_OBMolBondIter_GetFlags);
ZEND_NAMED_FUNCTION(_wrap_OBMolBondIter_GetBeginAtomIdx);
ZEND_NAMED_FUNCTION(_wrap_OBMolBondIter_GetEndAtomIdx);
ZEND_NAMED_FUNCTION(_wrap_OBMolBondIter_GetBeginAtom);
ZEND_NAMED_FUNCTION(_wrap_OBMolBondIter_GetEndAtom);
ZEND_NAMED_FUNCTION(_wrap_OBMolBondIter_GetNbrAtom);
ZEND_NAMED_FUNCTION(_wrap_OBMolBondIter_GetParent);
ZEND_NAMED_FUNCTION(_wrap_OBMolBondIter_GetEquibLength);
ZEND_NAMED_FUNCTION(_wrap_OBMolBondIter_GetLength);
ZEND_NAMED_FUNCTION(_wrap_OBMolBondIter_GetNbrAtomIdx);
ZEND_NAMED_FUNCTION(_wrap_OBMolBondIter_FindSmallestRing);
ZEND_NAMED_FUNCTION(_wrap_OBMolBondIter_IsAromatic);
ZEND_NAMED_FUNCTION(_wrap_OBMolBondIter_IsInRing);
ZEND_NAMED_FUNCTION(_wrap_OBMolBondIter_IsRotor);
ZEND_NAMED_FUNCTION(_wrap_OBMolBondIter_IsAmide);
ZEND_NAMED_FUNCTION(_wrap_OBMolBondIter_IsPrimaryAmide);
ZEND_NAMED_FUNCTION(_wrap_OBMolBondIter_IsSecondaryAmide);
ZEND_NAMED_FUNCTION(_wrap_OBMolBondIter_IsTertiaryAmide);
ZEND_NAMED_FUNCTION(_wrap_OBMolBondIter_IsEster);
ZEND_NAMED_FUNCTION(_wrap_OBMolBondIter_IsCarbonyl);
ZEND_NAMED_FUNCTION(_wrap_OBMolBondIter_IsSingle);
ZEND_NAMED_FUNCTION(_wrap_OBMolBondIter_IsDouble);
ZEND_NAMED_FUNCTION(_wrap_OBMolBondIter_IsTriple);
ZEND_NAMED_FUNCTION(_wrap_OBMolBondIter_IsKSingle);
ZEND_NAMED_FUNCTION(_wrap_OBMolBondIter_IsKDouble);
ZEND_NAMED_FUNCTION(_wrap_OBMolBondIter_IsKTriple);
ZEND_NAMED_FUNCTION(_wrap_OBMolBondIter_IsClosure);
ZEND_NAMED_FUNCTION(_wrap_OBMolBondIter_IsUp);
ZEND_NAMED_FUNCTION(_wrap_OBMolBondIter_IsDown);
ZEND_NAMED_FUNCTION(_wrap_OBMolBondIter_IsWedge);
ZEND_NAMED_FUNCTION(_wrap_OBMolBondIter_IsHash);
ZEND_NAMED_FUNCTION(_wrap_OBMolBondIter_IsWedgeOrHash);
ZEND_NAMED_FUNCTION(_wrap_OBMolBondIter_IsCisOrTrans);
ZEND_NAMED_FUNCTION(_wrap_OBMolBondIter_IsDoubleBondGeometry);
ZEND_NAMED_FUNCTION(_wrap_OBMolBondIter_Clear);
ZEND_NAMED_FUNCTION(_wrap_OBMolBondIter_DoTransformations);
ZEND_NAMED_FUNCTION(_wrap_OBMolBondIter_ClassDescription);
ZEND_NAMED_FUNCTION(_wrap_OBMolBondIter_GetTitle);
ZEND_NAMED_FUNCTION(_wrap_OBMolBondIter_SetTitle);
ZEND_NAMED_FUNCTION(_wrap_OBMolBondIter_HasData);
ZEND_NAMED_FUNCTION(_wrap_OBMolBondIter_DeleteData);
ZEND_NAMED_FUNCTION(_wrap_OBMolBondIter_CloneData);
ZEND_NAMED_FUNCTION(_wrap_OBMolBondIter_DataSize);
ZEND_NAMED_FUNCTION(_wrap_OBMolBondIter_GetData);
ZEND_NAMED_FUNCTION(_wrap_OBMolBondIter_GetAllData);
ZEND_NAMED_FUNCTION(_wrap_OBMolBondIter_BeginData);
ZEND_NAMED_FUNCTION(_wrap_OBMolBondIter_EndData);
ZEND_NAMED_FUNCTION(_wrap_new_OBAtomAtomIter);
ZEND_NAMED_FUNCTION(_wrap_OBAtomAtomIter___deref__);
ZEND_NAMED_FUNCTION(_wrap_OBAtomAtomIter___ref__);
ZEND_NAMED_FUNCTION(_wrap_OBAtomAtomIter_Visit_set);
ZEND_NAMED_FUNCTION(_wrap_OBAtomAtomIter_Visit_get);
ZEND_NAMED_FUNCTION(_wrap_OBAtomAtomIter_Duplicate);
ZEND_NAMED_FUNCTION(_wrap_OBAtomAtomIter_SetIdx);
ZEND_NAMED_FUNCTION(_wrap_OBAtomAtomIter_SetId);
ZEND_NAMED_FUNCTION(_wrap_OBAtomAtomIter_SetHyb);
ZEND_NAMED_FUNCTION(_wrap_OBAtomAtomIter_SetAtomicNum);
ZEND_NAMED_FUNCTION(_wrap_OBAtomAtomIter_SetIsotope);
ZEND_NAMED_FUNCTION(_wrap_OBAtomAtomIter_SetImplicitValence);
ZEND_NAMED_FUNCTION(_wrap_OBAtomAtomIter_IncrementImplicitValence);
ZEND_NAMED_FUNCTION(_wrap_OBAtomAtomIter_DecrementImplicitValence);
ZEND_NAMED_FUNCTION(_wrap_OBAtomAtomIter_SetFormalCharge);
ZEND_NAMED_FUNCTION(_wrap_OBAtomAtomIter_SetSpinMultiplicity);
ZEND_NAMED_FUNCTION(_wrap_OBAtomAtomIter_SetType);
ZEND_NAMED_FUNCTION(_wrap_OBAtomAtomIter_SetPartialCharge);
ZEND_NAMED_FUNCTION(_wrap_OBAtomAtomIter_SetVector);
ZEND_NAMED_FUNCTION(_wrap_OBAtomAtomIter_SetCoordPtr);
ZEND_NAMED_FUNCTION(_wrap_OBAtomAtomIter_SetResidue);
ZEND_NAMED_FUNCTION(_wrap_OBAtomAtomIter_SetParent);
ZEND_NAMED_FUNCTION(_wrap_OBAtomAtomIter_SetAromatic);
ZEND_NAMED_FUNCTION(_wrap_OBAtomAtomIter_UnsetAromatic);
ZEND_NAMED_FUNCTION(_wrap_OBAtomAtomIter_SetClockwiseStereo);
ZEND_NAMED_FUNCTION(_wrap_OBAtomAtomIter_SetAntiClockwiseStereo);
ZEND_NAMED_FUNCTION(_wrap_OBAtomAtomIter_SetPositiveStereo);
ZEND_NAMED_FUNCTION(_wrap_OBAtomAtomIter_SetNegativeStereo);
ZEND_NAMED_FUNCTION(_wrap_OBAtomAtomIter_UnsetStereo);
ZEND_NAMED_FUNCTION(_wrap_OBAtomAtomIter_SetInRing);
ZEND_NAMED_FUNCTION(_wrap_OBAtomAtomIter_SetChiral);
ZEND_NAMED_FUNCTION(_wrap_OBAtomAtomIter_ClearCoordPtr);
ZEND_NAMED_FUNCTION(_wrap_OBAtomAtomIter_GetFormalCharge);
ZEND_NAMED_FUNCTION(_wrap_OBAtomAtomIter_GetAtomicNum);
ZEND_NAMED_FUNCTION(_wrap_OBAtomAtomIter_GetIsotope);
ZEND_NAMED_FUNCTION(_wrap_OBAtomAtomIter_GetSpinMultiplicity);
ZEND_NAMED_FUNCTION(_wrap_OBAtomAtomIter_GetAtomicMass);
ZEND_NAMED_FUNCTION(_wrap_OBAtomAtomIter_GetExactMass);
ZEND_NAMED_FUNCTION(_wrap_OBAtomAtomIter_GetIdx);
ZEND_NAMED_FUNCTION(_wrap_OBAtomAtomIter_GetIndex);
ZEND_NAMED_FUNCTION(_wrap_OBAtomAtomIter_GetId);
ZEND_NAMED_FUNCTION(_wrap_OBAtomAtomIter_GetCoordinateIdx);
ZEND_NAMED_FUNCTION(_wrap_OBAtomAtomIter_GetCIdx);
ZEND_NAMED_FUNCTION(_wrap_OBAtomAtomIter_GetValence);
ZEND_NAMED_FUNCTION(_wrap_OBAtomAtomIter_GetHyb);
ZEND_NAMED_FUNCTION(_wrap_OBAtomAtomIter_GetImplicitValence);
ZEND_NAMED_FUNCTION(_wrap_OBAtomAtomIter_GetHvyValence);
ZEND_NAMED_FUNCTION(_wrap_OBAtomAtomIter_GetHeteroValence);
ZEND_NAMED_FUNCTION(_wrap_OBAtomAtomIter_GetType);
ZEND_NAMED_FUNCTION(_wrap_OBAtomAtomIter_GetX);
ZEND_NAMED_FUNCTION(_wrap_OBAtomAtomIter_GetY);
ZEND_NAMED_FUNCTION(_wrap_OBAtomAtomIter_GetZ);
ZEND_NAMED_FUNCTION(_wrap_OBAtomAtomIter_x);
ZEND_NAMED_FUNCTION(_wrap_OBAtomAtomIter_y);
ZEND_NAMED_FUNCTION(_wrap_OBAtomAtomIter_z);
ZEND_NAMED_FUNCTION(_wrap_OBAtomAtomIter_GetCoordinate);
ZEND_NAMED_FUNCTION(_wrap_OBAtomAtomIter_GetVector);
ZEND_NAMED_FUNCTION(_wrap_OBAtomAtomIter_GetPartialCharge);
ZEND_NAMED_FUNCTION(_wrap_OBAtomAtomIter_GetResidue);
ZEND_NAMED_FUNCTION(_wrap_OBAtomAtomIter_GetParent);
ZEND_NAMED_FUNCTION(_wrap_OBAtomAtomIter_GetNewBondVector);
ZEND_NAMED_FUNCTION(_wrap_OBAtomAtomIter_GetBond);
ZEND_NAMED_FUNCTION(_wrap_OBAtomAtomIter_GetNextAtom);
ZEND_NAMED_FUNCTION(_wrap_OBAtomAtomIter_BeginBonds);
ZEND_NAMED_FUNCTION(_wrap_OBAtomAtomIter_EndBonds);
ZEND_NAMED_FUNCTION(_wrap_OBAtomAtomIter_BeginBond);
ZEND_NAMED_FUNCTION(_wrap_OBAtomAtomIter_NextBond);
ZEND_NAMED_FUNCTION(_wrap_OBAtomAtomIter_BeginNbrAtom);
ZEND_NAMED_FUNCTION(_wrap_OBAtomAtomIter_NextNbrAtom);
ZEND_NAMED_FUNCTION(_wrap_OBAtomAtomIter_GetDistance);
ZEND_NAMED_FUNCTION(_wrap_OBAtomAtomIter_GetAngle);
ZEND_NAMED_FUNCTION(_wrap_OBAtomAtomIter_NewResidue);
ZEND_NAMED_FUNCTION(_wrap_OBAtomAtomIter_AddResidue);
ZEND_NAMED_FUNCTION(_wrap_OBAtomAtomIter_DeleteResidue);
ZEND_NAMED_FUNCTION(_wrap_OBAtomAtomIter_AddBond);
ZEND_NAMED_FUNCTION(_wrap_OBAtomAtomIter_InsertBond);
ZEND_NAMED_FUNCTION(_wrap_OBAtomAtomIter_DeleteBond);
ZEND_NAMED_FUNCTION(_wrap_OBAtomAtomIter_ClearBond);
ZEND_NAMED_FUNCTION(_wrap_OBAtomAtomIter_HtoMethyl);
ZEND_NAMED_FUNCTION(_wrap_OBAtomAtomIter_SetHybAndGeom);
ZEND_NAMED_FUNCTION(_wrap_OBAtomAtomIter_ForceNoH);
ZEND_NAMED_FUNCTION(_wrap_OBAtomAtomIter_HasNoHForced);
ZEND_NAMED_FUNCTION(_wrap_OBAtomAtomIter_ForceImplH);
ZEND_NAMED_FUNCTION(_wrap_OBAtomAtomIter_HasImplHForced);
ZEND_NAMED_FUNCTION(_wrap_OBAtomAtomIter_CountFreeOxygens);
ZEND_NAMED_FUNCTION(_wrap_OBAtomAtomIter_CountFreeSulfurs);
ZEND_NAMED_FUNCTION(_wrap_OBAtomAtomIter_ImplicitHydrogenCount);
ZEND_NAMED_FUNCTION(_wrap_OBAtomAtomIter_ExplicitHydrogenCount);
ZEND_NAMED_FUNCTION(_wrap_OBAtomAtomIter_MemberOfRingCount);
ZEND_NAMED_FUNCTION(_wrap_OBAtomAtomIter_MemberOfRingSize);
ZEND_NAMED_FUNCTION(_wrap_OBAtomAtomIter_CountRingBonds);
ZEND_NAMED_FUNCTION(_wrap_OBAtomAtomIter_SmallestBondAngle);
ZEND_NAMED_FUNCTION(_wrap_OBAtomAtomIter_AverageBondAngle);
ZEND_NAMED_FUNCTION(_wrap_OBAtomAtomIter_BOSum);
ZEND_NAMED_FUNCTION(_wrap_OBAtomAtomIter_KBOSum);
ZEND_NAMED_FUNCTION(_wrap_OBAtomAtomIter_LewisAcidBaseCounts);
ZEND_NAMED_FUNCTION(_wrap_OBAtomAtomIter_HasResidue);
ZEND_NAMED_FUNCTION(_wrap_OBAtomAtomIter_IsHetAtom);
ZEND_NAMED_FUNCTION(_wrap_OBAtomAtomIter_IsHydrogen);
ZEND_NAMED_FUNCTION(_wrap_OBAtomAtomIter_IsCarbon);
ZEND_NAMED_FUNCTION(_wrap_OBAtomAtomIter_IsNitrogen);
ZEND_NAMED_FUNCTION(_wrap_OBAtomAtomIter_IsOxygen);
ZEND_NAMED_FUNCTION(_wrap_OBAtomAtomIter_IsSulfur);
ZEND_NAMED_FUNCTION(_wrap_OBAtomAtomIter_IsPhosphorus);
ZEND_NAMED_FUNCTION(_wrap_OBAtomAtomIter_IsAromatic);
ZEND_NAMED_FUNCTION(_wrap_OBAtomAtomIter_IsInRing);
ZEND_NAMED_FUNCTION(_wrap_OBAtomAtomIter_IsInRingSize);
ZEND_NAMED_FUNCTION(_wrap_OBAtomAtomIter_IsHeteroatom);
ZEND_NAMED_FUNCTION(_wrap_OBAtomAtomIter_IsNotCorH);
ZEND_NAMED_FUNCTION(_wrap_OBAtomAtomIter_IsConnected);
ZEND_NAMED_FUNCTION(_wrap_OBAtomAtomIter_IsOneThree);
ZEND_NAMED_FUNCTION(_wrap_OBAtomAtomIter_IsOneFour);
ZEND_NAMED_FUNCTION(_wrap_OBAtomAtomIter_IsCarboxylOxygen);
ZEND_NAMED_FUNCTION(_wrap_OBAtomAtomIter_IsPhosphateOxygen);
ZEND_NAMED_FUNCTION(_wrap_OBAtomAtomIter_IsSulfateOxygen);
ZEND_NAMED_FUNCTION(_wrap_OBAtomAtomIter_IsNitroOxygen);
ZEND_NAMED_FUNCTION(_wrap_OBAtomAtomIter_IsAmideNitrogen);
ZEND_NAMED_FUNCTION(_wrap_OBAtomAtomIter_IsPolarHydrogen);
ZEND_NAMED_FUNCTION(_wrap_OBAtomAtomIter_IsNonPolarHydrogen);
ZEND_NAMED_FUNCTION(_wrap_OBAtomAtomIter_IsAromaticNOxide);
ZEND_NAMED_FUNCTION(_wrap_OBAtomAtomIter_IsChiral);
ZEND_NAMED_FUNCTION(_wrap_OBAtomAtomIter_IsAxial);
ZEND_NAMED_FUNCTION(_wrap_OBAtomAtomIter_IsClockwise);
ZEND_NAMED_FUNCTION(_wrap_OBAtomAtomIter_IsAntiClockwise);
ZEND_NAMED_FUNCTION(_wrap_OBAtomAtomIter_IsPositiveStereo);
ZEND_NAMED_FUNCTION(_wrap_OBAtomAtomIter_IsNegativeStereo);
ZEND_NAMED_FUNCTION(_wrap_OBAtomAtomIter_HasChiralitySpecified);
ZEND_NAMED_FUNCTION(_wrap_OBAtomAtomIter_HasChiralVolume);
ZEND_NAMED_FUNCTION(_wrap_OBAtomAtomIter_IsHbondAcceptor);
ZEND_NAMED_FUNCTION(_wrap_OBAtomAtomIter_IsHbondAcceptorSimple);
ZEND_NAMED_FUNCTION(_wrap_OBAtomAtomIter_IsHbondDonor);
ZEND_NAMED_FUNCTION(_wrap_OBAtomAtomIter_IsHbondDonorH);
ZEND_NAMED_FUNCTION(_wrap_OBAtomAtomIter_IsMetal);
ZEND_NAMED_FUNCTION(_wrap_OBAtomAtomIter_HasAlphaBetaUnsat);
ZEND_NAMED_FUNCTION(_wrap_OBAtomAtomIter_HasBondOfOrder);
ZEND_NAMED_FUNCTION(_wrap_OBAtomAtomIter_CountBondsOfOrder);
ZEND_NAMED_FUNCTION(_wrap_OBAtomAtomIter_HighestBondOrder);
ZEND_NAMED_FUNCTION(_wrap_OBAtomAtomIter_HasNonSingleBond);
ZEND_NAMED_FUNCTION(_wrap_OBAtomAtomIter_HasSingleBond);
ZEND_NAMED_FUNCTION(_wrap_OBAtomAtomIter_HasDoubleBond);
ZEND_NAMED_FUNCTION(_wrap_OBAtomAtomIter_HasAromaticBond);
ZEND_NAMED_FUNCTION(_wrap_OBAtomAtomIter_MatchesSMARTS);
ZEND_NAMED_FUNCTION(_wrap_OBAtomAtomIter_Clear);
ZEND_NAMED_FUNCTION(_wrap_OBAtomAtomIter_DoTransformations);
ZEND_NAMED_FUNCTION(_wrap_OBAtomAtomIter_ClassDescription);
ZEND_NAMED_FUNCTION(_wrap_OBAtomAtomIter_GetTitle);
ZEND_NAMED_FUNCTION(_wrap_OBAtomAtomIter_SetTitle);
ZEND_NAMED_FUNCTION(_wrap_OBAtomAtomIter_HasData);
ZEND_NAMED_FUNCTION(_wrap_OBAtomAtomIter_DeleteData);
ZEND_NAMED_FUNCTION(_wrap_OBAtomAtomIter_CloneData);
ZEND_NAMED_FUNCTION(_wrap_OBAtomAtomIter_DataSize);
ZEND_NAMED_FUNCTION(_wrap_OBAtomAtomIter_GetData);
ZEND_NAMED_FUNCTION(_wrap_OBAtomAtomIter_GetAllData);
ZEND_NAMED_FUNCTION(_wrap_OBAtomAtomIter_BeginData);
ZEND_NAMED_FUNCTION(_wrap_OBAtomAtomIter_EndData);
ZEND_NAMED_FUNCTION(_wrap_new_OBAtomBondIter);
ZEND_NAMED_FUNCTION(_wrap_OBAtomBondIter___deref__);
ZEND_NAMED_FUNCTION(_wrap_OBAtomBondIter___ref__);
ZEND_NAMED_FUNCTION(_wrap_OBAtomBondIter_Visit_set);
ZEND_NAMED_FUNCTION(_wrap_OBAtomBondIter_Visit_get);
ZEND_NAMED_FUNCTION(_wrap_OBAtomBondIter_SetIdx);
ZEND_NAMED_FUNCTION(_wrap_OBAtomBondIter_SetId);
ZEND_NAMED_FUNCTION(_wrap_OBAtomBondIter_SetBO);
ZEND_NAMED_FUNCTION(_wrap_OBAtomBondIter_SetBondOrder);
ZEND_NAMED_FUNCTION(_wrap_OBAtomBondIter_SetBegin);
ZEND_NAMED_FUNCTION(_wrap_OBAtomBondIter_SetEnd);
ZEND_NAMED_FUNCTION(_wrap_OBAtomBondIter_SetParent);
ZEND_NAMED_FUNCTION(_wrap_OBAtomBondIter_SetLength);
ZEND_NAMED_FUNCTION(_wrap_OBAtomBondIter_Set);
ZEND_NAMED_FUNCTION(_wrap_OBAtomBondIter_SetKSingle);
ZEND_NAMED_FUNCTION(_wrap_OBAtomBondIter_SetKDouble);
ZEND_NAMED_FUNCTION(_wrap_OBAtomBondIter_SetKTriple);
ZEND_NAMED_FUNCTION(_wrap_OBAtomBondIter_SetAromatic);
ZEND_NAMED_FUNCTION(_wrap_OBAtomBondIter_SetWedge);
ZEND_NAMED_FUNCTION(_wrap_OBAtomBondIter_SetHash);
ZEND_NAMED_FUNCTION(_wrap_OBAtomBondIter_SetWedgeOrHash);
ZEND_NAMED_FUNCTION(_wrap_OBAtomBondIter_SetUp);
ZEND_NAMED_FUNCTION(_wrap_OBAtomBondIter_SetDown);
ZEND_NAMED_FUNCTION(_wrap_OBAtomBondIter_SetInRing);
ZEND_NAMED_FUNCTION(_wrap_OBAtomBondIter_SetClosure);
ZEND_NAMED_FUNCTION(_wrap_OBAtomBondIter_UnsetHash);
ZEND_NAMED_FUNCTION(_wrap_OBAtomBondIter_UnsetWedge);
ZEND_NAMED_FUNCTION(_wrap_OBAtomBondIter_UnsetUp);
ZEND_NAMED_FUNCTION(_wrap_OBAtomBondIter_UnsetDown);
ZEND_NAMED_FUNCTION(_wrap_OBAtomBondIter_UnsetAromatic);
ZEND_NAMED_FUNCTION(_wrap_OBAtomBondIter_UnsetKekule);
ZEND_NAMED_FUNCTION(_wrap_OBAtomBondIter_GetIdx);
ZEND_NAMED_FUNCTION(_wrap_OBAtomBondIter_GetId);
ZEND_NAMED_FUNCTION(_wrap_OBAtomBondIter_GetBO);
ZEND_NAMED_FUNCTION(_wrap_OBAtomBondIter_GetBondOrder);
ZEND_NAMED_FUNCTION(_wrap_OBAtomBondIter_GetFlags);
ZEND_NAMED_FUNCTION(_wrap_OBAtomBondIter_GetBeginAtomIdx);
ZEND_NAMED_FUNCTION(_wrap_OBAtomBondIter_GetEndAtomIdx);
ZEND_NAMED_FUNCTION(_wrap_OBAtomBondIter_GetBeginAtom);
ZEND_NAMED_FUNCTION(_wrap_OBAtomBondIter_GetEndAtom);
ZEND_NAMED_FUNCTION(_wrap_OBAtomBondIter_GetNbrAtom);
ZEND_NAMED_FUNCTION(_wrap_OBAtomBondIter_GetParent);
ZEND_NAMED_FUNCTION(_wrap_OBAtomBondIter_GetEquibLength);
ZEND_NAMED_FUNCTION(_wrap_OBAtomBondIter_GetLength);
ZEND_NAMED_FUNCTION(_wrap_OBAtomBondIter_GetNbrAtomIdx);
ZEND_NAMED_FUNCTION(_wrap_OBAtomBondIter_FindSmallestRing);
ZEND_NAMED_FUNCTION(_wrap_OBAtomBondIter_IsAromatic);
ZEND_NAMED_FUNCTION(_wrap_OBAtomBondIter_IsInRing);
ZEND_NAMED_FUNCTION(_wrap_OBAtomBondIter_IsRotor);
ZEND_NAMED_FUNCTION(_wrap_OBAtomBondIter_IsAmide);
ZEND_NAMED_FUNCTION(_wrap_OBAtomBondIter_IsPrimaryAmide);
ZEND_NAMED_FUNCTION(_wrap_OBAtomBondIter_IsSecondaryAmide);
ZEND_NAMED_FUNCTION(_wrap_OBAtomBondIter_IsTertiaryAmide);
ZEND_NAMED_FUNCTION(_wrap_OBAtomBondIter_IsEster);
ZEND_NAMED_FUNCTION(_wrap_OBAtomBondIter_IsCarbonyl);
ZEND_NAMED_FUNCTION(_wrap_OBAtomBondIter_IsSingle);
ZEND_NAMED_FUNCTION(_wrap_OBAtomBondIter_IsDouble);
ZEND_NAMED_FUNCTION(_wrap_OBAtomBondIter_IsTriple);
ZEND_NAMED_FUNCTION(_wrap_OBAtomBondIter_IsKSingle);
ZEND_NAMED_FUNCTION(_wrap_OBAtomBondIter_IsKDouble);
ZEND_NAMED_FUNCTION(_wrap_OBAtomBondIter_IsKTriple);
ZEND_NAMED_FUNCTION(_wrap_OBAtomBondIter_IsClosure);
ZEND_NAMED_FUNCTION(_wrap_OBAtomBondIter_IsUp);
ZEND_NAMED_FUNCTION(_wrap_OBAtomBondIter_IsDown);
ZEND_NAMED_FUNCTION(_wrap_OBAtomBondIter_IsWedge);
ZEND_NAMED_FUNCTION(_wrap_OBAtomBondIter_IsHash);
ZEND_NAMED_FUNCTION(_wrap_OBAtomBondIter_IsWedgeOrHash);
ZEND_NAMED_FUNCTION(_wrap_OBAtomBondIter_IsCisOrTrans);
ZEND_NAMED_FUNCTION(_wrap_OBAtomBondIter_IsDoubleBondGeometry);
ZEND_NAMED_FUNCTION(_wrap_OBAtomBondIter_Clear);
ZEND_NAMED_FUNCTION(_wrap_OBAtomBondIter_DoTransformations);
ZEND_NAMED_FUNCTION(_wrap_OBAtomBondIter_ClassDescription);
ZEND_NAMED_FUNCTION(_wrap_OBAtomBondIter_GetTitle);
ZEND_NAMED_FUNCTION(_wrap_OBAtomBondIter_SetTitle);
ZEND_NAMED_FUNCTION(_wrap_OBAtomBondIter_HasData);
ZEND_NAMED_FUNCTION(_wrap_OBAtomBondIter_DeleteData);
ZEND_NAMED_FUNCTION(_wrap_OBAtomBondIter_CloneData);
ZEND_NAMED_FUNCTION(_wrap_OBAtomBondIter_DataSize);
ZEND_NAMED_FUNCTION(_wrap_OBAtomBondIter_GetData);
ZEND_NAMED_FUNCTION(_wrap_OBAtomBondIter_GetAllData);
ZEND_NAMED_FUNCTION(_wrap_OBAtomBondIter_BeginData);
ZEND_NAMED_FUNCTION(_wrap_OBAtomBondIter_EndData);
ZEND_NAMED_FUNCTION(_wrap_new_OBResidueIter);
ZEND_NAMED_FUNCTION(_wrap_OBResidueIter___deref__);
ZEND_NAMED_FUNCTION(_wrap_OBResidueIter___ref__);
ZEND_NAMED_FUNCTION(_wrap_OBResidueIter_AddAtom);
ZEND_NAMED_FUNCTION(_wrap_OBResidueIter_InsertAtom);
ZEND_NAMED_FUNCTION(_wrap_OBResidueIter_RemoveAtom);
ZEND_NAMED_FUNCTION(_wrap_OBResidueIter_SetName);
ZEND_NAMED_FUNCTION(_wrap_OBResidueIter_SetNum);
ZEND_NAMED_FUNCTION(_wrap_OBResidueIter_SetChain);
ZEND_NAMED_FUNCTION(_wrap_OBResidueIter_SetChainNum);
ZEND_NAMED_FUNCTION(_wrap_OBResidueIter_SetIdx);
ZEND_NAMED_FUNCTION(_wrap_OBResidueIter_SetInsertionCode);
ZEND_NAMED_FUNCTION(_wrap_OBResidueIter_SetAtomID);
ZEND_NAMED_FUNCTION(_wrap_OBResidueIter_SetHetAtom);
ZEND_NAMED_FUNCTION(_wrap_OBResidueIter_SetSerialNum);
ZEND_NAMED_FUNCTION(_wrap_OBResidueIter_GetName);
ZEND_NAMED_FUNCTION(_wrap_OBResidueIter_GetNum);
ZEND_NAMED_FUNCTION(_wrap_OBResidueIter_GetNumString);
ZEND_NAMED_FUNCTION(_wrap_OBResidueIter_GetNumAtoms);
ZEND_NAMED_FUNCTION(_wrap_OBResidueIter_GetChain);
ZEND_NAMED_FUNCTION(_wrap_OBResidueIter_GetChainNum);
ZEND_NAMED_FUNCTION(_wrap_OBResidueIter_GetIdx);
ZEND_NAMED_FUNCTION(_wrap_OBResidueIter_GetResKey);
ZEND_NAMED_FUNCTION(_wrap_OBResidueIter_GetAtoms);
ZEND_NAMED_FUNCTION(_wrap_OBResidueIter_GetBonds);
ZEND_NAMED_FUNCTION(_wrap_OBResidueIter_GetAtomID);
ZEND_NAMED_FUNCTION(_wrap_OBResidueIter_GetSerialNum);
ZEND_NAMED_FUNCTION(_wrap_OBResidueIter_GetInsertionCode);
ZEND_NAMED_FUNCTION(_wrap_OBResidueIter_GetAminoAcidProperty);
ZEND_NAMED_FUNCTION(_wrap_OBResidueIter_GetAtomProperty);
ZEND_NAMED_FUNCTION(_wrap_OBResidueIter_GetResidueProperty);
ZEND_NAMED_FUNCTION(_wrap_OBResidueIter_IsHetAtom);
ZEND_NAMED_FUNCTION(_wrap_OBResidueIter_IsResidueType);
ZEND_NAMED_FUNCTION(_wrap_OBResidueIter_BeginAtoms);
ZEND_NAMED_FUNCTION(_wrap_OBResidueIter_EndAtoms);
ZEND_NAMED_FUNCTION(_wrap_OBResidueIter_BeginAtom);
ZEND_NAMED_FUNCTION(_wrap_OBResidueIter_NextAtom);
ZEND_NAMED_FUNCTION(_wrap_OBResidueIter_Clear);
ZEND_NAMED_FUNCTION(_wrap_OBResidueIter_DoTransformations);
ZEND_NAMED_FUNCTION(_wrap_OBResidueIter_ClassDescription);
ZEND_NAMED_FUNCTION(_wrap_OBResidueIter_GetTitle);
ZEND_NAMED_FUNCTION(_wrap_OBResidueIter_SetTitle);
ZEND_NAMED_FUNCTION(_wrap_OBResidueIter_HasData);
ZEND_NAMED_FUNCTION(_wrap_OBResidueIter_DeleteData);
ZEND_NAMED_FUNCTION(_wrap_OBResidueIter_CloneData);
ZEND_NAMED_FUNCTION(_wrap_OBResidueIter_DataSize);
ZEND_NAMED_FUNCTION(_wrap_OBResidueIter_GetData);
ZEND_NAMED_FUNCTION(_wrap_OBResidueIter_GetAllData);
ZEND_NAMED_FUNCTION(_wrap_OBResidueIter_BeginData);
ZEND_NAMED_FUNCTION(_wrap_OBResidueIter_EndData);
ZEND_NAMED_FUNCTION(_wrap_new_OBResidueAtomIter);
ZEND_NAMED_FUNCTION(_wrap_OBResidueAtomIter___deref__);
ZEND_NAMED_FUNCTION(_wrap_OBResidueAtomIter___ref__);
ZEND_NAMED_FUNCTION(_wrap_OBResidueAtomIter_Visit_set);
ZEND_NAMED_FUNCTION(_wrap_OBResidueAtomIter_Visit_get);
ZEND_NAMED_FUNCTION(_wrap_OBResidueAtomIter_Duplicate);
ZEND_NAMED_FUNCTION(_wrap_OBResidueAtomIter_SetIdx);
ZEND_NAMED_FUNCTION(_wrap_OBResidueAtomIter_SetId);
ZEND_NAMED_FUNCTION(_wrap_OBResidueAtomIter_SetHyb);
ZEND_NAMED_FUNCTION(_wrap_OBResidueAtomIter_SetAtomicNum);
ZEND_NAMED_FUNCTION(_wrap_OBResidueAtomIter_SetIsotope);
ZEND_NAMED_FUNCTION(_wrap_OBResidueAtomIter_SetImplicitValence);
ZEND_NAMED_FUNCTION(_wrap_OBResidueAtomIter_IncrementImplicitValence);
ZEND_NAMED_FUNCTION(_wrap_OBResidueAtomIter_DecrementImplicitValence);
ZEND_NAMED_FUNCTION(_wrap_OBResidueAtomIter_SetFormalCharge);
ZEND_NAMED_FUNCTION(_wrap_OBResidueAtomIter_SetSpinMultiplicity);
ZEND_NAMED_FUNCTION(_wrap_OBResidueAtomIter_SetType);
ZEND_NAMED_FUNCTION(_wrap_OBResidueAtomIter_SetPartialCharge);
ZEND_NAMED_FUNCTION(_wrap_OBResidueAtomIter_SetVector);
ZEND_NAMED_FUNCTION(_wrap_OBResidueAtomIter_SetCoordPtr);
ZEND_NAMED_FUNCTION(_wrap_OBResidueAtomIter_SetResidue);
ZEND_NAMED_FUNCTION(_wrap_OBResidueAtomIter_SetParent);
ZEND_NAMED_FUNCTION(_wrap_OBResidueAtomIter_SetAromatic);
ZEND_NAMED_FUNCTION(_wrap_OBResidueAtomIter_UnsetAromatic);
ZEND_NAMED_FUNCTION(_wrap_OBResidueAtomIter_SetClockwiseStereo);
ZEND_NAMED_FUNCTION(_wrap_OBResidueAtomIter_SetAntiClockwiseStereo);
ZEND_NAMED_FUNCTION(_wrap_OBResidueAtomIter_SetPositiveStereo);
ZEND_NAMED_FUNCTION(_wrap_OBResidueAtomIter_SetNegativeStereo);
ZEND_NAMED_FUNCTION(_wrap_OBResidueAtomIter_UnsetStereo);
ZEND_NAMED_FUNCTION(_wrap_OBResidueAtomIter_SetInRing);
ZEND_NAMED_FUNCTION(_wrap_OBResidueAtomIter_SetChiral);
ZEND_NAMED_FUNCTION(_wrap_OBResidueAtomIter_ClearCoordPtr);
ZEND_NAMED_FUNCTION(_wrap_OBResidueAtomIter_GetFormalCharge);
ZEND_NAMED_FUNCTION(_wrap_OBResidueAtomIter_GetAtomicNum);
ZEND_NAMED_FUNCTION(_wrap_OBResidueAtomIter_GetIsotope);
ZEND_NAMED_FUNCTION(_wrap_OBResidueAtomIter_GetSpinMultiplicity);
ZEND_NAMED_FUNCTION(_wrap_OBResidueAtomIter_GetAtomicMass);
ZEND_NAMED_FUNCTION(_wrap_OBResidueAtomIter_GetExactMass);
ZEND_NAMED_FUNCTION(_wrap_OBResidueAtomIter_GetIdx);
ZEND_NAMED_FUNCTION(_wrap_OBResidueAtomIter_GetIndex);
ZEND_NAMED_FUNCTION(_wrap_OBResidueAtomIter_GetId);
ZEND_NAMED_FUNCTION(_wrap_OBResidueAtomIter_GetCoordinateIdx);
ZEND_NAMED_FUNCTION(_wrap_OBResidueAtomIter_GetCIdx);
ZEND_NAMED_FUNCTION(_wrap_OBResidueAtomIter_GetValence);
ZEND_NAMED_FUNCTION(_wrap_OBResidueAtomIter_GetHyb);
ZEND_NAMED_FUNCTION(_wrap_OBResidueAtomIter_GetImplicitValence);
ZEND_NAMED_FUNCTION(_wrap_OBResidueAtomIter_GetHvyValence);
ZEND_NAMED_FUNCTION(_wrap_OBResidueAtomIter_GetHeteroValence);
ZEND_NAMED_FUNCTION(_wrap_OBResidueAtomIter_GetType);
ZEND_NAMED_FUNCTION(_wrap_OBResidueAtomIter_GetX);
ZEND_NAMED_FUNCTION(_wrap_OBResidueAtomIter_GetY);
ZEND_NAMED_FUNCTION(_wrap_OBResidueAtomIter_GetZ);
ZEND_NAMED_FUNCTION(_wrap_OBResidueAtomIter_x);
ZEND_NAMED_FUNCTION(_wrap_OBResidueAtomIter_y);
ZEND_NAMED_FUNCTION(_wrap_OBResidueAtomIter_z);
ZEND_NAMED_FUNCTION(_wrap_OBResidueAtomIter_GetCoordinate);
ZEND_NAMED_FUNCTION(_wrap_OBResidueAtomIter_GetVector);
ZEND_NAMED_FUNCTION(_wrap_OBResidueAtomIter_GetPartialCharge);
ZEND_NAMED_FUNCTION(_wrap_OBResidueAtomIter_GetResidue);
ZEND_NAMED_FUNCTION(_wrap_OBResidueAtomIter_GetParent);
ZEND_NAMED_FUNCTION(_wrap_OBResidueAtomIter_GetNewBondVector);
ZEND_NAMED_FUNCTION(_wrap_OBResidueAtomIter_GetBond);
ZEND_NAMED_FUNCTION(_wrap_OBResidueAtomIter_GetNextAtom);
ZEND_NAMED_FUNCTION(_wrap_OBResidueAtomIter_BeginBonds);
ZEND_NAMED_FUNCTION(_wrap_OBResidueAtomIter_EndBonds);
ZEND_NAMED_FUNCTION(_wrap_OBResidueAtomIter_BeginBond);
ZEND_NAMED_FUNCTION(_wrap_OBResidueAtomIter_NextBond);
ZEND_NAMED_FUNCTION(_wrap_OBResidueAtomIter_BeginNbrAtom);
ZEND_NAMED_FUNCTION(_wrap_OBResidueAtomIter_NextNbrAtom);
ZEND_NAMED_FUNCTION(_wrap_OBResidueAtomIter_GetDistance);
ZEND_NAMED_FUNCTION(_wrap_OBResidueAtomIter_GetAngle);
ZEND_NAMED_FUNCTION(_wrap_OBResidueAtomIter_NewResidue);
ZEND_NAMED_FUNCTION(_wrap_OBResidueAtomIter_AddResidue);
ZEND_NAMED_FUNCTION(_wrap_OBResidueAtomIter_DeleteResidue);
ZEND_NAMED_FUNCTION(_wrap_OBResidueAtomIter_AddBond);
ZEND_NAMED_FUNCTION(_wrap_OBResidueAtomIter_InsertBond);
ZEND_NAMED_FUNCTION(_wrap_OBResidueAtomIter_DeleteBond);
ZEND_NAMED_FUNCTION(_wrap_OBResidueAtomIter_ClearBond);
ZEND_NAMED_FUNCTION(_wrap_OBResidueAtomIter_HtoMethyl);
ZEND_NAMED_FUNCTION(_wrap_OBResidueAtomIter_SetHybAndGeom);
ZEND_NAMED_FUNCTION(_wrap_OBResidueAtomIter_ForceNoH);
ZEND_NAMED_FUNCTION(_wrap_OBResidueAtomIter_HasNoHForced);
ZEND_NAMED_FUNCTION(_wrap_OBResidueAtomIter_ForceImplH);
ZEND_NAMED_FUNCTION(_wrap_OBResidueAtomIter_HasImplHForced);
ZEND_NAMED_FUNCTION(_wrap_OBResidueAtomIter_CountFreeOxygens);
ZEND_NAMED_FUNCTION(_wrap_OBResidueAtomIter_CountFreeSulfurs);
ZEND_NAMED_FUNCTION(_wrap_OBResidueAtomIter_ImplicitHydrogenCount);
ZEND_NAMED_FUNCTION(_wrap_OBResidueAtomIter_ExplicitHydrogenCount);
ZEND_NAMED_FUNCTION(_wrap_OBResidueAtomIter_MemberOfRingCount);
ZEND_NAMED_FUNCTION(_wrap_OBResidueAtomIter_MemberOfRingSize);
ZEND_NAMED_FUNCTION(_wrap_OBResidueAtomIter_CountRingBonds);
ZEND_NAMED_FUNCTION(_wrap_OBResidueAtomIter_SmallestBondAngle);
ZEND_NAMED_FUNCTION(_wrap_OBResidueAtomIter_AverageBondAngle);
ZEND_NAMED_FUNCTION(_wrap_OBResidueAtomIter_BOSum);
ZEND_NAMED_FUNCTION(_wrap_OBResidueAtomIter_KBOSum);
ZEND_NAMED_FUNCTION(_wrap_OBResidueAtomIter_LewisAcidBaseCounts);
ZEND_NAMED_FUNCTION(_wrap_OBResidueAtomIter_HasResidue);
ZEND_NAMED_FUNCTION(_wrap_OBResidueAtomIter_IsHetAtom);
ZEND_NAMED_FUNCTION(_wrap_OBResidueAtomIter_IsHydrogen);
ZEND_NAMED_FUNCTION(_wrap_OBResidueAtomIter_IsCarbon);
ZEND_NAMED_FUNCTION(_wrap_OBResidueAtomIter_IsNitrogen);
ZEND_NAMED_FUNCTION(_wrap_OBResidueAtomIter_IsOxygen);
ZEND_NAMED_FUNCTION(_wrap_OBResidueAtomIter_IsSulfur);
ZEND_NAMED_FUNCTION(_wrap_OBResidueAtomIter_IsPhosphorus);
ZEND_NAMED_FUNCTION(_wrap_OBResidueAtomIter_IsAromatic);
ZEND_NAMED_FUNCTION(_wrap_OBResidueAtomIter_IsInRing);
ZEND_NAMED_FUNCTION(_wrap_OBResidueAtomIter_IsInRingSize);
ZEND_NAMED_FUNCTION(_wrap_OBResidueAtomIter_IsHeteroatom);
ZEND_NAMED_FUNCTION(_wrap_OBResidueAtomIter_IsNotCorH);
ZEND_NAMED_FUNCTION(_wrap_OBResidueAtomIter_IsConnected);
ZEND_NAMED_FUNCTION(_wrap_OBResidueAtomIter_IsOneThree);
ZEND_NAMED_FUNCTION(_wrap_OBResidueAtomIter_IsOneFour);
ZEND_NAMED_FUNCTION(_wrap_OBResidueAtomIter_IsCarboxylOxygen);
ZEND_NAMED_FUNCTION(_wrap_OBResidueAtomIter_IsPhosphateOxygen);
ZEND_NAMED_FUNCTION(_wrap_OBResidueAtomIter_IsSulfateOxygen);
ZEND_NAMED_FUNCTION(_wrap_OBResidueAtomIter_IsNitroOxygen);
ZEND_NAMED_FUNCTION(_wrap_OBResidueAtomIter_IsAmideNitrogen);
ZEND_NAMED_FUNCTION(_wrap_OBResidueAtomIter_IsPolarHydrogen);
ZEND_NAMED_FUNCTION(_wrap_OBResidueAtomIter_IsNonPolarHydrogen);
ZEND_NAMED_FUNCTION(_wrap_OBResidueAtomIter_IsAromaticNOxide);
ZEND_NAMED_FUNCTION(_wrap_OBResidueAtomIter_IsChiral);
ZEND_NAMED_FUNCTION(_wrap_OBResidueAtomIter_IsAxial);
ZEND_NAMED_FUNCTION(_wrap_OBResidueAtomIter_IsClockwise);
ZEND_NAMED_FUNCTION(_wrap_OBResidueAtomIter_IsAntiClockwise);
ZEND_NAMED_FUNCTION(_wrap_OBResidueAtomIter_IsPositiveStereo);
ZEND_NAMED_FUNCTION(_wrap_OBResidueAtomIter_IsNegativeStereo);
ZEND_NAMED_FUNCTION(_wrap_OBResidueAtomIter_HasChiralitySpecified);
ZEND_NAMED_FUNCTION(_wrap_OBResidueAtomIter_HasChiralVolume);
ZEND_NAMED_FUNCTION(_wrap_OBResidueAtomIter_IsHbondAcceptor);
ZEND_NAMED_FUNCTION(_wrap_OBResidueAtomIter_IsHbondAcceptorSimple);
ZEND_NAMED_FUNCTION(_wrap_OBResidueAtomIter_IsHbondDonor);
ZEND_NAMED_FUNCTION(_wrap_OBResidueAtomIter_IsHbondDonorH);
ZEND_NAMED_FUNCTION(_wrap_OBResidueAtomIter_IsMetal);
ZEND_NAMED_FUNCTION(_wrap_OBResidueAtomIter_HasAlphaBetaUnsat);
ZEND_NAMED_FUNCTION(_wrap_OBResidueAtomIter_HasBondOfOrder);
ZEND_NAMED_FUNCTION(_wrap_OBResidueAtomIter_CountBondsOfOrder);
ZEND_NAMED_FUNCTION(_wrap_OBResidueAtomIter_HighestBondOrder);
ZEND_NAMED_FUNCTION(_wrap_OBResidueAtomIter_HasNonSingleBond);
ZEND_NAMED_FUNCTION(_wrap_OBResidueAtomIter_HasSingleBond);
ZEND_NAMED_FUNCTION(_wrap_OBResidueAtomIter_HasDoubleBond);
ZEND_NAMED_FUNCTION(_wrap_OBResidueAtomIter_HasAromaticBond);
ZEND_NAMED_FUNCTION(_wrap_OBResidueAtomIter_MatchesSMARTS);
ZEND_NAMED_FUNCTION(_wrap_OBResidueAtomIter_Clear);
ZEND_NAMED_FUNCTION(_wrap_OBResidueAtomIter_DoTransformations);
ZEND_NAMED_FUNCTION(_wrap_OBResidueAtomIter_ClassDescription);
ZEND_NAMED_FUNCTION(_wrap_OBResidueAtomIter_GetTitle);
ZEND_NAMED_FUNCTION(_wrap_OBResidueAtomIter_SetTitle);
ZEND_NAMED_FUNCTION(_wrap_OBResidueAtomIter_HasData);
ZEND_NAMED_FUNCTION(_wrap_OBResidueAtomIter_DeleteData);
ZEND_NAMED_FUNCTION(_wrap_OBResidueAtomIter_CloneData);
ZEND_NAMED_FUNCTION(_wrap_OBResidueAtomIter_DataSize);
ZEND_NAMED_FUNCTION(_wrap_OBResidueAtomIter_GetData);
ZEND_NAMED_FUNCTION(_wrap_OBResidueAtomIter_GetAllData);
ZEND_NAMED_FUNCTION(_wrap_OBResidueAtomIter_BeginData);
ZEND_NAMED_FUNCTION(_wrap_OBResidueAtomIter_EndData);
ZEND_NAMED_FUNCTION(_wrap_new_OBMolAngleIter);
ZEND_NAMED_FUNCTION(_wrap_OBMolAngleIter___ref__);
ZEND_NAMED_FUNCTION(_wrap_new_OBMolTorsionIter);
ZEND_NAMED_FUNCTION(_wrap_OBMolTorsionIter___ref__);
ZEND_NAMED_FUNCTION(_wrap_new_OBMolPairIter);
ZEND_NAMED_FUNCTION(_wrap_OBMolPairIter___ref__);
ZEND_NAMED_FUNCTION(_wrap_new_OBMolRingIter);
ZEND_NAMED_FUNCTION(_wrap_OBMolRingIter___deref__);
ZEND_NAMED_FUNCTION(_wrap_OBMolRingIter___ref__);
ZEND_NAMED_FUNCTION(_wrap_OBMolRingIter_ring_id_set);
ZEND_NAMED_FUNCTION(_wrap_OBMolRingIter_ring_id_get);
ZEND_NAMED_FUNCTION(_wrap_OBMolRingIter__path_set);
ZEND_NAMED_FUNCTION(_wrap_OBMolRingIter__path_get);
ZEND_NAMED_FUNCTION(_wrap_OBMolRingIter__pathset_set);
ZEND_NAMED_FUNCTION(_wrap_OBMolRingIter__pathset_get);
ZEND_NAMED_FUNCTION(_wrap_OBMolRingIter_Size);
ZEND_NAMED_FUNCTION(_wrap_OBMolRingIter_PathSize);
ZEND_NAMED_FUNCTION(_wrap_OBMolRingIter_IsAromatic);
ZEND_NAMED_FUNCTION(_wrap_OBMolRingIter_SetType);
ZEND_NAMED_FUNCTION(_wrap_OBMolRingIter_GetType);
ZEND_NAMED_FUNCTION(_wrap_OBMolRingIter_GetRootAtom);
ZEND_NAMED_FUNCTION(_wrap_OBMolRingIter_IsMember);
ZEND_NAMED_FUNCTION(_wrap_OBMolRingIter_IsInRing);
ZEND_NAMED_FUNCTION(_wrap_OBMolRingIter_SetParent);
ZEND_NAMED_FUNCTION(_wrap_OBMolRingIter_GetParent);
ZEND_NAMED_FUNCTION(_wrap_OBMolRingIter_findCenterAndNormal);
#endif /* PHP_OPENBABEL_H */
|