Registry / serialization / libcsv

libcsv

JSON →
library3.0.3vcpkgunverified

CSV parser and writer library

vcpkg install libcsv
INSTALL
IMPORT
SIG · LIBCSV
L
libcsv
serializationcppv3.0.3
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

csv.h
#include <csv.h>

Reads a CSV file with header parsing

#include <csv.h> #include <iostream> int main() { io::CSVReader<3> in("data.csv"); in.read_header(io::ignore_extra_column, "name", "age", "city"); std::string name; int age; std::string city; while(in.read_row(name, age, city)) { std::cout << name << " " << age << " " << city << std::endl; } return 0; }
Debug
Known issues

No known issues recorded.

Upgrade
Version history
3.0.3latest on vcpkg
Audit
Dependencies

No dependency data recorded yet.

Agent activity
2 hits · last 30 days
node
2
Resources

No resource links recorded.

libcsv — pip install libcsv · libregistry