looper/base85.h

10 lines
333 B
C
Raw Normal View History

2023-07-24 23:13:47 -07:00
#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());
}