├── .gitignore ├── LICENSE ├── README.md └── examples ├── char_arrays ├── Makefile ├── char.c └── char.f90 └── structs ├── Makefile ├── struct.c └── struct.f90 /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRedies/Interfacing-Fortran/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRedies/Interfacing-Fortran/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRedies/Interfacing-Fortran/HEAD/README.md -------------------------------------------------------------------------------- /examples/char_arrays/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRedies/Interfacing-Fortran/HEAD/examples/char_arrays/Makefile -------------------------------------------------------------------------------- /examples/char_arrays/char.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRedies/Interfacing-Fortran/HEAD/examples/char_arrays/char.c -------------------------------------------------------------------------------- /examples/char_arrays/char.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRedies/Interfacing-Fortran/HEAD/examples/char_arrays/char.f90 -------------------------------------------------------------------------------- /examples/structs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRedies/Interfacing-Fortran/HEAD/examples/structs/Makefile -------------------------------------------------------------------------------- /examples/structs/struct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRedies/Interfacing-Fortran/HEAD/examples/structs/struct.c -------------------------------------------------------------------------------- /examples/structs/struct.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRedies/Interfacing-Fortran/HEAD/examples/structs/struct.f90 --------------------------------------------------------------------------------