10 lines
184 B
C
10 lines
184 B
C
|
#ifndef _UTILS_H
|
||
|
#define _UTILS_H
|
||
|
|
||
|
#include <string>
|
||
|
|
||
|
std::string strip_whitespaces (const std::string input_str);
|
||
|
bool create_dir (const std::string &dir_str);
|
||
|
|
||
|
#endif /* _UTILS_H */
|