libbert icon indicating copy to clipboard operation
libbert copied to clipboard

A BERT library for C++ and C

Results 1 libbert issues
Sort by recently updated
recently updated
newest added

// format.hpp #ifndef LIBBERT_NO_EXTENSION template < typename Iterator > Iterator format_new_float( real_t data, Iterator i ) { *i = (byte_t)X_NEW_FLOAT_EXT; char buf[8]; std::copy( reinterpret_cast(&data), reinterpret_cast(&data)+8, buf ); #ifndef LIBBERT_BIGENDIAN std::reverse(buf,...