fis-gtm/sr_port/mvalconv.h

34 lines
1.2 KiB
C

/****************************************************************
* *
* Copyright 2001, 2013 Fidelity Information Services, Inc *
* *
* This source code contains the intellectual property *
* of its copyright holder(s), and is made available *
* under a license. If you do not know the terms of *
* the license, please stop and do not read further. *
* *
****************************************************************/
#ifndef __MVALCONV_H__
#define __MVALCONV_H__
/* Several of the following functions suffer from a lack of precision when used
* on a 64bit system. ints are 4 byte values, but the functions i2mval and i2usmval
* i2usmval are written as if they were taking an 8 byte value as a parameter.
*/
void i2smval(mval *v, uint4 i);
void i2usmval(mval *v, unsigned int i);
void i2mval(mval *v, int i);
void ui82mval(mval *v, gtm_uint64_t i);
void i82mval(mval *v, gtm_int64_t i);
void float2mval(mval *dst, float src);
void double2mval(mval *dst, double src);
double mval2double(mval *v);
int4 mval2i(mval *v);
gtm_int64_t mval2i8(mval *v);
gtm_uint64_t mval2ui8(mval *v);
uint4 mval2ui(mval *v);
boolean_t isint (mval *v, int4 *intval);
#endif