10 lines
333 B
C
10 lines
333 B
C
|
#pragma once
|
||
|
#include <vector>
|
||
|
#include <cstring>
|
||
|
#include <string>
|
||
|
// Modified from Dear ImGui
|
||
|
std::vector<unsigned char> DecodeBase85(const char *src);
|
||
|
// May not be needed now, but could be useful in the future.
|
||
|
static inline std::vector<unsigned char> DecodeBase85(const std::string src) {
|
||
|
return DecodeBase85(src.c_str());
|
||
|
}
|