peerplays-fc/include/fc/base58.hpp
Daniel Larimer 9a8767a645 Fixed error_report to_string
Updated fc::datastream and base64 to use error_report
Added url to cmake lists
various other bug fixes
2012-12-15 10:26:03 -05:00

9 lines
265 B
C++

#ifndef _FC_BASE58_HPP_
#define _FC_BASE58_HPP_
#include <fc/string.hpp>
namespace fc {
fc::string to_base58( const char* d, uint32_t s );
size_t from_base58( const fc::string& base58_str, char* out_data, size_t out_data_len );
}
#endif // _FC_BASE58_HPP_