├── .github └── workflows │ └── test.yml ├── .gitignore ├── CHANGES.md ├── LICENSE ├── Makefile ├── README.md ├── ctypes-foreign.opam ├── ctypes.opam ├── dune ├── dune-project ├── examples ├── cstubs_structs │ ├── Makefile │ ├── README.md │ ├── bindings.ml │ ├── bindings_c_gen.ml │ ├── main.ml │ └── myocamlbuild.ml ├── date │ ├── foreign │ │ ├── date.ml │ │ ├── date.mli │ │ └── dune │ └── stub-generation │ │ ├── bindings │ │ ├── date_stubs.ml │ │ └── dune │ │ ├── date_cmd.ml │ │ ├── dune │ │ └── stub-generator │ │ ├── date_stub_generator.ml │ │ └── dune ├── fts │ ├── foreign │ │ ├── dune │ │ ├── fts.ml │ │ ├── fts.mli │ │ └── fts_cmd.ml │ └── stub-generation │ │ ├── bindings │ │ ├── dune │ │ ├── fts.mli │ │ ├── fts_bindings.ml │ │ └── fts_types.ml │ │ ├── config │ │ ├── discover.ml │ │ ├── discover.mli │ │ └── dune │ │ ├── dune │ │ ├── fts_cmd.ml │ │ ├── fts_if.ml │ │ └── stub-generator │ │ ├── dune │ │ └── fts_stub_generator.ml ├── ncurses │ ├── foreign │ │ ├── dune │ │ ├── ncurses.ml │ │ ├── ncurses.mli │ │ └── ncurses_cmd.ml │ └── stub-generation │ │ ├── bindings │ │ ├── dune │ │ └── ncurses_bindings.ml │ │ ├── dune │ │ ├── ncurses_stub_cmd.ml │ │ └── stub-generator │ │ ├── dune │ │ └── ncurses_stub_generator.ml └── sigset │ ├── sigset.ml │ └── sigset.mli ├── src ├── configure │ ├── dune │ └── gen_c_primitives.ml ├── cstubs │ ├── cstubs.ml │ ├── cstubs.mli │ ├── cstubs_analysis.ml │ ├── cstubs_analysis.mli │ ├── cstubs_c_language.ml │ ├── cstubs_emit_c.ml │ ├── cstubs_errors.ml │ ├── cstubs_errors.mli │ ├── cstubs_generate_c.ml │ ├── cstubs_generate_c.mli │ ├── cstubs_generate_ml.ml │ ├── cstubs_generate_ml.mli │ ├── cstubs_inverted.ml │ ├── cstubs_inverted.mli │ ├── cstubs_public_name.ml │ ├── cstubs_public_name.mli │ ├── cstubs_structs.ml │ ├── cstubs_structs.mli │ ├── ctypes_path.ml │ ├── ctypes_path.mli │ └── dune ├── ctypes-foreign │ ├── config │ │ ├── discover.ml │ │ ├── dune │ │ └── gen_libffi_abi.ml │ ├── ctypes_closure_properties.ml │ ├── ctypes_closure_properties.mli │ ├── ctypes_ffi.ml │ ├── ctypes_ffi.mli │ ├── ctypes_ffi_stubs.ml │ ├── ctypes_foreign_basis.ml │ ├── ctypes_foreign_threaded_stubs.ml │ ├── ctypes_weak_ref.ml │ ├── ctypes_weak_ref.mli │ ├── dl.ml.unix │ ├── dl.ml.win │ ├── dl.mli │ ├── dl_stubs.c.unix │ ├── dl_stubs.c.win │ ├── dune │ ├── ffi_call_stubs.c │ ├── ffi_type_stubs.c │ ├── foreign.ml │ ├── foreign.mli │ ├── foreign_threaded_stubs.c │ └── libffi_abi.mli ├── ctypes-top │ ├── dune │ └── install_ctypes_printers.ml └── ctypes │ ├── complexL.ml │ ├── complexL.mli │ ├── complex_stubs.c │ ├── cstubs_internals.h │ ├── cstubs_internals.ml │ ├── cstubs_internals.mli │ ├── ctypes.ml │ ├── ctypes.mli │ ├── ctypes_bigarray.ml │ ├── ctypes_bigarray.mli │ ├── ctypes_bigarray_stubs.ml │ ├── ctypes_bigarrays.c │ ├── ctypes_coerce.ml │ ├── ctypes_coerce.mli │ ├── ctypes_complex_compatibility.h │ ├── ctypes_complex_stubs.h │ ├── ctypes_cstubs_internals.h │ ├── ctypes_ldouble_stubs.h │ ├── ctypes_managed_buffer_stubs.h │ ├── ctypes_memory.ml │ ├── ctypes_memory_stubs.ml │ ├── ctypes_primitive_types.ml │ ├── ctypes_primitive_types.mli │ ├── ctypes_primitives.h │ ├── ctypes_ptr.ml │ ├── ctypes_raw_pointer.h │ ├── ctypes_roots.c │ ├── ctypes_roots_stubs.ml │ ├── ctypes_static.ml │ ├── ctypes_static.mli │ ├── ctypes_std_view_stubs.ml │ ├── ctypes_std_views.ml │ ├── ctypes_structs.ml │ ├── ctypes_structs.mli │ ├── ctypes_structs_computed.ml │ ├── ctypes_structs_computed.mli │ ├── ctypes_type_info_stubs.h │ ├── ctypes_type_printing.ml │ ├── ctypes_type_printing.mli │ ├── ctypes_types.mli │ ├── ctypes_value_printing.ml │ ├── ctypes_value_printing_stubs.ml │ ├── dune │ ├── lDouble.ml │ ├── lDouble.mli │ ├── ldouble_stubs.c │ ├── managed_buffer_stubs.c │ ├── posixTypes.ml │ ├── posixTypes.mli │ ├── posix_types_stubs.c │ ├── raw_pointer_stubs.c │ └── type_info_stubs.c └── tests ├── bench-micro ├── Makefile ├── bench_micro.gnuplot ├── bench_micro.ml ├── bench_micro_bindings.ml ├── bench_micro_gen.ml ├── bench_micro_interpreted.gnuplot ├── bench_micro_lib.c ├── bench_micro_stubs.c ├── bench_micro_stubs.h └── process_summary.ml ├── clib ├── dune ├── test_functions.c └── test_functions.h ├── config ├── dune └── test_config.ml ├── flags ├── dune ├── gen.ml └── gen.mli ├── test-alignment ├── dune └── test_alignment.ml ├── test-arrays ├── dune ├── stub-generator │ ├── driver.ml │ └── dune ├── stubs │ ├── dune │ └── functions.ml └── test_array.ml ├── test-bigarrays ├── dune ├── stub-generator │ ├── driver.ml │ └── dune ├── stubs │ ├── dune │ └── functions.ml └── test_bigarrays.ml ├── test-bools ├── dune ├── stub-generator │ ├── driver.ml │ └── dune ├── stubs │ ├── dune │ └── functions.ml └── test_bools.ml ├── test-builtins ├── dune ├── stub-generator │ ├── driver.ml │ └── dune ├── stubs │ ├── dune │ └── functions.ml └── test_builtins.ml ├── test-callback_lifetime ├── dune ├── stub-generator │ ├── driver.ml │ └── dune ├── stubs │ ├── dune │ └── functions.ml └── test_callback_lifetime.ml ├── test-closure-type-promotion ├── dune ├── stub-generator │ ├── driver.ml │ └── dune ├── stubs │ ├── dune │ └── functions.ml └── test_closure_type_promotion.ml ├── test-coercions ├── dune ├── stub-generator │ ├── driver.ml │ └── dune ├── stubs │ ├── dune │ └── functions.ml └── test_coercions.ml ├── test-complex ├── dune ├── stub-generator │ ├── driver.ml │ └── dune ├── stubs │ ├── dune │ └── functions.ml └── test_complex.ml ├── test-constants ├── dune ├── stub-generator │ ├── driver.ml │ └── dune ├── stubs │ ├── dune │ └── types.ml └── test_constants.ml ├── test-cstdlib ├── dune ├── stub-generator │ ├── driver.ml │ └── dune ├── stubs │ ├── dune │ └── functions.ml └── test_cstdlib.ml ├── test-custom_ops ├── dune └── test_custom_ops.ml ├── test-enums ├── dune ├── struct-stub-generator │ ├── driver.ml │ └── dune ├── struct-stubs │ ├── dune │ └── types.ml ├── stub-generator │ ├── driver.ml │ └── dune ├── stubs │ ├── dune │ └── functions.ml └── test_enums.ml ├── test-finalisers ├── dune └── test_finalisers.ml ├── test-foreign-errno ├── dune └── test_errno.ml ├── test-foreign_values ├── dune ├── stub-generator │ ├── driver.ml │ └── dune ├── stubs │ ├── dune │ └── functions.ml └── test_foreign_values.ml ├── test-funptrs ├── dune ├── stub-generator │ ├── driver.ml │ └── dune ├── stubs │ ├── dune │ └── functions.ml └── test_funptrs.ml ├── test-higher_order ├── dune ├── stub-generator │ ├── driver.ml │ └── dune ├── stubs │ ├── dune │ └── functions.ml └── test_higher_order.ml ├── test-integers ├── dune ├── stub-generator │ ├── driver.ml │ └── dune ├── stubs │ ├── dune │ └── functions.ml └── test_integers.ml ├── test-ldouble ├── dune └── test_ldouble.ml ├── test-lifetime ├── dune ├── stub-generator │ ├── driver.ml │ └── dune ├── stubs │ ├── dune │ └── functions.ml └── test_lifetime.ml ├── test-lwt-jobs ├── dune ├── stub-generator │ ├── driver.ml │ └── dune ├── stubs │ ├── dune │ ├── functions.ml │ └── types.ml └── test_lwt_jobs.ml ├── test-lwt-preemptive ├── dune ├── stub-generator │ ├── driver.ml │ └── dune ├── stubs │ ├── dune │ ├── functions.ml │ └── types.ml └── test_lwt_jobs.ml ├── test-macros ├── dune ├── stub-generator │ ├── driver.ml │ └── dune ├── stubs │ ├── dune │ └── functions.ml └── test_macros.ml ├── test-marshal ├── dune └── test_marshal.ml ├── test-oo_style ├── dune ├── stub-generator │ ├── driver.ml │ └── dune ├── stubs │ ├── dune │ └── functions.ml └── test_oo_style.ml ├── test-passable ├── dune └── test_passable.ml ├── test-passing-ocaml-values ├── dune ├── stub-generator │ ├── driver.ml │ └── dune ├── stubs │ ├── dune │ └── functions.ml └── test_passing_ocaml_values.ml ├── test-pointers ├── dune ├── stub-generator │ ├── driver.ml │ └── dune ├── stubs │ ├── dune │ └── functions.ml └── test_pointers.ml ├── test-raw ├── dune └── test_raw.ml ├── test-returning-errno-lwt-jobs ├── dune ├── stub-generator │ ├── driver.ml │ └── dune ├── stubs │ ├── dune │ ├── functions.ml │ └── types.ml └── test_returning_errno.ml ├── test-returning-errno-lwt-preemptive ├── dune ├── stub-generator │ ├── driver.ml │ └── dune ├── stubs │ ├── dune │ ├── functions.ml │ └── types.ml └── test_returning_errno.ml ├── test-returning-errno ├── dune ├── stub-generator │ ├── driver.ml │ └── dune ├── stubs │ ├── dune │ ├── functions.ml │ └── types.ml └── test_returning_errno.ml ├── test-roots ├── dune └── test_roots.ml ├── test-sizeof ├── dune └── test_sizeof.ml ├── test-structs ├── dune ├── stub-generator │ ├── driver.ml │ └── dune ├── stubs │ ├── dune │ ├── functions.ml │ └── types.ml └── test_structs.ml ├── test-stubs ├── dune └── test_stubs.ml ├── test-threads ├── dune ├── stub-generator │ ├── driver.ml │ └── dune ├── stubs │ ├── dune │ └── functions.ml └── test_threads.ml ├── test-type_printing ├── dune ├── stub-generator │ ├── driver.ml │ └── dune ├── stubs │ ├── dune │ └── types.ml └── test_type_printing.ml ├── test-unions ├── dune ├── stub-generator │ ├── driver.ml │ └── dune ├── stubs │ ├── dune │ ├── functions.ml │ └── types.ml └── test_unions.ml ├── test-value_printing ├── dune ├── stub-generator │ ├── driver.ml │ └── dune ├── stubs │ ├── dune │ └── functions.ml └── test_value_printing.ml ├── test-variadic ├── dune ├── stub-generator │ ├── driver.ml │ └── dune ├── stubs │ ├── dune │ └── functions.ml └── test_variadic.ml ├── test-views ├── dune ├── stub-generator │ ├── driver.ml │ └── dune ├── stubs │ ├── dune │ └── functions.ml └── test_views.ml └── tests-common ├── dune └── tests_common.ml /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .*.swp 2 | _build 3 | _opam 4 | *.install 5 | .merlin 6 | -------------------------------------------------------------------------------- /CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/CHANGES.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/README.md -------------------------------------------------------------------------------- /ctypes-foreign.opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/ctypes-foreign.opam -------------------------------------------------------------------------------- /ctypes.opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/ctypes.opam -------------------------------------------------------------------------------- /dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/dune -------------------------------------------------------------------------------- /dune-project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/dune-project -------------------------------------------------------------------------------- /examples/cstubs_structs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/examples/cstubs_structs/Makefile -------------------------------------------------------------------------------- /examples/cstubs_structs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/examples/cstubs_structs/README.md -------------------------------------------------------------------------------- /examples/cstubs_structs/bindings.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/examples/cstubs_structs/bindings.ml -------------------------------------------------------------------------------- /examples/cstubs_structs/bindings_c_gen.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/examples/cstubs_structs/bindings_c_gen.ml -------------------------------------------------------------------------------- /examples/cstubs_structs/main.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/examples/cstubs_structs/main.ml -------------------------------------------------------------------------------- /examples/cstubs_structs/myocamlbuild.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/examples/cstubs_structs/myocamlbuild.ml -------------------------------------------------------------------------------- /examples/date/foreign/date.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/examples/date/foreign/date.ml -------------------------------------------------------------------------------- /examples/date/foreign/date.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/examples/date/foreign/date.mli -------------------------------------------------------------------------------- /examples/date/foreign/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/examples/date/foreign/dune -------------------------------------------------------------------------------- /examples/date/stub-generation/bindings/date_stubs.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/examples/date/stub-generation/bindings/date_stubs.ml -------------------------------------------------------------------------------- /examples/date/stub-generation/bindings/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/examples/date/stub-generation/bindings/dune -------------------------------------------------------------------------------- /examples/date/stub-generation/date_cmd.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/examples/date/stub-generation/date_cmd.ml -------------------------------------------------------------------------------- /examples/date/stub-generation/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/examples/date/stub-generation/dune -------------------------------------------------------------------------------- /examples/date/stub-generation/stub-generator/date_stub_generator.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/examples/date/stub-generation/stub-generator/date_stub_generator.ml -------------------------------------------------------------------------------- /examples/date/stub-generation/stub-generator/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/examples/date/stub-generation/stub-generator/dune -------------------------------------------------------------------------------- /examples/fts/foreign/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/examples/fts/foreign/dune -------------------------------------------------------------------------------- /examples/fts/foreign/fts.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/examples/fts/foreign/fts.ml -------------------------------------------------------------------------------- /examples/fts/foreign/fts.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/examples/fts/foreign/fts.mli -------------------------------------------------------------------------------- /examples/fts/foreign/fts_cmd.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/examples/fts/foreign/fts_cmd.ml -------------------------------------------------------------------------------- /examples/fts/stub-generation/bindings/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/examples/fts/stub-generation/bindings/dune -------------------------------------------------------------------------------- /examples/fts/stub-generation/bindings/fts.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/examples/fts/stub-generation/bindings/fts.mli -------------------------------------------------------------------------------- /examples/fts/stub-generation/bindings/fts_bindings.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/examples/fts/stub-generation/bindings/fts_bindings.ml -------------------------------------------------------------------------------- /examples/fts/stub-generation/bindings/fts_types.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/examples/fts/stub-generation/bindings/fts_types.ml -------------------------------------------------------------------------------- /examples/fts/stub-generation/config/discover.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/examples/fts/stub-generation/config/discover.ml -------------------------------------------------------------------------------- /examples/fts/stub-generation/config/discover.mli: -------------------------------------------------------------------------------- 1 | (* empty *) 2 | -------------------------------------------------------------------------------- /examples/fts/stub-generation/config/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/examples/fts/stub-generation/config/dune -------------------------------------------------------------------------------- /examples/fts/stub-generation/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/examples/fts/stub-generation/dune -------------------------------------------------------------------------------- /examples/fts/stub-generation/fts_cmd.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/examples/fts/stub-generation/fts_cmd.ml -------------------------------------------------------------------------------- /examples/fts/stub-generation/fts_if.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/examples/fts/stub-generation/fts_if.ml -------------------------------------------------------------------------------- /examples/fts/stub-generation/stub-generator/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/examples/fts/stub-generation/stub-generator/dune -------------------------------------------------------------------------------- /examples/fts/stub-generation/stub-generator/fts_stub_generator.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/examples/fts/stub-generation/stub-generator/fts_stub_generator.ml -------------------------------------------------------------------------------- /examples/ncurses/foreign/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/examples/ncurses/foreign/dune -------------------------------------------------------------------------------- /examples/ncurses/foreign/ncurses.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/examples/ncurses/foreign/ncurses.ml -------------------------------------------------------------------------------- /examples/ncurses/foreign/ncurses.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/examples/ncurses/foreign/ncurses.mli -------------------------------------------------------------------------------- /examples/ncurses/foreign/ncurses_cmd.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/examples/ncurses/foreign/ncurses_cmd.ml -------------------------------------------------------------------------------- /examples/ncurses/stub-generation/bindings/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/examples/ncurses/stub-generation/bindings/dune -------------------------------------------------------------------------------- /examples/ncurses/stub-generation/bindings/ncurses_bindings.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/examples/ncurses/stub-generation/bindings/ncurses_bindings.ml -------------------------------------------------------------------------------- /examples/ncurses/stub-generation/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/examples/ncurses/stub-generation/dune -------------------------------------------------------------------------------- /examples/ncurses/stub-generation/ncurses_stub_cmd.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/examples/ncurses/stub-generation/ncurses_stub_cmd.ml -------------------------------------------------------------------------------- /examples/ncurses/stub-generation/stub-generator/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/examples/ncurses/stub-generation/stub-generator/dune -------------------------------------------------------------------------------- /examples/ncurses/stub-generation/stub-generator/ncurses_stub_generator.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/examples/ncurses/stub-generation/stub-generator/ncurses_stub_generator.ml -------------------------------------------------------------------------------- /examples/sigset/sigset.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/examples/sigset/sigset.ml -------------------------------------------------------------------------------- /examples/sigset/sigset.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/examples/sigset/sigset.mli -------------------------------------------------------------------------------- /src/configure/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/src/configure/dune -------------------------------------------------------------------------------- /src/configure/gen_c_primitives.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/src/configure/gen_c_primitives.ml -------------------------------------------------------------------------------- /src/cstubs/cstubs.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/src/cstubs/cstubs.ml -------------------------------------------------------------------------------- /src/cstubs/cstubs.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/src/cstubs/cstubs.mli -------------------------------------------------------------------------------- /src/cstubs/cstubs_analysis.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/src/cstubs/cstubs_analysis.ml -------------------------------------------------------------------------------- /src/cstubs/cstubs_analysis.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/src/cstubs/cstubs_analysis.mli -------------------------------------------------------------------------------- /src/cstubs/cstubs_c_language.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/src/cstubs/cstubs_c_language.ml -------------------------------------------------------------------------------- /src/cstubs/cstubs_emit_c.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/src/cstubs/cstubs_emit_c.ml -------------------------------------------------------------------------------- /src/cstubs/cstubs_errors.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/src/cstubs/cstubs_errors.ml -------------------------------------------------------------------------------- /src/cstubs/cstubs_errors.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/src/cstubs/cstubs_errors.mli -------------------------------------------------------------------------------- /src/cstubs/cstubs_generate_c.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/src/cstubs/cstubs_generate_c.ml -------------------------------------------------------------------------------- /src/cstubs/cstubs_generate_c.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/src/cstubs/cstubs_generate_c.mli -------------------------------------------------------------------------------- /src/cstubs/cstubs_generate_ml.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/src/cstubs/cstubs_generate_ml.ml -------------------------------------------------------------------------------- /src/cstubs/cstubs_generate_ml.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/src/cstubs/cstubs_generate_ml.mli -------------------------------------------------------------------------------- /src/cstubs/cstubs_inverted.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/src/cstubs/cstubs_inverted.ml -------------------------------------------------------------------------------- /src/cstubs/cstubs_inverted.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/src/cstubs/cstubs_inverted.mli -------------------------------------------------------------------------------- /src/cstubs/cstubs_public_name.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/src/cstubs/cstubs_public_name.ml -------------------------------------------------------------------------------- /src/cstubs/cstubs_public_name.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/src/cstubs/cstubs_public_name.mli -------------------------------------------------------------------------------- /src/cstubs/cstubs_structs.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/src/cstubs/cstubs_structs.ml -------------------------------------------------------------------------------- /src/cstubs/cstubs_structs.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/src/cstubs/cstubs_structs.mli -------------------------------------------------------------------------------- /src/cstubs/ctypes_path.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/src/cstubs/ctypes_path.ml -------------------------------------------------------------------------------- /src/cstubs/ctypes_path.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/src/cstubs/ctypes_path.mli -------------------------------------------------------------------------------- /src/cstubs/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/src/cstubs/dune -------------------------------------------------------------------------------- /src/ctypes-foreign/config/discover.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/src/ctypes-foreign/config/discover.ml -------------------------------------------------------------------------------- /src/ctypes-foreign/config/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/src/ctypes-foreign/config/dune -------------------------------------------------------------------------------- /src/ctypes-foreign/config/gen_libffi_abi.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/src/ctypes-foreign/config/gen_libffi_abi.ml -------------------------------------------------------------------------------- /src/ctypes-foreign/ctypes_closure_properties.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/src/ctypes-foreign/ctypes_closure_properties.ml -------------------------------------------------------------------------------- /src/ctypes-foreign/ctypes_closure_properties.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/src/ctypes-foreign/ctypes_closure_properties.mli -------------------------------------------------------------------------------- /src/ctypes-foreign/ctypes_ffi.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/src/ctypes-foreign/ctypes_ffi.ml -------------------------------------------------------------------------------- /src/ctypes-foreign/ctypes_ffi.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/src/ctypes-foreign/ctypes_ffi.mli -------------------------------------------------------------------------------- /src/ctypes-foreign/ctypes_ffi_stubs.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/src/ctypes-foreign/ctypes_ffi_stubs.ml -------------------------------------------------------------------------------- /src/ctypes-foreign/ctypes_foreign_basis.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/src/ctypes-foreign/ctypes_foreign_basis.ml -------------------------------------------------------------------------------- /src/ctypes-foreign/ctypes_foreign_threaded_stubs.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/src/ctypes-foreign/ctypes_foreign_threaded_stubs.ml -------------------------------------------------------------------------------- /src/ctypes-foreign/ctypes_weak_ref.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/src/ctypes-foreign/ctypes_weak_ref.ml -------------------------------------------------------------------------------- /src/ctypes-foreign/ctypes_weak_ref.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/src/ctypes-foreign/ctypes_weak_ref.mli -------------------------------------------------------------------------------- /src/ctypes-foreign/dl.ml.unix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/src/ctypes-foreign/dl.ml.unix -------------------------------------------------------------------------------- /src/ctypes-foreign/dl.ml.win: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/src/ctypes-foreign/dl.ml.win -------------------------------------------------------------------------------- /src/ctypes-foreign/dl.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/src/ctypes-foreign/dl.mli -------------------------------------------------------------------------------- /src/ctypes-foreign/dl_stubs.c.unix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/src/ctypes-foreign/dl_stubs.c.unix -------------------------------------------------------------------------------- /src/ctypes-foreign/dl_stubs.c.win: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/src/ctypes-foreign/dl_stubs.c.win -------------------------------------------------------------------------------- /src/ctypes-foreign/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/src/ctypes-foreign/dune -------------------------------------------------------------------------------- /src/ctypes-foreign/ffi_call_stubs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/src/ctypes-foreign/ffi_call_stubs.c -------------------------------------------------------------------------------- /src/ctypes-foreign/ffi_type_stubs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/src/ctypes-foreign/ffi_type_stubs.c -------------------------------------------------------------------------------- /src/ctypes-foreign/foreign.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/src/ctypes-foreign/foreign.ml -------------------------------------------------------------------------------- /src/ctypes-foreign/foreign.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/src/ctypes-foreign/foreign.mli -------------------------------------------------------------------------------- /src/ctypes-foreign/foreign_threaded_stubs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/src/ctypes-foreign/foreign_threaded_stubs.c -------------------------------------------------------------------------------- /src/ctypes-foreign/libffi_abi.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/src/ctypes-foreign/libffi_abi.mli -------------------------------------------------------------------------------- /src/ctypes-top/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/src/ctypes-top/dune -------------------------------------------------------------------------------- /src/ctypes-top/install_ctypes_printers.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/src/ctypes-top/install_ctypes_printers.ml -------------------------------------------------------------------------------- /src/ctypes/complexL.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/src/ctypes/complexL.ml -------------------------------------------------------------------------------- /src/ctypes/complexL.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/src/ctypes/complexL.mli -------------------------------------------------------------------------------- /src/ctypes/complex_stubs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/src/ctypes/complex_stubs.c -------------------------------------------------------------------------------- /src/ctypes/cstubs_internals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/src/ctypes/cstubs_internals.h -------------------------------------------------------------------------------- /src/ctypes/cstubs_internals.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/src/ctypes/cstubs_internals.ml -------------------------------------------------------------------------------- /src/ctypes/cstubs_internals.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/src/ctypes/cstubs_internals.mli -------------------------------------------------------------------------------- /src/ctypes/ctypes.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/src/ctypes/ctypes.ml -------------------------------------------------------------------------------- /src/ctypes/ctypes.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/src/ctypes/ctypes.mli -------------------------------------------------------------------------------- /src/ctypes/ctypes_bigarray.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/src/ctypes/ctypes_bigarray.ml -------------------------------------------------------------------------------- /src/ctypes/ctypes_bigarray.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/src/ctypes/ctypes_bigarray.mli -------------------------------------------------------------------------------- /src/ctypes/ctypes_bigarray_stubs.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/src/ctypes/ctypes_bigarray_stubs.ml -------------------------------------------------------------------------------- /src/ctypes/ctypes_bigarrays.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/src/ctypes/ctypes_bigarrays.c -------------------------------------------------------------------------------- /src/ctypes/ctypes_coerce.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/src/ctypes/ctypes_coerce.ml -------------------------------------------------------------------------------- /src/ctypes/ctypes_coerce.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/src/ctypes/ctypes_coerce.mli -------------------------------------------------------------------------------- /src/ctypes/ctypes_complex_compatibility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/src/ctypes/ctypes_complex_compatibility.h -------------------------------------------------------------------------------- /src/ctypes/ctypes_complex_stubs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/src/ctypes/ctypes_complex_stubs.h -------------------------------------------------------------------------------- /src/ctypes/ctypes_cstubs_internals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/src/ctypes/ctypes_cstubs_internals.h -------------------------------------------------------------------------------- /src/ctypes/ctypes_ldouble_stubs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/src/ctypes/ctypes_ldouble_stubs.h -------------------------------------------------------------------------------- /src/ctypes/ctypes_managed_buffer_stubs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/src/ctypes/ctypes_managed_buffer_stubs.h -------------------------------------------------------------------------------- /src/ctypes/ctypes_memory.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/src/ctypes/ctypes_memory.ml -------------------------------------------------------------------------------- /src/ctypes/ctypes_memory_stubs.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/src/ctypes/ctypes_memory_stubs.ml -------------------------------------------------------------------------------- /src/ctypes/ctypes_primitive_types.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/src/ctypes/ctypes_primitive_types.ml -------------------------------------------------------------------------------- /src/ctypes/ctypes_primitive_types.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/src/ctypes/ctypes_primitive_types.mli -------------------------------------------------------------------------------- /src/ctypes/ctypes_primitives.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/src/ctypes/ctypes_primitives.h -------------------------------------------------------------------------------- /src/ctypes/ctypes_ptr.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/src/ctypes/ctypes_ptr.ml -------------------------------------------------------------------------------- /src/ctypes/ctypes_raw_pointer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/src/ctypes/ctypes_raw_pointer.h -------------------------------------------------------------------------------- /src/ctypes/ctypes_roots.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/src/ctypes/ctypes_roots.c -------------------------------------------------------------------------------- /src/ctypes/ctypes_roots_stubs.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/src/ctypes/ctypes_roots_stubs.ml -------------------------------------------------------------------------------- /src/ctypes/ctypes_static.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/src/ctypes/ctypes_static.ml -------------------------------------------------------------------------------- /src/ctypes/ctypes_static.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/src/ctypes/ctypes_static.mli -------------------------------------------------------------------------------- /src/ctypes/ctypes_std_view_stubs.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/src/ctypes/ctypes_std_view_stubs.ml -------------------------------------------------------------------------------- /src/ctypes/ctypes_std_views.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/src/ctypes/ctypes_std_views.ml -------------------------------------------------------------------------------- /src/ctypes/ctypes_structs.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/src/ctypes/ctypes_structs.ml -------------------------------------------------------------------------------- /src/ctypes/ctypes_structs.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/src/ctypes/ctypes_structs.mli -------------------------------------------------------------------------------- /src/ctypes/ctypes_structs_computed.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/src/ctypes/ctypes_structs_computed.ml -------------------------------------------------------------------------------- /src/ctypes/ctypes_structs_computed.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/src/ctypes/ctypes_structs_computed.mli -------------------------------------------------------------------------------- /src/ctypes/ctypes_type_info_stubs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/src/ctypes/ctypes_type_info_stubs.h -------------------------------------------------------------------------------- /src/ctypes/ctypes_type_printing.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/src/ctypes/ctypes_type_printing.ml -------------------------------------------------------------------------------- /src/ctypes/ctypes_type_printing.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/src/ctypes/ctypes_type_printing.mli -------------------------------------------------------------------------------- /src/ctypes/ctypes_types.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/src/ctypes/ctypes_types.mli -------------------------------------------------------------------------------- /src/ctypes/ctypes_value_printing.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/src/ctypes/ctypes_value_printing.ml -------------------------------------------------------------------------------- /src/ctypes/ctypes_value_printing_stubs.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/src/ctypes/ctypes_value_printing_stubs.ml -------------------------------------------------------------------------------- /src/ctypes/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/src/ctypes/dune -------------------------------------------------------------------------------- /src/ctypes/lDouble.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/src/ctypes/lDouble.ml -------------------------------------------------------------------------------- /src/ctypes/lDouble.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/src/ctypes/lDouble.mli -------------------------------------------------------------------------------- /src/ctypes/ldouble_stubs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/src/ctypes/ldouble_stubs.c -------------------------------------------------------------------------------- /src/ctypes/managed_buffer_stubs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/src/ctypes/managed_buffer_stubs.c -------------------------------------------------------------------------------- /src/ctypes/posixTypes.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/src/ctypes/posixTypes.ml -------------------------------------------------------------------------------- /src/ctypes/posixTypes.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/src/ctypes/posixTypes.mli -------------------------------------------------------------------------------- /src/ctypes/posix_types_stubs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/src/ctypes/posix_types_stubs.c -------------------------------------------------------------------------------- /src/ctypes/raw_pointer_stubs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/src/ctypes/raw_pointer_stubs.c -------------------------------------------------------------------------------- /src/ctypes/type_info_stubs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/src/ctypes/type_info_stubs.c -------------------------------------------------------------------------------- /tests/bench-micro/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/bench-micro/Makefile -------------------------------------------------------------------------------- /tests/bench-micro/bench_micro.gnuplot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/bench-micro/bench_micro.gnuplot -------------------------------------------------------------------------------- /tests/bench-micro/bench_micro.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/bench-micro/bench_micro.ml -------------------------------------------------------------------------------- /tests/bench-micro/bench_micro_bindings.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/bench-micro/bench_micro_bindings.ml -------------------------------------------------------------------------------- /tests/bench-micro/bench_micro_gen.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/bench-micro/bench_micro_gen.ml -------------------------------------------------------------------------------- /tests/bench-micro/bench_micro_interpreted.gnuplot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/bench-micro/bench_micro_interpreted.gnuplot -------------------------------------------------------------------------------- /tests/bench-micro/bench_micro_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/bench-micro/bench_micro_lib.c -------------------------------------------------------------------------------- /tests/bench-micro/bench_micro_stubs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/bench-micro/bench_micro_stubs.c -------------------------------------------------------------------------------- /tests/bench-micro/bench_micro_stubs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/bench-micro/bench_micro_stubs.h -------------------------------------------------------------------------------- /tests/bench-micro/process_summary.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/bench-micro/process_summary.ml -------------------------------------------------------------------------------- /tests/clib/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/clib/dune -------------------------------------------------------------------------------- /tests/clib/test_functions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/clib/test_functions.c -------------------------------------------------------------------------------- /tests/clib/test_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/clib/test_functions.h -------------------------------------------------------------------------------- /tests/config/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/config/dune -------------------------------------------------------------------------------- /tests/config/test_config.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/config/test_config.ml -------------------------------------------------------------------------------- /tests/flags/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/flags/dune -------------------------------------------------------------------------------- /tests/flags/gen.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/flags/gen.ml -------------------------------------------------------------------------------- /tests/flags/gen.mli: -------------------------------------------------------------------------------- 1 | (* empty *) 2 | -------------------------------------------------------------------------------- /tests/test-alignment/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-alignment/dune -------------------------------------------------------------------------------- /tests/test-alignment/test_alignment.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-alignment/test_alignment.ml -------------------------------------------------------------------------------- /tests/test-arrays/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-arrays/dune -------------------------------------------------------------------------------- /tests/test-arrays/stub-generator/driver.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-arrays/stub-generator/driver.ml -------------------------------------------------------------------------------- /tests/test-arrays/stub-generator/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-arrays/stub-generator/dune -------------------------------------------------------------------------------- /tests/test-arrays/stubs/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-arrays/stubs/dune -------------------------------------------------------------------------------- /tests/test-arrays/stubs/functions.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-arrays/stubs/functions.ml -------------------------------------------------------------------------------- /tests/test-arrays/test_array.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-arrays/test_array.ml -------------------------------------------------------------------------------- /tests/test-bigarrays/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-bigarrays/dune -------------------------------------------------------------------------------- /tests/test-bigarrays/stub-generator/driver.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-bigarrays/stub-generator/driver.ml -------------------------------------------------------------------------------- /tests/test-bigarrays/stub-generator/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-bigarrays/stub-generator/dune -------------------------------------------------------------------------------- /tests/test-bigarrays/stubs/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-bigarrays/stubs/dune -------------------------------------------------------------------------------- /tests/test-bigarrays/stubs/functions.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-bigarrays/stubs/functions.ml -------------------------------------------------------------------------------- /tests/test-bigarrays/test_bigarrays.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-bigarrays/test_bigarrays.ml -------------------------------------------------------------------------------- /tests/test-bools/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-bools/dune -------------------------------------------------------------------------------- /tests/test-bools/stub-generator/driver.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-bools/stub-generator/driver.ml -------------------------------------------------------------------------------- /tests/test-bools/stub-generator/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-bools/stub-generator/dune -------------------------------------------------------------------------------- /tests/test-bools/stubs/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-bools/stubs/dune -------------------------------------------------------------------------------- /tests/test-bools/stubs/functions.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-bools/stubs/functions.ml -------------------------------------------------------------------------------- /tests/test-bools/test_bools.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-bools/test_bools.ml -------------------------------------------------------------------------------- /tests/test-builtins/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-builtins/dune -------------------------------------------------------------------------------- /tests/test-builtins/stub-generator/driver.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-builtins/stub-generator/driver.ml -------------------------------------------------------------------------------- /tests/test-builtins/stub-generator/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-builtins/stub-generator/dune -------------------------------------------------------------------------------- /tests/test-builtins/stubs/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-builtins/stubs/dune -------------------------------------------------------------------------------- /tests/test-builtins/stubs/functions.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-builtins/stubs/functions.ml -------------------------------------------------------------------------------- /tests/test-builtins/test_builtins.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-builtins/test_builtins.ml -------------------------------------------------------------------------------- /tests/test-callback_lifetime/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-callback_lifetime/dune -------------------------------------------------------------------------------- /tests/test-callback_lifetime/stub-generator/driver.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-callback_lifetime/stub-generator/driver.ml -------------------------------------------------------------------------------- /tests/test-callback_lifetime/stub-generator/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-callback_lifetime/stub-generator/dune -------------------------------------------------------------------------------- /tests/test-callback_lifetime/stubs/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-callback_lifetime/stubs/dune -------------------------------------------------------------------------------- /tests/test-callback_lifetime/stubs/functions.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-callback_lifetime/stubs/functions.ml -------------------------------------------------------------------------------- /tests/test-callback_lifetime/test_callback_lifetime.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-callback_lifetime/test_callback_lifetime.ml -------------------------------------------------------------------------------- /tests/test-closure-type-promotion/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-closure-type-promotion/dune -------------------------------------------------------------------------------- /tests/test-closure-type-promotion/stub-generator/driver.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-closure-type-promotion/stub-generator/driver.ml -------------------------------------------------------------------------------- /tests/test-closure-type-promotion/stub-generator/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-closure-type-promotion/stub-generator/dune -------------------------------------------------------------------------------- /tests/test-closure-type-promotion/stubs/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-closure-type-promotion/stubs/dune -------------------------------------------------------------------------------- /tests/test-closure-type-promotion/stubs/functions.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-closure-type-promotion/stubs/functions.ml -------------------------------------------------------------------------------- /tests/test-closure-type-promotion/test_closure_type_promotion.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-closure-type-promotion/test_closure_type_promotion.ml -------------------------------------------------------------------------------- /tests/test-coercions/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-coercions/dune -------------------------------------------------------------------------------- /tests/test-coercions/stub-generator/driver.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-coercions/stub-generator/driver.ml -------------------------------------------------------------------------------- /tests/test-coercions/stub-generator/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-coercions/stub-generator/dune -------------------------------------------------------------------------------- /tests/test-coercions/stubs/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-coercions/stubs/dune -------------------------------------------------------------------------------- /tests/test-coercions/stubs/functions.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-coercions/stubs/functions.ml -------------------------------------------------------------------------------- /tests/test-coercions/test_coercions.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-coercions/test_coercions.ml -------------------------------------------------------------------------------- /tests/test-complex/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-complex/dune -------------------------------------------------------------------------------- /tests/test-complex/stub-generator/driver.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-complex/stub-generator/driver.ml -------------------------------------------------------------------------------- /tests/test-complex/stub-generator/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-complex/stub-generator/dune -------------------------------------------------------------------------------- /tests/test-complex/stubs/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-complex/stubs/dune -------------------------------------------------------------------------------- /tests/test-complex/stubs/functions.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-complex/stubs/functions.ml -------------------------------------------------------------------------------- /tests/test-complex/test_complex.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-complex/test_complex.ml -------------------------------------------------------------------------------- /tests/test-constants/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-constants/dune -------------------------------------------------------------------------------- /tests/test-constants/stub-generator/driver.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-constants/stub-generator/driver.ml -------------------------------------------------------------------------------- /tests/test-constants/stub-generator/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-constants/stub-generator/dune -------------------------------------------------------------------------------- /tests/test-constants/stubs/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-constants/stubs/dune -------------------------------------------------------------------------------- /tests/test-constants/stubs/types.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-constants/stubs/types.ml -------------------------------------------------------------------------------- /tests/test-constants/test_constants.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-constants/test_constants.ml -------------------------------------------------------------------------------- /tests/test-cstdlib/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-cstdlib/dune -------------------------------------------------------------------------------- /tests/test-cstdlib/stub-generator/driver.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-cstdlib/stub-generator/driver.ml -------------------------------------------------------------------------------- /tests/test-cstdlib/stub-generator/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-cstdlib/stub-generator/dune -------------------------------------------------------------------------------- /tests/test-cstdlib/stubs/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-cstdlib/stubs/dune -------------------------------------------------------------------------------- /tests/test-cstdlib/stubs/functions.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-cstdlib/stubs/functions.ml -------------------------------------------------------------------------------- /tests/test-cstdlib/test_cstdlib.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-cstdlib/test_cstdlib.ml -------------------------------------------------------------------------------- /tests/test-custom_ops/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-custom_ops/dune -------------------------------------------------------------------------------- /tests/test-custom_ops/test_custom_ops.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-custom_ops/test_custom_ops.ml -------------------------------------------------------------------------------- /tests/test-enums/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-enums/dune -------------------------------------------------------------------------------- /tests/test-enums/struct-stub-generator/driver.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-enums/struct-stub-generator/driver.ml -------------------------------------------------------------------------------- /tests/test-enums/struct-stub-generator/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-enums/struct-stub-generator/dune -------------------------------------------------------------------------------- /tests/test-enums/struct-stubs/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-enums/struct-stubs/dune -------------------------------------------------------------------------------- /tests/test-enums/struct-stubs/types.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-enums/struct-stubs/types.ml -------------------------------------------------------------------------------- /tests/test-enums/stub-generator/driver.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-enums/stub-generator/driver.ml -------------------------------------------------------------------------------- /tests/test-enums/stub-generator/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-enums/stub-generator/dune -------------------------------------------------------------------------------- /tests/test-enums/stubs/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-enums/stubs/dune -------------------------------------------------------------------------------- /tests/test-enums/stubs/functions.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-enums/stubs/functions.ml -------------------------------------------------------------------------------- /tests/test-enums/test_enums.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-enums/test_enums.ml -------------------------------------------------------------------------------- /tests/test-finalisers/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-finalisers/dune -------------------------------------------------------------------------------- /tests/test-finalisers/test_finalisers.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-finalisers/test_finalisers.ml -------------------------------------------------------------------------------- /tests/test-foreign-errno/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-foreign-errno/dune -------------------------------------------------------------------------------- /tests/test-foreign-errno/test_errno.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-foreign-errno/test_errno.ml -------------------------------------------------------------------------------- /tests/test-foreign_values/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-foreign_values/dune -------------------------------------------------------------------------------- /tests/test-foreign_values/stub-generator/driver.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-foreign_values/stub-generator/driver.ml -------------------------------------------------------------------------------- /tests/test-foreign_values/stub-generator/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-foreign_values/stub-generator/dune -------------------------------------------------------------------------------- /tests/test-foreign_values/stubs/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-foreign_values/stubs/dune -------------------------------------------------------------------------------- /tests/test-foreign_values/stubs/functions.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-foreign_values/stubs/functions.ml -------------------------------------------------------------------------------- /tests/test-foreign_values/test_foreign_values.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-foreign_values/test_foreign_values.ml -------------------------------------------------------------------------------- /tests/test-funptrs/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-funptrs/dune -------------------------------------------------------------------------------- /tests/test-funptrs/stub-generator/driver.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-funptrs/stub-generator/driver.ml -------------------------------------------------------------------------------- /tests/test-funptrs/stub-generator/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-funptrs/stub-generator/dune -------------------------------------------------------------------------------- /tests/test-funptrs/stubs/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-funptrs/stubs/dune -------------------------------------------------------------------------------- /tests/test-funptrs/stubs/functions.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-funptrs/stubs/functions.ml -------------------------------------------------------------------------------- /tests/test-funptrs/test_funptrs.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-funptrs/test_funptrs.ml -------------------------------------------------------------------------------- /tests/test-higher_order/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-higher_order/dune -------------------------------------------------------------------------------- /tests/test-higher_order/stub-generator/driver.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-higher_order/stub-generator/driver.ml -------------------------------------------------------------------------------- /tests/test-higher_order/stub-generator/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-higher_order/stub-generator/dune -------------------------------------------------------------------------------- /tests/test-higher_order/stubs/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-higher_order/stubs/dune -------------------------------------------------------------------------------- /tests/test-higher_order/stubs/functions.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-higher_order/stubs/functions.ml -------------------------------------------------------------------------------- /tests/test-higher_order/test_higher_order.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-higher_order/test_higher_order.ml -------------------------------------------------------------------------------- /tests/test-integers/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-integers/dune -------------------------------------------------------------------------------- /tests/test-integers/stub-generator/driver.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-integers/stub-generator/driver.ml -------------------------------------------------------------------------------- /tests/test-integers/stub-generator/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-integers/stub-generator/dune -------------------------------------------------------------------------------- /tests/test-integers/stubs/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-integers/stubs/dune -------------------------------------------------------------------------------- /tests/test-integers/stubs/functions.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-integers/stubs/functions.ml -------------------------------------------------------------------------------- /tests/test-integers/test_integers.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-integers/test_integers.ml -------------------------------------------------------------------------------- /tests/test-ldouble/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-ldouble/dune -------------------------------------------------------------------------------- /tests/test-ldouble/test_ldouble.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-ldouble/test_ldouble.ml -------------------------------------------------------------------------------- /tests/test-lifetime/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-lifetime/dune -------------------------------------------------------------------------------- /tests/test-lifetime/stub-generator/driver.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-lifetime/stub-generator/driver.ml -------------------------------------------------------------------------------- /tests/test-lifetime/stub-generator/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-lifetime/stub-generator/dune -------------------------------------------------------------------------------- /tests/test-lifetime/stubs/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-lifetime/stubs/dune -------------------------------------------------------------------------------- /tests/test-lifetime/stubs/functions.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-lifetime/stubs/functions.ml -------------------------------------------------------------------------------- /tests/test-lifetime/test_lifetime.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-lifetime/test_lifetime.ml -------------------------------------------------------------------------------- /tests/test-lwt-jobs/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-lwt-jobs/dune -------------------------------------------------------------------------------- /tests/test-lwt-jobs/stub-generator/driver.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-lwt-jobs/stub-generator/driver.ml -------------------------------------------------------------------------------- /tests/test-lwt-jobs/stub-generator/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-lwt-jobs/stub-generator/dune -------------------------------------------------------------------------------- /tests/test-lwt-jobs/stubs/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-lwt-jobs/stubs/dune -------------------------------------------------------------------------------- /tests/test-lwt-jobs/stubs/functions.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-lwt-jobs/stubs/functions.ml -------------------------------------------------------------------------------- /tests/test-lwt-jobs/stubs/types.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-lwt-jobs/stubs/types.ml -------------------------------------------------------------------------------- /tests/test-lwt-jobs/test_lwt_jobs.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-lwt-jobs/test_lwt_jobs.ml -------------------------------------------------------------------------------- /tests/test-lwt-preemptive/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-lwt-preemptive/dune -------------------------------------------------------------------------------- /tests/test-lwt-preemptive/stub-generator/driver.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-lwt-preemptive/stub-generator/driver.ml -------------------------------------------------------------------------------- /tests/test-lwt-preemptive/stub-generator/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-lwt-preemptive/stub-generator/dune -------------------------------------------------------------------------------- /tests/test-lwt-preemptive/stubs/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-lwt-preemptive/stubs/dune -------------------------------------------------------------------------------- /tests/test-lwt-preemptive/stubs/functions.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-lwt-preemptive/stubs/functions.ml -------------------------------------------------------------------------------- /tests/test-lwt-preemptive/stubs/types.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-lwt-preemptive/stubs/types.ml -------------------------------------------------------------------------------- /tests/test-lwt-preemptive/test_lwt_jobs.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-lwt-preemptive/test_lwt_jobs.ml -------------------------------------------------------------------------------- /tests/test-macros/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-macros/dune -------------------------------------------------------------------------------- /tests/test-macros/stub-generator/driver.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-macros/stub-generator/driver.ml -------------------------------------------------------------------------------- /tests/test-macros/stub-generator/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-macros/stub-generator/dune -------------------------------------------------------------------------------- /tests/test-macros/stubs/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-macros/stubs/dune -------------------------------------------------------------------------------- /tests/test-macros/stubs/functions.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-macros/stubs/functions.ml -------------------------------------------------------------------------------- /tests/test-macros/test_macros.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-macros/test_macros.ml -------------------------------------------------------------------------------- /tests/test-marshal/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-marshal/dune -------------------------------------------------------------------------------- /tests/test-marshal/test_marshal.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-marshal/test_marshal.ml -------------------------------------------------------------------------------- /tests/test-oo_style/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-oo_style/dune -------------------------------------------------------------------------------- /tests/test-oo_style/stub-generator/driver.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-oo_style/stub-generator/driver.ml -------------------------------------------------------------------------------- /tests/test-oo_style/stub-generator/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-oo_style/stub-generator/dune -------------------------------------------------------------------------------- /tests/test-oo_style/stubs/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-oo_style/stubs/dune -------------------------------------------------------------------------------- /tests/test-oo_style/stubs/functions.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-oo_style/stubs/functions.ml -------------------------------------------------------------------------------- /tests/test-oo_style/test_oo_style.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-oo_style/test_oo_style.ml -------------------------------------------------------------------------------- /tests/test-passable/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-passable/dune -------------------------------------------------------------------------------- /tests/test-passable/test_passable.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-passable/test_passable.ml -------------------------------------------------------------------------------- /tests/test-passing-ocaml-values/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-passing-ocaml-values/dune -------------------------------------------------------------------------------- /tests/test-passing-ocaml-values/stub-generator/driver.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-passing-ocaml-values/stub-generator/driver.ml -------------------------------------------------------------------------------- /tests/test-passing-ocaml-values/stub-generator/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-passing-ocaml-values/stub-generator/dune -------------------------------------------------------------------------------- /tests/test-passing-ocaml-values/stubs/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-passing-ocaml-values/stubs/dune -------------------------------------------------------------------------------- /tests/test-passing-ocaml-values/stubs/functions.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-passing-ocaml-values/stubs/functions.ml -------------------------------------------------------------------------------- /tests/test-passing-ocaml-values/test_passing_ocaml_values.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-passing-ocaml-values/test_passing_ocaml_values.ml -------------------------------------------------------------------------------- /tests/test-pointers/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-pointers/dune -------------------------------------------------------------------------------- /tests/test-pointers/stub-generator/driver.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-pointers/stub-generator/driver.ml -------------------------------------------------------------------------------- /tests/test-pointers/stub-generator/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-pointers/stub-generator/dune -------------------------------------------------------------------------------- /tests/test-pointers/stubs/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-pointers/stubs/dune -------------------------------------------------------------------------------- /tests/test-pointers/stubs/functions.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-pointers/stubs/functions.ml -------------------------------------------------------------------------------- /tests/test-pointers/test_pointers.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-pointers/test_pointers.ml -------------------------------------------------------------------------------- /tests/test-raw/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-raw/dune -------------------------------------------------------------------------------- /tests/test-raw/test_raw.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-raw/test_raw.ml -------------------------------------------------------------------------------- /tests/test-returning-errno-lwt-jobs/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-returning-errno-lwt-jobs/dune -------------------------------------------------------------------------------- /tests/test-returning-errno-lwt-jobs/stub-generator/driver.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-returning-errno-lwt-jobs/stub-generator/driver.ml -------------------------------------------------------------------------------- /tests/test-returning-errno-lwt-jobs/stub-generator/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-returning-errno-lwt-jobs/stub-generator/dune -------------------------------------------------------------------------------- /tests/test-returning-errno-lwt-jobs/stubs/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-returning-errno-lwt-jobs/stubs/dune -------------------------------------------------------------------------------- /tests/test-returning-errno-lwt-jobs/stubs/functions.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-returning-errno-lwt-jobs/stubs/functions.ml -------------------------------------------------------------------------------- /tests/test-returning-errno-lwt-jobs/stubs/types.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-returning-errno-lwt-jobs/stubs/types.ml -------------------------------------------------------------------------------- /tests/test-returning-errno-lwt-jobs/test_returning_errno.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-returning-errno-lwt-jobs/test_returning_errno.ml -------------------------------------------------------------------------------- /tests/test-returning-errno-lwt-preemptive/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-returning-errno-lwt-preemptive/dune -------------------------------------------------------------------------------- /tests/test-returning-errno-lwt-preemptive/stub-generator/driver.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-returning-errno-lwt-preemptive/stub-generator/driver.ml -------------------------------------------------------------------------------- /tests/test-returning-errno-lwt-preemptive/stub-generator/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-returning-errno-lwt-preemptive/stub-generator/dune -------------------------------------------------------------------------------- /tests/test-returning-errno-lwt-preemptive/stubs/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-returning-errno-lwt-preemptive/stubs/dune -------------------------------------------------------------------------------- /tests/test-returning-errno-lwt-preemptive/stubs/functions.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-returning-errno-lwt-preemptive/stubs/functions.ml -------------------------------------------------------------------------------- /tests/test-returning-errno-lwt-preemptive/stubs/types.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-returning-errno-lwt-preemptive/stubs/types.ml -------------------------------------------------------------------------------- /tests/test-returning-errno-lwt-preemptive/test_returning_errno.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-returning-errno-lwt-preemptive/test_returning_errno.ml -------------------------------------------------------------------------------- /tests/test-returning-errno/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-returning-errno/dune -------------------------------------------------------------------------------- /tests/test-returning-errno/stub-generator/driver.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-returning-errno/stub-generator/driver.ml -------------------------------------------------------------------------------- /tests/test-returning-errno/stub-generator/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-returning-errno/stub-generator/dune -------------------------------------------------------------------------------- /tests/test-returning-errno/stubs/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-returning-errno/stubs/dune -------------------------------------------------------------------------------- /tests/test-returning-errno/stubs/functions.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-returning-errno/stubs/functions.ml -------------------------------------------------------------------------------- /tests/test-returning-errno/stubs/types.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-returning-errno/stubs/types.ml -------------------------------------------------------------------------------- /tests/test-returning-errno/test_returning_errno.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-returning-errno/test_returning_errno.ml -------------------------------------------------------------------------------- /tests/test-roots/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-roots/dune -------------------------------------------------------------------------------- /tests/test-roots/test_roots.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-roots/test_roots.ml -------------------------------------------------------------------------------- /tests/test-sizeof/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-sizeof/dune -------------------------------------------------------------------------------- /tests/test-sizeof/test_sizeof.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-sizeof/test_sizeof.ml -------------------------------------------------------------------------------- /tests/test-structs/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-structs/dune -------------------------------------------------------------------------------- /tests/test-structs/stub-generator/driver.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-structs/stub-generator/driver.ml -------------------------------------------------------------------------------- /tests/test-structs/stub-generator/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-structs/stub-generator/dune -------------------------------------------------------------------------------- /tests/test-structs/stubs/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-structs/stubs/dune -------------------------------------------------------------------------------- /tests/test-structs/stubs/functions.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-structs/stubs/functions.ml -------------------------------------------------------------------------------- /tests/test-structs/stubs/types.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-structs/stubs/types.ml -------------------------------------------------------------------------------- /tests/test-structs/test_structs.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-structs/test_structs.ml -------------------------------------------------------------------------------- /tests/test-stubs/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-stubs/dune -------------------------------------------------------------------------------- /tests/test-stubs/test_stubs.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-stubs/test_stubs.ml -------------------------------------------------------------------------------- /tests/test-threads/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-threads/dune -------------------------------------------------------------------------------- /tests/test-threads/stub-generator/driver.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-threads/stub-generator/driver.ml -------------------------------------------------------------------------------- /tests/test-threads/stub-generator/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-threads/stub-generator/dune -------------------------------------------------------------------------------- /tests/test-threads/stubs/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-threads/stubs/dune -------------------------------------------------------------------------------- /tests/test-threads/stubs/functions.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-threads/stubs/functions.ml -------------------------------------------------------------------------------- /tests/test-threads/test_threads.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-threads/test_threads.ml -------------------------------------------------------------------------------- /tests/test-type_printing/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-type_printing/dune -------------------------------------------------------------------------------- /tests/test-type_printing/stub-generator/driver.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-type_printing/stub-generator/driver.ml -------------------------------------------------------------------------------- /tests/test-type_printing/stub-generator/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-type_printing/stub-generator/dune -------------------------------------------------------------------------------- /tests/test-type_printing/stubs/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-type_printing/stubs/dune -------------------------------------------------------------------------------- /tests/test-type_printing/stubs/types.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-type_printing/stubs/types.ml -------------------------------------------------------------------------------- /tests/test-type_printing/test_type_printing.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-type_printing/test_type_printing.ml -------------------------------------------------------------------------------- /tests/test-unions/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-unions/dune -------------------------------------------------------------------------------- /tests/test-unions/stub-generator/driver.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-unions/stub-generator/driver.ml -------------------------------------------------------------------------------- /tests/test-unions/stub-generator/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-unions/stub-generator/dune -------------------------------------------------------------------------------- /tests/test-unions/stubs/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-unions/stubs/dune -------------------------------------------------------------------------------- /tests/test-unions/stubs/functions.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-unions/stubs/functions.ml -------------------------------------------------------------------------------- /tests/test-unions/stubs/types.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-unions/stubs/types.ml -------------------------------------------------------------------------------- /tests/test-unions/test_unions.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-unions/test_unions.ml -------------------------------------------------------------------------------- /tests/test-value_printing/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-value_printing/dune -------------------------------------------------------------------------------- /tests/test-value_printing/stub-generator/driver.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-value_printing/stub-generator/driver.ml -------------------------------------------------------------------------------- /tests/test-value_printing/stub-generator/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-value_printing/stub-generator/dune -------------------------------------------------------------------------------- /tests/test-value_printing/stubs/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-value_printing/stubs/dune -------------------------------------------------------------------------------- /tests/test-value_printing/stubs/functions.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-value_printing/stubs/functions.ml -------------------------------------------------------------------------------- /tests/test-value_printing/test_value_printing.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-value_printing/test_value_printing.ml -------------------------------------------------------------------------------- /tests/test-variadic/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-variadic/dune -------------------------------------------------------------------------------- /tests/test-variadic/stub-generator/driver.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-variadic/stub-generator/driver.ml -------------------------------------------------------------------------------- /tests/test-variadic/stub-generator/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-variadic/stub-generator/dune -------------------------------------------------------------------------------- /tests/test-variadic/stubs/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-variadic/stubs/dune -------------------------------------------------------------------------------- /tests/test-variadic/stubs/functions.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-variadic/stubs/functions.ml -------------------------------------------------------------------------------- /tests/test-variadic/test_variadic.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-variadic/test_variadic.ml -------------------------------------------------------------------------------- /tests/test-views/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-views/dune -------------------------------------------------------------------------------- /tests/test-views/stub-generator/driver.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-views/stub-generator/driver.ml -------------------------------------------------------------------------------- /tests/test-views/stub-generator/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-views/stub-generator/dune -------------------------------------------------------------------------------- /tests/test-views/stubs/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-views/stubs/dune -------------------------------------------------------------------------------- /tests/test-views/stubs/functions.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-views/stubs/functions.ml -------------------------------------------------------------------------------- /tests/test-views/test_views.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/test-views/test_views.ml -------------------------------------------------------------------------------- /tests/tests-common/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/tests-common/dune -------------------------------------------------------------------------------- /tests/tests-common/tests_common.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallop/ocaml-ctypes/HEAD/tests/tests-common/tests_common.ml --------------------------------------------------------------------------------