diff options
Diffstat (limited to 'src/strutils.hh')
| -rw-r--r-- | src/strutils.hh | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/strutils.hh b/src/strutils.hh new file mode 100644 index 0000000..76120a8 --- /dev/null +++ b/src/strutils.hh @@ -0,0 +1,12 @@ +#ifndef STRUTILS_HH +#define STRUTILS_HH + +#include <string> + +namespace stuff { + +std::string ascii_tolower(const std::string& str); + +} // namespace stuff + +#endif /* STRUTILS_HH */ |
