|
||||
File indexing completed on 2025-01-18 10:02:04
0001 #ifndef MAD_UTILS_H 0002 #define MAD_UTILS_H 0003 0004 // functions 0005 0006 int intrac(void); 0007 0008 // inliners 0009 0010 static inline int 0011 imax(int a, int b) { 0012 return a > b ? a : b; 0013 } 0014 0015 static inline int 0016 imin(int a, int b) { 0017 return a < b ? a : b; 0018 } 0019 0020 #endif // MAD_UTILS_H 0021
[ Source navigation ] | [ Diff markup ] | [ Identifier search ] | [ general search ] |
This page was automatically generated by the 2.3.7 LXR engine. The LXR team |