blob: 2a7738ea29ac8727a21a87c307c6de5169a9f569 (
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 tag*
cue_tag_file( FILE*,
const unsigned int);
struct tag*
cue_tag_string( char*,
const unsigned int);
#endif /* libcue */
#endif
|