blob: 76120a8b9bd71a35ed15e4eca7a8bf78e564a07f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef STRUTILS_HH
#define STRUTILS_HH
#include <string>
namespace stuff {
std::string ascii_tolower(const std::string& str);
} // namespace stuff
#endif /* STRUTILS_HH */
|