Metropoli BBS
VIEWER: iresidu.c MODE: TEXT (ASCII)
/*Copyright (C) 1992, 1996 by Thomas Glen Smith.  All Rights Reserved.*/
/* iresidu APL2 V1.0.0 *************************************************
* Returns the remainder after dividing left into rite.                 *
***********************************************************************/
#define INCLUDES 0
#include "includes.h"
int iresidu(left,rite)
int left,rite;
{
	Imod;
     return(imod(rite,left));
}

[ RETURN TO DIRECTORY ]