The following conventions should be observed when formatting Cicode functions:
i= i*10+c-'0'; // WRONG
i = i * 10 + c - '0'; // RIGHT
a = b * ( c - d ); // WRONG
a = b * (c - d); // RIGHT
DisplayText( "hello" ); // WRONG
DisplayText("hello"); // RIGHT
DevSeek(hDev ,Offset); // WRONG
DevSeek(hDev, Offset); // RIGHT
See Also
Using Cicode Programming Standards