Macros for debugging output. More...
Macros | |
| #define | DBG(x) |
| Print debugging message. | |
| #define | DBGd1(x, a) |
| Print debugging message and a number. | |
| #define | DBGd2(x, a, b) |
| Print debugging message and two numbers. | |
| #define | DBGs1(x, a) |
| Print debugging message and an extra string. | |
| #define | DBGn(x) |
| Print debugging message without newline. | |
| #define | DBGnd1(x, a) |
| Print debugging message and a number without newline. | |
| #define | DBGnd2(x, a, b) |
| Print debugging message and two numbers without newline. | |
| #define | DBGns1(x, a) |
| Print debugging message and an extra string without newline. | |
Macros for debugging output.
These macros should be used to output unimportant messages, that might be useful during debugging.
| #define DBG | ( | x | ) |
Print debugging message.
| x | the message |
| #define DBGd1 | ( | x, | |
| a | |||
| ) |
Print debugging message and a number.
| x | the message |
| a | the number |
| #define DBGd2 | ( | x, | |
| a, | |||
| b | |||
| ) |
Print debugging message and two numbers.
| x | the message |
| a | first number |
| b | second number |
| #define DBGn | ( | x | ) |
Print debugging message without newline.
| x | the message |
| #define DBGnd1 | ( | x, | |
| a | |||
| ) |
Print debugging message and a number without newline.
| x | the message |
| a | the number |
| #define DBGnd2 | ( | x, | |
| a, | |||
| b | |||
| ) |
Print debugging message and two numbers without newline.
| x | the message |
| a | first number |
| b | second number |
| #define DBGns1 | ( | x, | |
| a | |||
| ) |
Print debugging message and an extra string without newline.
| x | the message |
| a | the extra string |
| #define DBGs1 | ( | x, | |
| a | |||
| ) |
Print debugging message and an extra string.
| x | the message |
| a | the extra string |