blob: aea5853386cbe75f4a3bf54a4c6c9b321a52f7e6 (
plain) (
tree)
|
|
#ifndef MPD_CUE_TAG_H
#define MPD_CUE_TAG_H
#include "check.h"
#ifdef HAVE_CUE /* libcue */
#include "tag.h"
#include <libcue/libcue.h>
struct tag*
cue_tag_file( FILE*,
const unsigned int);
struct tag*
cue_tag_string( char*,
const unsigned int);
#endif /* libcue */
#endif
|