cpp-project-template 0.0.1.0
C++ Project Template
Loading...
Searching...
No Matches
utils.hpp
Go to the documentation of this file.
1
10
11#ifndef CPP_PROJ_UTILS
12#define CPP_PROJ_UTILS
13
14#include <string>
15
16namespace cpp_proj
17{
18
26std::string wordWrap(const std::string &str, size_t width);
27
28} // namespace cpp_proj
29
30#endif // CPP_PROJ_UTILS
Namespace for this application.
Definition UserOpt.cpp:12
std::string wordWrap(const std::string &s, size_t width)
Breaks a string into multiple lines, each not exceeding the specified width.
Definition utils.cpp:10