21 lines
293 B
C
21 lines
293 B
C
/*
|
|
* utils.h
|
|
*
|
|
* Created on: Feb 11, 2015
|
|
* Author: wn
|
|
*/
|
|
|
|
#ifndef UTILS_H_
|
|
#define UTILS_H_
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
int32_t max(int32_t a, int32_t b);
|
|
int32_t min(int32_t a, int32_t b);
|
|
int32_t minmax(int32_t lowerBound, int32_t value, int32_t upperBound);
|
|
|
|
|
|
|
|
#endif /* UTILS_H_ */
|