Doxygen Source Code Documentation
cdf_78.c
Go to the documentation of this file.00001 #include "cdflib.h" 00002 long fifmod(long a,long b) 00003 /************************************************************************ 00004 FIFMOD: 00005 returns the modulo of a and b 00006 ************************************************************************/ 00007 /* a - numerator */ 00008 /* b - denominator */ 00009 { 00010 return a % b; 00011 } /* END */