From e285e950c94cea676039ae613506a395a964c0cb Mon Sep 17 00:00:00 2001 From: Tim Gerundt Date: Wed, 5 Jan 2011 03:57:16 +0100 Subject: [PATCH] Web: Add a first version of a website --- htdocs/index.php | 134 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 134 insertions(+) create mode 100644 htdocs/index.php diff --git a/htdocs/index.php b/htdocs/index.php new file mode 100644 index 00000000000..82e9121098a --- /dev/null +++ b/htdocs/index.php @@ -0,0 +1,134 @@ + + + + + Cppcheck - A tool for static C/C++ code analysis + + + + +
+
+ +
+
+
+
+

Cppcheck is an analysis tool for C/C++ code. Unlike C/C++ +compilers and many other analysis tools, it don't detect syntax errors. Cppcheck +only detects the types of bugs that the compilers normally fail to detect. The +goal is no false positives.

+ +

Download

+

You can download the standalone tool from our +project page or try it +as plugin for your favorite IDE:

+ +

No plugin exists for Visual Studio, but it's possible to add +Cppcheck as an external tool.

+ +

Features

+
    +
  • Out of bounds checking
  • +
  • Check the code for each class
  • +
  • Checking exception safety
  • +
  • Memory leaks checking
  • +
  • Warn if obsolete functions are used
  • +
  • Check for invalid usage of STL
  • +
  • Check for uninitialized variables and unused functions
  • +
+ +

Support

+
    +
  • Use Trac to report + bugs and feature requests
  • +
  • Ask questions in the forum + or at the IRC channel #cppcheck
  • +
  • For more details look at the wiki
  • +
+
+
+ + \ No newline at end of file