FONTAINE 1.0
BasicLatinStringUtilities.h
Go to the documentation of this file.
00001 //
00002 // BasicLatinStringUtilities.h
00003 //
00004 #include <string>
00005 
00006 namespace BasicLatin{
00007 
00008 std::string & capitalize(std::string &s);
00009 std::string & segmentize(std::string &s);
00010 std::string & toUpperCase(std::string &s);
00011 std::string & escapeASCIIDoubleQuote(std::string &s);
00012 
00013 }; // end namespace BasicLatin
00014