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