libpcl

C library and API for implementing coroutines and lightweight concurrency

brewmacoslinux
Try with needOr install directly
Source

About

C library and API for coroutines

Examples

check if libpcl is installed and see version info$ pkg-config --modversion libpcl
find libpcl header files location on system$ pkg-config --cflags libpcl
get compiler flags needed to link against libpcl$ pkg-config --libs libpcl
compile C program that uses coroutines with libpcl$ gcc myprogram.c $(pkg-config --cflags --libs libpcl) -o myprogram
see all available libpcl package information$ pkg-config --list-all | grep libpcl