diff options
Diffstat (limited to 'prog_std.txt')
-rw-r--r-- | prog_std.txt | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/prog_std.txt b/prog_std.txt index 671172f2..761006a5 100644 --- a/prog_std.txt +++ b/prog_std.txt @@ -1,7 +1,8 @@ This is an attempt to explain my odd programming standard used for this project. -Not to defend any of these but its my default standard and make it easy -for me to read. +Not to defend any of these but it's my default standard and it makes it easy +for me to read code. + Some files break these rules, they will be updated eventually. try to make any file compile with c++ compilers @@ -30,7 +31,7 @@ don't use tabs, use spaces no line should exceed 80 chars -always use {} in if and while, even if its only one line +always use {} in if and while, even if it's only one line while (p != 0) { p = p->next; |