libnghttp3

HTTP/3 protocol library for building web applications with modern encryption.

brewmacoslinux
Try with needOr install directly
Source

About

HTTP/3 library written in C

Examples

check if libnghttp3 is installed and working$ brew list libnghttp3
view library files installed by libnghttp3$ ls $(brew --prefix libnghttp3)/lib
check version of libnghttp3$ brew info libnghttp3
link libnghttp3 headers for development$ pkg-config --cflags libnghttp3
compile code using libnghttp3 HTTP/3 library$ gcc myapp.c $(pkg-config --cflags --libs libnghttp3) -o myapp