├── .gitignore ├── LICENSE.txt ├── README.md ├── array_alg.h └── test ├── .gitignore ├── defs.h ├── impl.c ├── makefile └── tests.c /.gitignore: -------------------------------------------------------------------------------- 1 | *.out 2 | *vscode 3 | *.dSYM 4 | -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clibraries/array-algorithms/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clibraries/array-algorithms/HEAD/README.md -------------------------------------------------------------------------------- /array_alg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clibraries/array-algorithms/HEAD/array_alg.h -------------------------------------------------------------------------------- /test/.gitignore: -------------------------------------------------------------------------------- 1 | test-array-alg 2 | -------------------------------------------------------------------------------- /test/defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clibraries/array-algorithms/HEAD/test/defs.h -------------------------------------------------------------------------------- /test/impl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clibraries/array-algorithms/HEAD/test/impl.c -------------------------------------------------------------------------------- /test/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clibraries/array-algorithms/HEAD/test/makefile -------------------------------------------------------------------------------- /test/tests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clibraries/array-algorithms/HEAD/test/tests.c --------------------------------------------------------------------------------