Coding style fixes, mostly indentation and whitespace

This commit is contained in:
Markus Armbruster 2010-05-18 22:09:01 +02:00
parent 8a0d117d45
commit 373651359e
47 changed files with 131 additions and 130 deletions

View file

@ -84,7 +84,9 @@ mineq(char *a, char *b)
/* find common prefix: */
for (i = 0; a[i] != 0 && a[i] == b[i]; i++) ;
if (a[i] != 0) return ME_MISMATCH;
if (b[i] == 0 || b[i] == ' ') return ME_EXACT;
if (a[i] != 0)
return ME_MISMATCH;
if (b[i] == 0 || b[i] == ' ')
return ME_EXACT;
return ME_PARTIAL;
}