Home | Info | Community | Development | myReactOS | Contact Us
[static]
Definition at line 130 of file tscroll.cpp.
Referenced by TScroller::ScrollBack().
{ for(int j = len - 1; j >= 0; j--) { str[j] = x % 16; if(str[j] > 9) str[j] += 'A' - 10; else str[j] += '0'; x /= 16; } }