├── .gitignore ├── LICENSE.txt ├── Makefile ├── README.md ├── csv.c ├── csv.h ├── test.c └── test └── runtest.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jandoczy/csv-fast-reader/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jandoczy/csv-fast-reader/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jandoczy/csv-fast-reader/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jandoczy/csv-fast-reader/HEAD/README.md -------------------------------------------------------------------------------- /csv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jandoczy/csv-fast-reader/HEAD/csv.c -------------------------------------------------------------------------------- /csv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jandoczy/csv-fast-reader/HEAD/csv.h -------------------------------------------------------------------------------- /test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jandoczy/csv-fast-reader/HEAD/test.c -------------------------------------------------------------------------------- /test/runtest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jandoczy/csv-fast-reader/HEAD/test/runtest.sh --------------------------------------------------------------------------------