libcw/cwUtility.h
kevin fa33ac00c9 cwFileSys.h/cpp : Added makeDir().
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>().
2020-09-01 15:46:21 -04:00

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