Go to the source code of this file.
Defines | |
| #define | MAX(a, b) ((a) > (b)) ? (a) : (b) |
| This macro returns the maximum of two numbers. | |
| #define | MIN(a, b) ((a) > (b)) ? (a) : (b) |
| This macro returns the minimum of two numbers. | |
Functions | |
| void | do_nothing (int do, char nothing) |
| This function does nothing. | |
This file shows how to use all the commands described.
|
|
This macro returns the maximum of two numbers.
|
|
|
This macro returns the minimum of two numbers.
|
|
||||||||||||
|
This function does nothing.
|
1.3.2