Code

match: case sensitive search with --enable-mini
[ncmpc.git] / src / match.h
1 /*
2  * (c) 2008 Max Kellermann <max@duempel.org>
3  *
4  * This program is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation; either version 2 of the License, or
7  * (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  * You should have received a copy of the GNU General Public License
14  * along with this program; if not, write to the Free Software
15  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
16  *
17  */
19 #ifndef MATCH_H
20 #define MATCH_H
22 #include "config.h"
24 #include <stdbool.h>
26 #ifdef NCMPC_MINI
28 #include <string.h>
30 static inline bool
31 match_line(const char *line, const char *needle)
32 {
33         return strstr(line, needle) != NULL;
34 }
36 #else
38 /**
39  * Checks whether the specified line matches the search string.  Case
40  * is ignored.
41  */
42 bool
43 match_line(const char *line, const char *needle);
45 #endif
47 #endif