1 /**********************************************************
2  *
3  * libmp3splt -- library based on mp3splt,
4  *               for mp3/ogg splitting without decoding
5  *
6  * Copyright (c) 2010 David Belohrad
7  * Copyright (c) 2010-2014 Alexandru Munteanu - m@ioalex.net
8  *
9  * http://mp3splt.sourceforge.net
10  *
11  *********************************************************/
12 
13 /**********************************************************
14  *
15  * This program is free software; you can redistribute it and/or
16  * modify it under the terms of the GNU General Public License
17  * as published by the Free Software Foundation; either version 2
18  * of the License, or (at your option) any later version.
19  *
20  * This program is distributed in the hope that it will be useful,
21  * but WITHOUT ANY WARRANTY; without even the implied warranty of
22  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
23  * GNU General Public License for more details.
24  *
25  * You should have received a copy of the GNU General Public License
26  * along with this program; if not, write to the Free Software
27  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
28  * USA.
29  *
30  *********************************************************/
31 
32 #ifndef NO_PCRE
33 
34 #ifndef SPLT_FILENAME_REGEX_H
35 
36 splt_tags *splt_fr_parse_from_state(splt_state *state, int *error);
37 splt_tags *splt_fr_parse(splt_state *state, const char *filename, const char *regex,
38     const char *default_comment, const char *default_genre, int *error);
39 
40 #define SPLT_FILENAME_REGEX_H
41 
42 #endif
43 
44 #endif
45 
46