/* Modular addition */
long xpymn(x,y,n) long x,y,n; {
long result;
if (n<=0) return 0;
result = (x+y) % n;
return result;
}
This page is http://www.cc.utah.edu/~nahaj/factoring/xpymn.c.html
© Copyright 2000 by John Halleck, All Rights Reserved.
This snapshot was last modified on January 18th, 2001
And the underlying file was last modified on January 4th, 1998