1
/*
2
 * Copyright (C) 2008-2011 Various Authors
3
 * Copyright (C) 2011 Gregory Petrosyan
4
 *
5
 * This program is free software: you can redistribute it and/or modify
6
 * it under the terms of the GNU General Public License as published by
7
 * the Free Software Foundation, either version 2 of the License, or
8
 * (at your option) any later version.
9
 *
10
 * This program is distributed in the hope that it will be useful,
11
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13
 * GNU General Public License for more details.
14
 *
15
 * You should have received a copy of the GNU General Public License
16
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
17
 */
18
19
20
#ifndef __CUE_UTILS_H__
21
#define __CUE_UTILS_H__
22
23
#include <stdio.h>
24
25
/*
26
 * warning: this header does not contain include guards!
27
 */
28
#include <libcue/libcue.h>
29
30
31
/*
32
 * libcue developers think that printing parsing errors to stderr is a good idea
33
 * they are wrong
34
 */
35
Cd *cue_parse_file__no_stderr_garbage(FILE *f);
36
37
char *associated_cue(const char *filename);
38
int cue_get_ntracks(const char *filename);
39
char *construct_cue_url(const char *cue_filename, int track_n);
40
41
42
#endif