7 lines
100 B
C++
7 lines
100 B
C++
#ifndef UTILS_H
|
|
#define UTILS_H
|
|
#include <string>
|
|
|
|
std::string trim(const std::string& str);
|
|
#endif
|