AuxMax




 

Color Convention
 Blue  Comments 
 Red  Generic Terms
 Yelow  Reserved  words and Commands 
 Brown  Defines
  Link  Link to other functions

 

/****************************************************************************
 *
 *  Auxiliary Function    : AuxMax
 *
 *  Description : returns the maximum of two values
 *
 ****************************************************************************/
float AuxMax (float val1, float val2)
return(if (val1 > val2)
           return(val1)
        else
           return(val2));