Finished off most of the issues with freeglut_structure.c, from a stylistic
authorRichard Rauch <rkr@olib.org>
Thu, 30 Oct 2003 04:43:08 +0000 (04:43 +0000)
committerRichard Rauch <rkr@olib.org>
Thu, 30 Oct 2003 04:43:08 +0000 (04:43 +0000)
commit8997e09b1ce75c5d05405ed0c51e32436cac45ed
treea591de73dcd42203519c0ca6ccc45b15a7151269
parent453e9bfabcaa1885f602129d9f775e23b6ef9cd3
Finished off most of the issues with freeglut_structure.c, from a stylistic
point of view (at least, insofar as: The original file's code was INCON-
SISTANT.  I did not remove the "!= NULL" stuff, did not address the
shortest-branch-first issue for if-else statements, and left some rather
ugly "if (x) {... return y} /* else do this */ return NULL;" garbage.
This should, I think, be re-written as "if (x) return y; else return NULL;"
or even better, "ret = NULL; if (x) ret = y; return ret;"

In short, the code still has some issues, but I think that it's a bit
better.

(Oh, I also got rid of oustanding TABs.)

git-svn-id: svn+ssh://svn.code.sf.net/p/freeglut/code/trunk/freeglut/freeglut@271 7f0cb862-5218-0410-a997-914c9d46530a
src/freeglut_structure.c