openATV enigma2
openATV is an open source SetTopBox Graphical user interface.
absdiff.h
Go to the documentation of this file.
1 #ifndef __ABSDIFF__
2 #define __ABSDIFF__
3 
4 static inline unsigned int absdiff(unsigned int a, unsigned int b)
5 {
6  return a < b ? (b - a) : (a - b);
7 }
8 
9 #endif // __ABSDIFF__
static unsigned int absdiff(unsigned int a, unsigned int b)
Definition: absdiff.h:4