C library for controlling Music Player Daemon (MPD) over the network.
Library for MPD in the C, C++, and Objective-C languages
$ gcc -o mpd_client myapp.c $(pkg-config --cflags --libs libmpdclient)$ #include <mpd/client.h>
struct mpd_connection *conn = mpd_connection_new("localhost", 6600, 0);$ g++ -o player app.cpp -lmpdclient$ pkg-config --modversion libmpdclient$ pkg-config --cflags libmpdclient