fysxasteroids/engine/Utils.h

12 lines
282 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);
std::string sha256_hash (std::string input);
std::string sha256_hash_file (const char *filename);
#endif /* _UTILS_H */