ULongLongToBinStr
char *ULongLongToBinStr (unsigned long long unsignedLongLongValue, char *binaryString);
Purpose
Convert an unsigned 64-bit integer value to a nul-terminated binary string
The buffer must be large enough to hold the binary representation of the unsigned 64-bit integer value passed to the function.
The return value is the pointer to the input buffer.
Parameters
| Input | ||
| Name | Type | Description |
| unsignedLongLongValue | unsigned long long | An unsigned 64-bit integer value. |
Return Value
| Name | Type | Description |
| binaryString | char * | The return value is the pointer to the input buffer. |
Additional Information
Library: Programmer's Toolbox
Include file: toolbox\toolbox.h
LabWindows/CVI compatibility: LabWindows/CVI 2009 and later