|
Posted by Rik on 05/16/06 13:58
Tim Van Wassenhove wrote:
> On 2006-05-15, Sebastian Araya <numisys@gmail.com> wrote:
>> Hello,
>>
>> I'm trying to write a rotational symbol in a CLI process, to report
>> activity to the user console, using printf( "%s\b", symbol ); but I
>> see the control character (\b) is been printed out instead of
>> backspacing.
>>
>> Is there any work around ?
What about:
printf( "%s%c", symbol,8);
%c:
c - the argument is treated as an integer, and presented as the character
with that ASCII value
Then again, I know nothing about CLI.
Grtz,
--
Rik Wasmus
Navigation:
[Reply to this message]
|