#include "copyright.h"Go to the source code of this file.
Defines | |
| #define | NULL 0 |
| #define | TRUE true |
| #define | FALSE false |
| #define | min(a, b) (((a) < (b)) ? (a) : (b)) |
| #define | max(a, b) (((a) > (b)) ? (a) : (b)) |
| #define | divRoundDown(n, s) ((n) / (s)) |
| #define | divRoundUp(n, s) (((n) / (s)) + ((((n) % (s)) > 0) ? 1 : 0)) |
Typedefs | |
| typedef void (* | VoidFunctionPtr )(void *arg) |
| typedef void (* | VoidNoArgFunctionPtr )() |
|
|
|
|
|
|
|
|
|
|
|
Definition at line 24 of file utility.h. Referenced by OpenFile::ReadAt(), and OpenFile::WriteAt().
|
|
|
Definition at line 25 of file utility.h. Referenced by FileHeader::Allocate(), Bitmap::Bitmap(), and AddrSpace::Load().
|
|
|
|
|
|
|
|
|
|
|
|
|
1.2.8.1 written by Dimitri van Heesch,
© 1997-2001