├── .travis.yml └── BCH_codes ├── Makefile ├── README.md ├── bch_functions.c ├── bch_functions.h └── bch_test.c /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlessandroBudroni/BCH-C/HEAD/.travis.yml -------------------------------------------------------------------------------- /BCH_codes/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlessandroBudroni/BCH-C/HEAD/BCH_codes/Makefile -------------------------------------------------------------------------------- /BCH_codes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlessandroBudroni/BCH-C/HEAD/BCH_codes/README.md -------------------------------------------------------------------------------- /BCH_codes/bch_functions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlessandroBudroni/BCH-C/HEAD/BCH_codes/bch_functions.c -------------------------------------------------------------------------------- /BCH_codes/bch_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlessandroBudroni/BCH-C/HEAD/BCH_codes/bch_functions.h -------------------------------------------------------------------------------- /BCH_codes/bch_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlessandroBudroni/BCH-C/HEAD/BCH_codes/bch_test.c --------------------------------------------------------------------------------