Subversion Repositories Kolibri OS

Compare Revisions

Regard whitespace Rev 3113 → Rev 3114

/programs/cmm/lib/strings.h
114,6 → 114,8
dword itoa( ESI)
{
unsigned char buffer[11];
$pusha
 
EDI = #buffer;
ECX = 10;
if (ESI < 0)
140,6 → 142,7
$mov al, '\0'
$stosb
$popa
return #buffer;
}