诸暨麻将添加redis
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 
 
 
 

13 satır
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