looper/base85.h

6 lines
154 B
C
Raw Normal View History

2024-09-28 10:31:06 -07:00
#pragma once
#include <vector>
#include <cstring>
#include <string>
// Modified from Dear ImGui
2024-12-21 14:23:00 -08:00
std::vector<unsigned char> *DecodeBase85(const char *src);