Go to the source code of this file.
Defines | |
#define | ACS_LLU "%llu" |
#define | ACS_LLU_PRINTF(a) a |
#define | ACS_LLU_SCANF(a) a |
#define | ACS_LLU_MOD(a, b) a%b |
Functions | |
unsigned long long | string2LLU (char *str) |
char * | LLU2String (unsigned long long) |
|
Macros ACS_LLU and ACS_LLU_PRINTF provide support for printing unsigned long long. Usage: ACE_OS::(f/s)printf ("Example :" ACS_LLU "\n", ACS_LLU_PRINTF(a)); |
|
Macro for calculating modules. |
|
|
|
Macro ACS_LLU_SCANFF is used as ACS_LLU_PRINTF but in a scanf function and it provides support for unsigned long long. Usage: scanf (buf, "Example :" ACS_LLU , ACS_LLU_SCANF(a)); |
|
Converts from unsigned long long to a character string.
|
|
Converts from string to unsigned long long. Conversion function exists for platforms that support unsigned long long and for platforms that do not support unsigned long long.
|