libmpdclient 2.22
send.h
Go to the documentation of this file.
1// SPDX-License-Identifier: BSD-2-Clause
2// Copyright The Music Player Daemon Project
3
10#ifndef LIBMPDCLIENT_SEND_H
11#define LIBMPDCLIENT_SEND_H
12
13#include "compiler.h"
14
15#include <stdbool.h>
16
17struct mpd_connection;
18
19#ifdef __cplusplus
20extern "C" {
21#endif
22
31mpd_sentinel
32bool
33mpd_send_command(struct mpd_connection *connection, const char *command, ...);
34
35#ifdef __cplusplus
36}
37#endif
38
39#endif
mpd_sentinel bool mpd_send_command(struct mpd_connection *connection, const char *command,...)