summaryrefslogtreecommitdiff
path: root/src/strutils.hh
blob: 1d0a3a37f34ab87b6575c870c35dcb33412bc639 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef STRUTILS_HH
#define STRUTILS_HH

#include <string>

namespace stuff {

std::string ascii_tolower(const std::string& str);

std::string trim(const std::string& str);

}  // namespace stuff

#endif /* STRUTILS_HH */