DumpDVD/DumpDVD/Utils.hpp

9 lines
146 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);
};
}
#endif