├── .gitignore ├── CHANGES.rst ├── LICENSE ├── MANIFEST.in ├── README.rst ├── cxx2rs ├── __init__.py ├── __main__.py ├── parser.py ├── rustify.py └── stringify.py ├── run_tests.py ├── setup.cfg ├── setup.py └── tests ├── function_arg.c ├── function_arg.rs ├── return_union.c ├── structs.c └── structs.rs /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | *.o 3 | 4 | *.egg-info 5 | build 6 | dist 7 | -------------------------------------------------------------------------------- /CHANGES.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuels/cxx2rs/HEAD/CHANGES.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuels/cxx2rs/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | include *.rst LICENSE 2 | -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuels/cxx2rs/HEAD/README.rst -------------------------------------------------------------------------------- /cxx2rs/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = '0.3.8' 2 | 3 | 4 | -------------------------------------------------------------------------------- /cxx2rs/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuels/cxx2rs/HEAD/cxx2rs/__main__.py -------------------------------------------------------------------------------- /cxx2rs/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuels/cxx2rs/HEAD/cxx2rs/parser.py -------------------------------------------------------------------------------- /cxx2rs/rustify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuels/cxx2rs/HEAD/cxx2rs/rustify.py -------------------------------------------------------------------------------- /cxx2rs/stringify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuels/cxx2rs/HEAD/cxx2rs/stringify.py -------------------------------------------------------------------------------- /run_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuels/cxx2rs/HEAD/run_tests.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuels/cxx2rs/HEAD/setup.py -------------------------------------------------------------------------------- /tests/function_arg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuels/cxx2rs/HEAD/tests/function_arg.c -------------------------------------------------------------------------------- /tests/function_arg.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuels/cxx2rs/HEAD/tests/function_arg.rs -------------------------------------------------------------------------------- /tests/return_union.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuels/cxx2rs/HEAD/tests/return_union.c -------------------------------------------------------------------------------- /tests/structs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuels/cxx2rs/HEAD/tests/structs.c -------------------------------------------------------------------------------- /tests/structs.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuels/cxx2rs/HEAD/tests/structs.rs --------------------------------------------------------------------------------