00001 /** 00002 * @file util_math.h 00003 * @author Chris Green <cmg@sourcefire.com> 00004 * @date Fri Jun 27 10:12:57 2003 00005 * 00006 * @brief math related util functions 00007 * 00008 * Place simple math functions that are useful all over the place 00009 * here. 00010 */ 00011 00012 #ifndef _UTIL_MATH_H 00013 #define _UTIL_MATH_H 00014 00015 double calc_percent(double amt, double total); 00016 00017 #endif /* _UTIL_MATH_H */ 00018 00019