Project

General

Profile

Statistics
| Revision:

root / branches / lib_additions / code / projects / libdragonfly / math.h @ 45

History | View | Annotate | Download (277 Bytes)

1
/**
2
 * 
3
 * @file math.h
4
 * @brief Contains math function(s)
5
 * 
6
 * @author Colony Project, CMU Robotics Club, James Kong
7
*/
8

    
9
#ifndef _MATH_H_
10
#define _MATH_H_
11

    
12
/**
13
 * @addtogroup math
14
 * @{
15
 **/
16
 
17
/** @brief absolute value **/
18
int abs_int(int x);
19

    
20
/**@}**/ //end group
21

    
22
#endif