From 069634e498dd075f63c4c29753b179492392e9a2 Mon Sep 17 00:00:00 2001 From: jsorg71 Date: Fri, 29 Apr 2005 02:40:24 +0000 Subject: update some txt files --- prog_std.txt | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 prog_std.txt (limited to 'prog_std.txt') diff --git a/prog_std.txt b/prog_std.txt new file mode 100644 index 00000000..c358a470 --- /dev/null +++ b/prog_std.txt @@ -0,0 +1,40 @@ + +This is an atempt 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. +Some files break these rules, they will be updated eventually. + +try to make any file compile with c++ compilers + +always put one var on a line by itself + char* pvar; + char text[256]; +not + char *pvar, text[256]; + +function calls look like this + foo(a, b, c); +not + foo ( a, b, c ); + +while, if, and case statements look like + while (i != 0) +not + while(i != 0) + +for comments, always use /* */, not // + +defines should always be uppercase + +don't use tabs, use spaces + +no line should exceed 80 chars + +always use {} in if and while, even if its only one line + while (p != 0) + { + p = p->next; + } +not + while (p != 0) + p = p->next; -- cgit v1.2.1