Project

General

Profile

Statistics
| Revision:

root / trunk / code / lib / include / libdragonfly / math.h @ 88

History | View | Annotate | Download (277 Bytes)

1 88 bcoltin
/**
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