mirror of
https://github.com/elua/elua.git
synced 2025-01-25 01:02:54 +08:00
9 lines
160 B
C
9 lines
160 B
C
// General purpose function/macros
|
|
|
|
#ifndef __UTILS_H__
|
|
#define __UTILS_H__
|
|
|
|
#define ABSDIFF( x, y ) ( ( x ) >= ( y ) ? ( x ) - ( y ) : ( y ) - ( x ) )
|
|
|
|
#endif
|