LibreOffice
LibreOffice 4.2 SDK C/C++ API Reference
|
#include <stddef.h>
Go to the source code of this file.
Macros | |
#define | SAL_N_ELEMENTS(arr) (sizeof (arr) / sizeof ((arr)[0])) |
#define | SAL_BOUND(x, l, h) ((x) <= (l) ? (l) : ((x) >= (h) ? (h) : (x))) |
#define | SAL_ABS(a) (((a) < 0) ? (-(a)) : (a)) |
#define | SAL_STRINGIFY_ARG(x) #x |
#define | SAL_STRINGIFY(x) SAL_STRINGIFY_ARG(x) |
#define SAL_ABS | ( | a | ) | (((a) < 0) ? (-(a)) : (a)) |
#define SAL_BOUND | ( | x, | |
l, | |||
h | |||
) | ((x) <= (l) ? (l) : ((x) >= (h) ? (h) : (x))) |
#define SAL_N_ELEMENTS | ( | arr | ) | (sizeof (arr) / sizeof ((arr)[0])) |
#define SAL_STRINGIFY | ( | x | ) | SAL_STRINGIFY_ARG(x) |
#define SAL_STRINGIFY_ARG | ( | x | ) | #x |