├── .gitignore ├── CMake └── erlang │ ├── CMakeDetermineErlangCompiler.cmake │ ├── CMakeErlangCompiler.cmake.in │ ├── CMakeErlangInformation.cmake │ ├── CMakeTestErlangCompiler.cmake │ └── FindErlang.cmake ├── CMakeLists.txt ├── LICENSE ├── Makefile.am ├── README.markdown ├── assert.cpp ├── assert.hpp ├── autogen.sh ├── config └── .empty ├── configure.ac ├── erlang_functions_hrl.h ├── m4 ├── ax_boost_base.m4 ├── ax_boost_check_header.m4 ├── ax_check_private_header.m4 ├── ax_cxx_check_header.m4 └── ax_erlang_otp_version.m4 ├── main.cpp ├── make.sh ├── make_dev ├── pchar_len_t.h ├── port.cpp ├── port.hpp ├── port_driver.cpp ├── realloc_ptr.hpp ├── test_bindings.erl ├── test_bindings.h ├── test_functions.c └── test_functions.h /.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | -------------------------------------------------------------------------------- /CMake/erlang/CMakeDetermineErlangCompiler.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okeuday/GEPD/HEAD/CMake/erlang/CMakeDetermineErlangCompiler.cmake -------------------------------------------------------------------------------- /CMake/erlang/CMakeErlangCompiler.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okeuday/GEPD/HEAD/CMake/erlang/CMakeErlangCompiler.cmake.in -------------------------------------------------------------------------------- /CMake/erlang/CMakeErlangInformation.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okeuday/GEPD/HEAD/CMake/erlang/CMakeErlangInformation.cmake -------------------------------------------------------------------------------- /CMake/erlang/CMakeTestErlangCompiler.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okeuday/GEPD/HEAD/CMake/erlang/CMakeTestErlangCompiler.cmake -------------------------------------------------------------------------------- /CMake/erlang/FindErlang.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okeuday/GEPD/HEAD/CMake/erlang/FindErlang.cmake -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okeuday/GEPD/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okeuday/GEPD/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okeuday/GEPD/HEAD/Makefile.am -------------------------------------------------------------------------------- /README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okeuday/GEPD/HEAD/README.markdown -------------------------------------------------------------------------------- /assert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okeuday/GEPD/HEAD/assert.cpp -------------------------------------------------------------------------------- /assert.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okeuday/GEPD/HEAD/assert.hpp -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okeuday/GEPD/HEAD/autogen.sh -------------------------------------------------------------------------------- /config/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okeuday/GEPD/HEAD/configure.ac -------------------------------------------------------------------------------- /erlang_functions_hrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okeuday/GEPD/HEAD/erlang_functions_hrl.h -------------------------------------------------------------------------------- /m4/ax_boost_base.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okeuday/GEPD/HEAD/m4/ax_boost_base.m4 -------------------------------------------------------------------------------- /m4/ax_boost_check_header.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okeuday/GEPD/HEAD/m4/ax_boost_check_header.m4 -------------------------------------------------------------------------------- /m4/ax_check_private_header.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okeuday/GEPD/HEAD/m4/ax_check_private_header.m4 -------------------------------------------------------------------------------- /m4/ax_cxx_check_header.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okeuday/GEPD/HEAD/m4/ax_cxx_check_header.m4 -------------------------------------------------------------------------------- /m4/ax_erlang_otp_version.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okeuday/GEPD/HEAD/m4/ax_erlang_otp_version.m4 -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okeuday/GEPD/HEAD/main.cpp -------------------------------------------------------------------------------- /make.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okeuday/GEPD/HEAD/make.sh -------------------------------------------------------------------------------- /make_dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okeuday/GEPD/HEAD/make_dev -------------------------------------------------------------------------------- /pchar_len_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okeuday/GEPD/HEAD/pchar_len_t.h -------------------------------------------------------------------------------- /port.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okeuday/GEPD/HEAD/port.cpp -------------------------------------------------------------------------------- /port.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okeuday/GEPD/HEAD/port.hpp -------------------------------------------------------------------------------- /port_driver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okeuday/GEPD/HEAD/port_driver.cpp -------------------------------------------------------------------------------- /realloc_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okeuday/GEPD/HEAD/realloc_ptr.hpp -------------------------------------------------------------------------------- /test_bindings.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okeuday/GEPD/HEAD/test_bindings.erl -------------------------------------------------------------------------------- /test_bindings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okeuday/GEPD/HEAD/test_bindings.h -------------------------------------------------------------------------------- /test_functions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okeuday/GEPD/HEAD/test_functions.c -------------------------------------------------------------------------------- /test_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okeuday/GEPD/HEAD/test_functions.h --------------------------------------------------------------------------------