Add README
[xapian-trec.git] / split.h
blob59597759541b7b9089d25f04d5a0a35c03fc4011
1 /* split.: split a string routine
3 * ----START-LICENCE----
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License as
7 * published by the Free Software Foundation; either version 2 of the
8 * License, or (at your option) any later version.
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.
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
18 * USA
19 * -----END-LICENCE-----
23 #ifndef _SPLIT_H_
24 #define _SPLIT_H_
26 #include <string>
27 using namespace std;
29 extern void split( const string &s, char c, vector<string> &res);
31 #endif