fa33ac00c9
cwLog.h/cpp : Added cwLogPrint() functions. cwMtx.h : Many addtions. cwObject.h : Added find_child() functions. cwUtility.h/cpp : Added x80ToDouble() and doubleToX80(). cwCommon.h : Added new RC codes cwCommonImpl.h : Added swapping macros and is_int<T>().
14 lines
252 B
C++
14 lines
252 B
C++
#ifndef cwUtility_h
|
|
#define cwUtility_h
|
|
|
|
namespace cw
|
|
{
|
|
void printHex( const void* buf, unsigned bufByteN, bool asciiFl=true );
|
|
|
|
double x80ToDouble( unsigned char s[10] );
|
|
void doubleToX80( double v, unsigned char s[10] );
|
|
|
|
}
|
|
|
|
#endif
|