Files

11 lines
233 B
C
Raw Permalink Normal View History

2026-02-13 14:34:15 +08:00
#ifndef _coBase64_H_
#define _coBase64_H_
#include <string>
// 编码
void coBase64Encode(std::string& outs, const std::string& ins);
// 解码
void coBase64Decode(std::string& outs, const std::string& ins);
#endif // _coBase64_H_