]> git.lizzy.rs Git - nothing.git/blob - src/algo.h
Merge pull request #139 from tsoding/134
[nothing.git] / src / algo.h
1 #ifndef ALGO_H_
2 #define ALGO_H_
3
4 #define MIN(a,b) (((a)<(b))?(a):(b))
5 #define MAX(a,b) (((a)>(b))?(a):(b))
6
7 #endif  // ALGO_H_