Name: Anonymous 2010-07-28 5:39
Scalability:x/10;
Performance:x/10;
Ease of use:x/10;
verbosity:x/10;
Performance:x/10;
Ease of use:x/10;
verbosity:x/10;
void trimCodans(void)
{
int found = 0;
for (;;)
{
int i;
for (i = 0; i < codans.rows; i++)
{
if (codans.table[(i * codans.cols) + codans.emptyLeft] != CODAN_EMPTY)
{
found = 1;
break;
}
}
if (found) break;
else codans.emptyLeft++;
}
//TODO: check right
}