An extremely simple csv parsing library
Go to file
2023-11-29 11:09:01 -05:00
man init 2023-10-19 08:33:26 -04:00
src v1.1.0 2023-11-29 11:09:01 -05:00
config.mk init 2023-10-19 08:33:26 -04:00
LICENSE release 2023-10-25 11:49:01 -04:00
Makefile v1.1.0 2023-11-29 11:09:01 -05:00
README release 2023-10-25 11:49:01 -04:00
VERSION v1.1.0 2023-11-29 11:09:01 -05:00

+ libcsvparser

A very simple CSV parsing library

+ Usage

	#include <csvparser.h>

	int main() {
		parse_tokens(FILE);
	}

	(user)$ gcc prog.c -lcsvparser -o prog

	See 'man 3 libcsvparser' for more information.

+ Installation

	Customize config.mk, then run 'make', followed by 'make install' as root.
	libcsvparser is shipped as a static library only. Should you require a
	dynamic library, edit the Makefile.