| quad_t LTOQ(long x) |
|
| Returns a quad_t with the lower bits
filled with x. Effectively converting a long to a quad_t. |
|
| long QTOL(quad_t x) |
|
| Returns the lower bits of
x. Truncating a quad_t into a long. |
|
| bool QTOBOOL(quad_t x) |
|
| Return a bool containing non-zero
if x is non-zero and zero otherwise. Effectively convert a quad_t to a
boolean. |
|
| char * QTOSTR(quad_t x) |
|
| Return a string of the base 10
representation of x. This call will allocate space on the heap to
store the string, so this memory must be free()'d when no longer in
use. |
|
| quad_t STRTOQ(char *str) |
|
| Return the quad_t
representation of the base 10 number contained in str. |
|