TizenRT Libs&Environment
v2.0 M2
|
Provides APIs for Integer Types. More...
![]() |
Files | |
file | inttypes.h |
Inttypes APIs. | |
Data Structures | |
struct | imaxdiv_t |
Macros | |
#define | EXTERN extern |
Functions | |
intmax_t | imaxabs (intmax_t j) |
return absolute value More... | |
imaxdiv_t | imaxdiv (intmax_t numer, intmax_t denom) |
return quotient and remainder of an integer division More... | |
intmax_t | strtoimax (FAR const char *nptr, FAR char **endptr, int base) |
convert string to integer More... | |
uintmax_t | strtoumax (FAR const char *nptr, FAR char **endptr, int base) |
convert string to unsigned integer More... | |
Provides APIs for Integer Types.
#define EXTERN extern |
Definition at line 199 of file inttypes.h.
intmax_t imaxabs | ( | intmax_t | j | ) |
return absolute value
#include <inttypes.h>
POSIX API (refer to : http://pubs.opengroup.org/onlinepubs/9699919799/)
imaxdiv_t imaxdiv | ( | intmax_t | numer, |
intmax_t | denom | ||
) |
return quotient and remainder of an integer division
#include <inttypes.h>
POSIX API (refer to : http://pubs.opengroup.org/onlinepubs/9699919799/)
intmax_t strtoimax | ( | FAR const char * | nptr, |
FAR char ** | endptr, | ||
int | base | ||
) |
convert string to integer
#include <inttypes.h>
POSIX API (refer to : http://pubs.opengroup.org/onlinepubs/9699919799/)
uintmax_t strtoumax | ( | FAR const char * | nptr, |
FAR char ** | endptr, | ||
int | base | ||
) |
convert string to unsigned integer
#include <inttypes.h>
POSIX API (refer to : http://pubs.opengroup.org/onlinepubs/9699919799/)