blob: 1ddaa59c833f115340d2b4f6a7d4e329ebcc5fe7 (
plain) (
tree)
|
|
#ifndef MPD_CUE_TAG_H
#define MPD_CUE_TAG_H
#include "check.h"
#ifdef HAVE_CUE /* libcue */
#include <stdio.h>
struct tag;
struct Cd;
struct tag *
cue_tag(struct Cd *cd, unsigned tnum);
struct tag *
cue_tag_file(FILE *file, unsigned tnum);
struct tag *
cue_tag_string(const char *str, unsigned tnum);
#endif /* libcue */
#endif
|