pancake 7a4a3dbbfd Fix string parsing in rabin2 -z and more random fixes
- Random changes in libr/db/pair.. still buggy
 - remove debug printfs from calc.c
 - ?k command is now more usable. supports ``..` strings
 - fix segfault in r_cons (nullptr)
 - Add support for !! command to use r_cons
   > pd|!grep eax~ebx   # now this command works
2012-07-02 00:38:02 +02:00
..
2012-06-14 02:18:15 +02:00
2012-06-22 03:49:25 +02:00
2012-02-27 03:07:32 +01:00
2011-09-18 20:41:36 +02:00
2012-06-14 02:18:15 +02:00
2012-06-26 16:20:30 +02:00
2012-06-14 02:18:15 +02:00
2012-02-14 18:10:01 +01:00
2012-03-09 01:03:19 +01:00
2011-11-01 12:59:07 +01:00
2011-09-18 20:41:36 +02:00
2010-08-20 00:36:22 +02:00
2011-12-01 20:17:40 +01:00
2010-05-21 01:46:26 +02:00
2012-03-09 01:03:19 +01:00
2011-06-20 23:53:38 +02:00

                                 ___ ___
  =========================     |  _\_  \
  libr - codename 'radare2'     |   /  _/
  =========================     |_|__\__\


LibR is the refactoring of the old radare1 core in a set of libraries
defining the APIs of radare2.

The library 'libr' is composed by different modules, each one implementing
working modules of radare, so then, we get a complete set of libraries for
analyzing code, disassembling bytes, dumping bytes, plugin handling, etc..

The 'R' is for refactoring, reversing, radare, ...

Each module has its own test directory (t/) which contains simple applications
using the upper directory code and linking against the direct dependencies.

Each mode can own a plugin directory (p/) that contains extensions for the
parent library module (libr/asm/p/asm_x86).

There's also the possibility to define a list of static plugins to be built
inside the parent module. This way you can avoid some flexibility to ease
portability and build single binaries with some embedded features.

The library can be used from 'pkg-config', this way you can easy build an
application or plugin that links against libr or just few elements of it.

This enables a fine-grained test level for checking all functionalities in
one shot and give us the opportunity to write radare2 as test programs.

  --pancake