wasteCase.h
Go to the documentation of this file.
1 /*-*- Mode: C++; coding: utf-8; c-basic-offset: 2; -*-*/
2 /*
3  libmoot : moocow's part-of-speech tagging library
4  Copyright (C) 2013 by Bryan Jurish <moocow@cpan.org> and Kay-Michael Würzner
5 
6  This library is free software; you can redistribute it and/or
7  modify it under the terms of the GNU Lesser General Public
8  License as published by the Free Software Foundation; either
9  version 3 of the License, or (at your option) any later version.
10 
11  This library is distributed in the hope that it will be useful,
12  but WITHOUT ANY WARRANTY; without even the implied warranty of
13  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14  Lesser General Public License for more details.
15 
16  You should have received a copy of the GNU Lesser General Public
17  License along with this library; if not, write to the Free Software
18  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 */
20 
21 /*--------------------------------------------------------------------------
22  * File: wasteToLower.h
23  * Author: Bryan Jurish <moocow@cpan.org>, Kay-Michael Würzner
24  * Description:
25  * + moot PoS tagger : WASTE HMM tokenizer: re2c utf8 case-folding
26  *--------------------------------------------------------------------------*/
27 
33 #ifndef _WASTE_CASE_H
34 #define _WASTE_CASE_H
35 
36 #include <string>
37 
38 namespace moot {
39 
41 std::string utf8ToLower(const std::string &s);
42 
43 };
44 
45 #endif /* _WASTE_CASE_H */
Definition: mootAssocVector.h:39
std::string utf8ToLower(const std::string &s)