Just some Fortran sorting routines for strings.
Stringsort and the test programs will build with any modern Fortran compiler. A Fortran Package Manager manifest file (fpm.toml
) is included, so that the library and tests cases can be compiled with FPM. For example:
fpm build --profile release
fpm test --profile release
To use stringsort
within your fpm project, add the following to your fpm.toml
file:
[dependencies]
stringsort = { git="https://github.com/jacobwilliams/stringsort.git" }
To generate the documentation using ford, run:
ford ford.md
The API documentation for the current master
branch can be found here. This is generated by processing the source files with FORD.
This code and related files and documentation are distributed under a permissive free software license (BSD-style).
- Natural Sorting [degenerateconic.com]