Add note to HACKING about operator spacing

This commit is contained in:
Dan McGee 2011-12-21 17:00:28 -06:00
parent ee96900605
commit 6c1426842a
1 changed files with 11 additions and 0 deletions

11
HACKING
View File

@ -90,6 +90,17 @@ alpm_list_t *alpm_list_add(alpm_list_t *list, void *data)
NOT
if(!strcmp(a, b))
8. Use spaces around almost all arithmetic, comparison and assignment
operators and after all ',;:' separators.
foobar[2 * size + 1] = function(a, 6);
NOT
foobar[2*size+1]=function(a,6);
for(a = 0; a < n && n > 0; a++,n--) {}
NOT
for(a=0;a<n&&n>0;a++,n--) {}
Other Concerns
--------------