libparserutils

Library for building efficient parsers in C

brewmacoslinux
Try with needOr install directly
Source

About

Library for building efficient parsers

Examples

check if libparserutils is installed and see version$ pkg-config --modversion libparserutils
find where libparserutils header files are located$ pkg-config --cflags libparserutils
get compiler flags needed to link libparserutils$ pkg-config --libs libparserutils
use libparserutils in a C program compilation$ gcc myparser.c $(pkg-config --cflags --libs libparserutils) -o myparser