diff options
author | Max Kellermann <max@duempel.org> | 2012-02-10 00:12:29 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2012-02-10 00:12:29 +0100 |
commit | abcc225763e543b75baaa4ff11342e911194910d (patch) | |
tree | c278ea61339d0a7c5ab1ed00881a15751c29b2c4 /src/cue/cue_tag.h | |
parent | b9673fc521c453f8729544541ba48fcafefcf4e9 (diff) | |
download | mpd-abcc225763e543b75baaa4ff11342e911194910d.tar.gz mpd-abcc225763e543b75baaa4ff11342e911194910d.tar.xz mpd-abcc225763e543b75baaa4ff11342e911194910d.zip |
cue_parser: new line based CUE sheet parser
To replace libcue, the unmaintained and crashy library.
Diffstat (limited to 'src/cue/cue_tag.h')
-rw-r--r-- | src/cue/cue_tag.h | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/src/cue/cue_tag.h b/src/cue/cue_tag.h deleted file mode 100644 index 1ddaa59c8..000000000 --- a/src/cue/cue_tag.h +++ /dev/null @@ -1,23 +0,0 @@ -#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 |