Login Languish
string_utils.h
Go to the documentation of this file.
1 
8 #pragma once
9 
10 #include <string>
11 
12 namespace string_utils {
13  std::string toTitleCase(std::string str);
14  std::string toLowerCase(std::string str);
15 }
std::string toLowerCase(std::string str)
lowercase string converter
Definition: string_utils.cpp:17
Definition: string_utils.cpp:10
std::string toTitleCase(std::string str)
title case string converter
Definition: string_utils.cpp:33