stringlists is an open source C library that combines the lists and strings libraries in order to provide a simple to use string list functions for C. It features functions to delete, create, search, iterate and match strings lists.
To compile this library, execute the following commands:
gcc -c stringlists.c
gcc -c strings.c -DHAVE_LONG_LONG
gcc -c lists.c
gcc -c global.c
gcc -c stringlists_demo.c
gcc -o stringlists_demo stringlists_demo.o strings.o lists.o global.o stringlists.o -lpthread
Product's homepage
What's New in This Release: [ read full changelog ]
· Updated included lists library.