diff options
Diffstat (limited to 'mpc/audio_format.h')
-rw-r--r-- | mpc/audio_format.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/mpc/audio_format.h b/mpc/audio_format.h new file mode 100644 index 0000000..963f653 --- /dev/null +++ b/mpc/audio_format.h @@ -0,0 +1,12 @@ +// SPDX-License-Identifier: GPL-2.0-or-later +// Copyright The Music Player Daemon Project + +#pragma once + +#include <stddef.h> + +struct mpd_audio_format; + +void +format_audio_format(char *buffer, size_t buffer_size, + const struct mpd_audio_format *audio_format); |