诸暨麻将添加redis
您不能選擇超過 %s 個話題 話題必須以字母或數字為開頭,可包含連接號 ('-') 且最長為 35 個字
 
 
 
 
 
 

13 行
205 B

  1. #pragma once
  2. #ifndef BASE64_H
  3. #define BASE64_H
  4. #include <string>
  5. std::string base64_encode(unsigned char const*, unsigned int len);
  6. std::string base64_decode(std::string const& s);
  7. #endif //BASE64_H