String Sorting Routines

Find us on…

GitHub

stringsort

stringsort

CI Status GitHub release codecov

Description

Just some Fortran sorting routines for strings.

Building

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

Documentation

The API documentation for the current master branch can be found here. This is generated by processing the source files with FORD.

License

This code and related files and documentation are distributed under a permissive free software license (BSD-style).

See also

Developer Info

Jacob Williams