diff options
author | Erik Falor <ewfalor@gmail.com> | 2014-05-18 20:25:02 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2014-05-18 20:25:02 +0700 |
commit | 118a5824e405ee4e5a4ce7ed1ecfa180c9e64c72 (patch) | |
tree | 305d550d4e965b95c5223780d5c82cadea0a5730 /development/complexity/README | |
parent | 1a035d51e978c1648a2d4fb9bc3b70831542f108 (diff) |
development/complexity: Added (Measure complexity of C source).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'development/complexity/README')
-rw-r--r-- | development/complexity/README | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/development/complexity/README b/development/complexity/README new file mode 100644 index 000000000000..8bc8a7b26195 --- /dev/null +++ b/development/complexity/README @@ -0,0 +1,11 @@ +Measure complexity of C source + +Complexity scans your C source code to help you: + +* Locate suspicious areas in unfamiliar code +* Get an idea of how much effort may be required to understand that code +* Get an idea of the effort required to test a code base +* Provide a reminder to yourself. You may see what you've written as + obvious, but others may not. It is useful to have a hint about what code may + seem harder to understand by others, and then decide if some rework may be in + order. |