looper/base85.h
2024-09-28 10:31:18 -07:00

10 lines
No EOL
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());
}