Lightweight HTTP/1.1 server library for embedding web servers in applications
Light HTTP/1.1 server library
$ gcc -o myserver myserver.c `pkg-config --cflags --libs libmicrohttpd`$ gcc -o api_server api.c -lmicrohttpd && ./api_server$ #include <microhttpd.h> // Then implement MHD_AccessHandlerCallback$ MHD_start_daemon(MHD_USE_SELECT_INTERNALLY, port, NULL, NULL, &handler, NULL, MHD_OPTION_END);$ gcc -o webserver server.c -lmicrohttpd && ./webserver --port 8080