Subversion Repositories Kolibri OS

Compare Revisions

Regard whitespace Rev 7746 → Rev 7745

/programs/cmm/lib/debug.h
42,13 → 42,18
debugch(10);
}
 
inline void debugi(dword d_int)
{
char tmpch[12];
itoa_(#tmpch, d_int);
debugln(#tmpch);
}
 
:void debugval(dword text,number)
{
char tmpch[12];
debug(text);
debug(": ");
itoa_(#tmpch, number);
debugln(#tmpch);
debugi(number);
}
 
#endif