DumpDVD/DumpDVD/Utils.hpp

10 lines
230 B
C++
Raw Normal View History

2023-03-15 06:59:59 +00:00
#ifndef _LI_UTILS
#include <string>
namespace Li {
class Utils {
public:
static std::string HumanReadableByteStr(uint64_t bytes);
2023-03-16 19:26:43 +00:00
static bool CompareStringCaseInsensitive(std::string input, std::string compare);
2023-03-15 06:59:59 +00:00
};
}
#endif