Definition:
#include <aPrint.tea>
| void aPrint_CharHex( | char c); |
Parameters:
| c | - | The character to format and display as a hexadecimal number. |
Return Value:
This routine does not return a value.
Description:
This routine formats the character variable as a 2-digit hexadecimal number and displays the result on the Console Output Area. The TEA virtual machine places each character of the text representation of the hexadecimal value in a packet with a leading cmdVM_MSG byte (0x84) and process ID byte and sends it across the link for display.
Example:
aPrint_CharHex(10);
This would add the characters "0A" to the current output line for the Console.
aPrint_CharHex(0x80);
This would add the characters "80" to the current output line for the Console.
Related:
version: 1.0, build 100222
© Copyright 1994-2010 Acroname, Inc., Boulder, Colorado. All rights reserved.