_PDCLIB_config.h

The PDCLib Configurator header

Author

Martin ‘Solar’ Baute

License

Public Domain

Summary
_PDCLIB_config.hThe PDCLib Configurator header
_PDCLIB_div_tprototype of the div_t type
Variables
quotstores the quotient of the division
remstores the remainder after the division
_PDCLIB_ldiv_tprototype of the ldiv_t type
Variables
quotstores the quotient of the division
remstores the remainder after the division
_PDCLIB_lldiv_tprototype of the lldiv_t type
Variables
quotstores the quotient of the division
remstores the remainder after the division

_PDCLIB_div_t

struct _PDCLIB_div_t

prototype of the div_t type

Summary
Variables
quotstores the quotient of the division
remstores the remainder after the division

Variables

quot

int quot

stores the quotient of the division

rem

int rem

stores the remainder after the division

_PDCLIB_ldiv_t

struct _PDCLIB_ldiv_t

prototype of the ldiv_t type

Summary
Variables
quotstores the quotient of the division
remstores the remainder after the division

Variables

quot

long int quot

stores the quotient of the division

rem

long int rem

stores the remainder after the division

_PDCLIB_lldiv_t

struct _PDCLIB_lldiv_t

prototype of the lldiv_t type

Summary
Variables
quotstores the quotient of the division
remstores the remainder after the division

Variables

quot

long long int quot

stores the quotient of the division

rem

long long int rem

stores the remainder after the division

struct _PDCLIB_div_t
prototype of the div_t type
int quot
stores the quotient of the division
int rem
stores the remainder after the division
struct _PDCLIB_ldiv_t
prototype of the ldiv_t type
long int quot
stores the quotient of the division
long int rem
stores the remainder after the division
struct _PDCLIB_lldiv_t
prototype of the lldiv_t type
long long int quot
stores the quotient of the division
long long int rem
stores the remainder after the division