poe_bundle 0.1.5

Library for extracting Oodle bundles used by the game Path of Exile
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#pragma once

#include <string>

namespace bun {
	namespace util {
		std::string lowercase(std::string const& s);
		std::u16string lowercase(std::u16string const& s);
		std::string to_string(std::u16string const& s);
		std::u16string to_u16string(std::string const& s);
	}
}