Hello,
As an exercise, I was wondering if
I can make something faster then :
char lTest ;
while ( lTest = Fonction ( ) )
{
.....
Quote:
}
to be faster, I am trying to avoid
the comparison in the while.
could this work ?
for ( ; ; )
{
char lTest = Fonction ( ) ;
switch ( lTest )
{
case 0 : continue;
}
break ;
Quote:
}
if it doesn't, could you tell me
how to make the switch in a such way
that it won't be just a comparison,
but something faster, as an indexed array ?
thanks
--
?g ?g?
http://www.*-*-*.com/
oim 3d - surface viewer
kryptyomic - encryption scheme