radare2/libr
pancake/fluendo dd2501b188 * Fixed ralist and rarray interfaces and macros
- No clean free or checks done yet, but they are
    now both working
* Use classes with no ref/unref to make vala code nicer
* Fix build of some test programs (fixed -L)
* Remove dummy Foo from r_util (moved to t/list.vapi)
2009-09-22 19:23:49 +02:00
..
anal * Some more random refactoring on r_debug and r_reg 2009-09-15 00:06:37 +02:00
asm * Some malloc checks in _new() class constructors 2009-09-09 00:35:00 +00:00
bin * Fix build of r_debug 2009-09-22 13:27:33 +02:00
bininfo * Fix build of r_debug 2009-09-22 13:27:33 +02:00
bp * Rename some handle_set into _use() new syntax 2009-09-20 02:16:14 +02:00
cmd * Change the name of some types 2009-07-08 13:49:55 +02:00
config * Change the name of some types 2009-07-08 13:49:55 +02:00
cons * Fix warnings in cons/input 2009-07-16 09:44:56 +00:00
core * Rename some handle_set into _use() new syntax 2009-09-20 02:16:14 +02:00
crypto * Added doc/oo: describes the object dis-orientation of libr 2009-09-15 13:24:28 +02:00
db * Fix build of r_debug 2009-09-22 13:27:33 +02:00
debug * Fix build of r_debug 2009-09-22 13:27:33 +02:00
diff * Change the name of some types 2009-07-08 13:49:55 +02:00
flags * Change the name of some types 2009-07-08 13:49:55 +02:00
hash * Some more random refactoring on r_debug and r_reg 2009-09-15 00:06:37 +02:00
include * Fixed ralist and rarray interfaces and macros 2009-09-22 19:23:49 +02:00
io * Rename some handle_set into _use() new syntax 2009-09-20 02:16:14 +02:00
lang * Rename some handle_set into _use() new syntax 2009-09-20 02:16:14 +02:00
lib * Rename some handle_set into _use() new syntax 2009-09-20 02:16:14 +02:00
line * Return "" instead of NULL when possible in core input 2009-08-22 05:29:58 +00:00
macro * Rename some handle_set into _use() new syntax 2009-09-20 02:16:14 +02:00
meta * Change the name of some types 2009-07-08 13:49:55 +02:00
parse * Initial working implementation of r_parse_assemble() 2009-08-14 02:19:54 +00:00
pkgconfig * Initial vapi for r_db 2009-07-21 22:59:34 +00:00
print * Rename some handle_set into _use() new syntax 2009-09-20 02:16:14 +02:00
range * Change the name of some types 2009-07-08 13:49:55 +02:00
reg * Added 'reg' into the default module list 2009-09-22 15:02:50 +02:00
search * Do not pass CFLAGS when linking asm/t/fastcall 2009-09-08 01:08:46 +00:00
sign * Some malloc checks in _new() class constructors 2009-09-09 00:35:00 +00:00
socket * Add r_socket_to_string() function in r_socket API 2009-07-24 13:38:53 +00:00
syscall * Initial implementation of r_asm_fastcall() 2009-08-14 00:37:18 +00:00
sysproxy * Make r_cons independent from r_line 2009-04-07 11:28:22 +00:00
th * Initial import of r_th. The simplified and portable threading library 2009-07-21 11:13:24 +00:00
trace * Some code cleanup and add some more checks on r_bin (-15LOC) 2009-07-16 14:17:32 +02:00
util * Fix build of r_debug 2009-09-22 13:27:33 +02:00
vapi * Fixed ralist and rarray interfaces and macros 2009-09-22 19:23:49 +02:00
var * Added 'mk/stat' tools 2009-09-17 11:48:36 +02:00
vm * Some more random refactoring on r_debug and r_reg 2009-09-15 00:06:37 +02:00
config.h * Initial implementation of the r_crypto API 2009-09-15 01:45:58 +02:00
config.mk * Initial implementation of the r_crypto API 2009-09-15 01:45:58 +02:00
depgraph.pl * Single valadoc by default 2009-09-21 15:39:10 +02:00
libr.pc.acr * Added r_reg pkgconfig file 2009-09-20 00:28:06 +02:00
Makefile * Added 'reg' into the default module list 2009-09-22 15:02:50 +02:00
README * Initial working implementation of r_parse_assemble() 2009-08-14 02:19:54 +00:00
rules.mk * Initial import of r_th. The simplified and portable threading library 2009-07-21 11:13:24 +00:00
stripsyms.sh * Remove documentation in the uninstall target 2009-04-03 11:11:17 +00:00
TODO * Some malloc checks in _new() class constructors 2009-09-09 00:35:00 +00: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