Files correlati : Ricompilazione Demo : [ ] Commento : Aggiunti i sorgenti per Greenleaf Math Library (gfm.dll) git-svn-id: svn://10.65.10.50/trunk@10079 c028cbd2-c16b-5b4b-a496-9718f37d4682
		
			
				
	
	
		
			52 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			C
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			52 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			C
		
	
	
		
			Executable File
		
	
	
	
	
/* DEC	*DivideDecimalByUns(pDst,pSrc1,lSrc2);
 | 
						|
 *
 | 
						|
 * ARGUMENT
 | 
						|
 *	DEC	*pDst;
 | 
						|
 *	DEC	*pSrc1;
 | 
						|
 *	unsigned lSrc2;
 | 
						|
 *
 | 
						|
 * DESCRIPTION
 | 
						|
 *	Divides	pSrc1 by ConvIntToDecimal(lSrc2) and puts the result in
 | 
						|
 *  pDst. pSrc1	and lSrc2 remain unchanged. Note that
 | 
						|
 *  we always call the _DivDec80Bit() routine to do the	actual divide,
 | 
						|
 *  sign chking, etc.
 | 
						|
 *
 | 
						|
 * SIDE	EFFECTS
 | 
						|
 *	None.
 | 
						|
 *
 | 
						|
 * RETURNS
 | 
						|
 *	Returns	pointer	to pDst	if successful, otherwise a GM_NULL. The
 | 
						|
 *   type error	(GM_OVERFLOW, GM_NOMEMORY, GM_DIV0) is in wGMError
 | 
						|
 *   if	wGMError didn't	contain	a previous error on entry.
 | 
						|
 *
 | 
						|
 * POSSIBLE ERROR CODES
 | 
						|
 *
 | 
						|
 *	GM_NULLPOINTER
 | 
						|
 *	GM_UNDERFLOW
 | 
						|
 *	GM_DIV0
 | 
						|
 *
 | 
						|
 * AUTHOR
 | 
						|
 *  Andy Anderson   5-Mar-87	17:45
 | 
						|
 *   Copyright (C) 1987-1990 Greenleaf Software	Inc.  All rights reserved.
 | 
						|
 *
 | 
						|
 * MODIFICATIONS
 | 
						|
 *
 | 
						|
 */
 | 
						|
 | 
						|
#include <stdio.h>
 | 
						|
#include "gm.h"
 | 
						|
#include "gmsystem.h"
 | 
						|
 | 
						|
DEC	*DivideDecimalByUns(pDst,pSrc1,lSrc2)
 | 
						|
DEC	*pDst,*pSrc1;
 | 
						|
unsigned int lSrc2;
 | 
						|
{
 | 
						|
 | 
						|
	DEC	*t;
 | 
						|
 | 
						|
	_MacStart(GM_DIVUID);
 | 
						|
 | 
						|
	t = DivideDecimalByLong(pDst,pSrc1,(long) lSrc2);
 | 
						|
	_MacRet(t);
 | 
						|
}
 |