aboutsummaryrefslogtreecommitdiff
path: root/src/cue/cue_tag.h
blob: e5dc24fb97b1e2a4ff0e53d07c1944d95004bd0b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#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 *file, unsigned tnum);

struct tag *
cue_tag_string(const char *str, unsigned tnum);

#endif /* libcue */
#endif