FONTAINE  1.0
BasicLatinStringUtilities.h
Go to the documentation of this file.
1 //
2 // BasicLatinStringUtilities.h
3 //
4 #include <string>
5 
6 namespace BasicLatin{
7 
8 std::string & capitalize(std::string &s);
9 std::string & segmentize(std::string &s);
10 std::string & toUpperCase(std::string &s);
11 std::string & escapeASCIIDoubleQuote(std::string &s);
12 
13 }; // end namespace BasicLatin
14