csv_parser icon indicating copy to clipboard operation
csv_parser copied to clipboard

Simple CSV parser written in C

Results 4 csv_parser issues
Sort by recently updated
recently updated
newest added

Currently `fread_csv_line` assumes Linux-style linebreaks with no carriage returns. This needs fixing.

```sh % cat ./Makefile WFLAGS += -Wall -Wextra -Wpedantic -Wshadow WFLAGS += -Wconversion -Wsign-conversion -Winit-self -Wunreachable-code -Wformat-y2k WFLAGS += -Wformat-nonliteral -Wformat-security -Wmissing-include-dirs WFLAGS += -Wswitch-default -Wtrigraphs -Wstrict-overflow=5 WFLAGS += -Wfloat-equal...

Thank you for you hard work guys. That is nice and useful library but seems there are memory leaks detected. How to repeat: 1. Install LLVM for sanitizer ```sh sudo...

This adds fuzzing by way of [ClusterFuzzLite](https://google.github.io/clusterfuzzlite/), which is a GitHub action that will perform a short amount of fuzzing for new PRs. The goal is to use fuzzing to...