Metropoli BBS
VIEWER: iplus.c MODE: TEXT (ASCII)
/*Copyright (C) 1992, 1996 by Thomas Glen Smith.  All Rights Reserved.*/
/* iplus APL2 V1.0.0 ***************************************************
* Called by disclosf, drop, expand, and transpot.                      *
* Returns the integer sum of its two integer arguments.                *
***********************************************************************/
#define INCLUDES 0
#include "includes.h"
int iplus(left,rite)
int left,rite;
{
	return(left+rite);
}

[ RETURN TO DIRECTORY ]