[BACK]Return to bf.h CVS log [TXT][DIR] Up to [local] / OpenXM_contrib2 / asir2000 / include

File: [local] / OpenXM_contrib2 / asir2000 / include / bf.h (download)

Revision 1.1, Fri Dec 3 07:39:11 1999 UTC (24 years, 5 months ago) by noro
Branch: MAIN

Initial revision

/* $OpenXM: OpenXM_contrib2/asir2000/include/bf.h,v 1.1 1999/12/03 07:39:11 noro Exp $ */
struct oBf {
	short id;
	char nid;
	char sgn:4,esgn:4;
	N e,m;
};

typedef struct oBf *Bf;

#define NEWBf(b) ((b)=(Bf)MALLOC(sizeof(struct oBf)))
#define MKBf(exp,esgn,sgn,man,b)\
(NEWBf(b),(b)->e=(exp),(b)->esgn=(esgn),(b)->sgn=(sgn),(b)->m=(man))