| 
| #define  | TABLESIZE(table)   (sizeof(table)/sizeof(table[0])) | 
|   | A macro returns the number of elements in a table.  More...
  | 
|   | 
| #define  | MAX(x,  y)   (((x) > (y))?(x):(y)) | 
|   | A macro returns the maximum of x and y.  More...
  | 
|   | 
| #define  | MIN(x,  y)   (((x) < (y))?(x):(y)) | 
|   | A macro returns the minimum of x and y.  More...
  | 
|   | 
| #define  | ABS(x)   (((x)<0) ? -(x) : (x)) | 
|   | A macro returns the absolute value of x.  More...
  | 
|   | 
| #define  | MAX_PATH   PATH_MAX | 
|   | The possible maximal length of a path name.  More...
  | 
|   | 
| #define  | MAX_NAME   NAME_MAX | 
|   | The possible maximal length of a file name.  More...
  | 
|   |