Dissy is a graphical frontend to the objdump disassembler. Dissy can be used
for debugging and browsing compiler-generated code.
Parser combinators are just higher-order functions that take parsers as
their arguments and return them as result values. Parser combinators are:
* First-class values
* Extremely composable
* Tend to make the code quite compact
* Resemble the readable notation of xBNF grammars
Parsers made with funcparserlib are pure-Python LL(*) parsers. It means that
it's very easy to write them without thinking about look-aheads and all that
hardcore parsing stuff. But the recursive descent parsing is a rather slow
method compared to LL(k) or LR(k) algorithms.
So the primary domain for funcparserlib is parsing little languages or external
DSLs (domain specific languages).
The library itself is very small. Its source code is only 0.5 KLOC, with lots
of comments included. It features the longest parsed prefix error reporting,
as well as a tiny lexer generator for token position tracking.
This module provides basic functions for parsing mime-type names and matching
them against a list of media-ranges.
CUnit is a system for writing, administering, and running
unit tests in C. It is built as a static library which is
linked with the user's testing code.
WSGI application for a simple xmlrpc method dispatching.
The goal of the ccons project is to create an interactive console
for the C programming language, similar to "python" and "irb" for
Python and Ruby respectively.
QDevelop is a development environment entirely dedicated to Qt4.
QDevelop is not a Kdevelop like or reduced. It's an independent IDE dedicated
to Qt and is totally independent of KDevelop. Less complete, but faster,
light and especially multi-platforms. QDevelop and KDevelop have different
code sources.
This is automated checker to make sure a C++ file follows Google's C++ style
guide (http://google-styleguide.googlecode.com/svn/trunk/cppguide.xml). As it
heavily relies on regular expressions, cpplint.py won't catch all violations of
the style guide and will very occasionally report a false positive. There is a
list of things we currently don't handle very well at the top of cpplint.py,
and we welcome patches to improve it.
The linting tool takes a list of files as input. For full usage instructions,
please see the output of:
./cpplint.py --help
Unit tests are provided in cpplint_unittest.py. This file can safely be ignored
by end users who have downloaded this package and only want to run the lint
tool.
spdict is a library of dictionary algorithms written in C++.
Initial release with support for sorted array, binary search tree,
red-black tree, skip list and balanced tree algorithms.
The StormLib library is a pack of modules, written in C++,
which are able to read and also to write files from/to the MPQ archives.