libowfat

C library reimplementing libdjb with string, array, and I/O utilities.

brewmacoslinux
Try with needOr install directly
Source

About

Reimplements libdjb

Examples

link C code against libowfat library for string functions$ gcc -o myapp myapp.c -lowfat
use libowfat string utilities in a C program$ cat > test.c << 'EOF' #include <libowfat/str.h> int main() { return str_len("hello"); } EOF gcc -o test test.c -lowfat
compile code using libowfat buffer functions$ gcc -o buffer_app app.c -lowfat -I/usr/local/include
check libowfat installation and version$ pkg-config --modversion libowfat
find libowfat header files on system$ find /usr/local -name '*.h' -path '*libowfat*'