radare2/libr
pancake 4eeb7b1331 * Nicer inc method for visual key
* Clean warnings in r_search test programs
2011-01-27 01:12:02 +01:00
..
anal * Add missing cc.c 2011-01-26 22:01:38 +01:00
asm * Add missing dalvik.mk 2011-01-25 16:29:59 +01:00
bin * Fix previous commit (oops) 2011-01-23 18:44:38 +01:00
bp * Initial draft implementation of hardware breakpoints 2010-09-24 05:41:54 +02:00
cmd * Reduce r_macro recursivity limit to 1024 2011-01-27 00:05:49 +01:00
config * Fix build in iOS 4.1 (darwin-arm) 2010-11-08 19:30:25 +01:00
cons * Use adaptative blocksize as reported by rvalles 2011-01-23 17:48:31 +01:00
core * Nicer inc method for visual key 2011-01-27 01:12:02 +01:00
crypto * More fixes on mingw32 build 2010-07-24 12:44:19 +02:00
db * Cleanups in many TODO/READMEs 2010-08-26 12:18:30 +02:00
debug * Do not show registers if sync fails 2011-01-21 09:17:14 +01:00
diff * Huge refactoring of gdiff using Levenshtein distance and binmasks 2010-12-04 15:14:53 +01:00
flags * Use r_cons_free to free the cons buffer. 2010-12-26 23:38:53 +01:00
fs * Fix build for r_fs partmaps 2011-01-23 23:58:46 +01:00
hash * Fix some warnings thanks to toys/makewarn :D 2011-01-21 15:05:55 +01:00
include * Fix visual glitches when hexdump and code are mixed 2011-01-27 00:45:16 +01:00
io * Add support for ppc64 disassembler 2011-01-23 18:19:03 +01:00
lang * Fix segfault in r_list for null pointers 2010-12-17 10:58:38 +01:00
lib * Fix some overlapping strcpy's (thx @earada!) 2010-11-20 18:35:40 +01:00
line * Fix home/end keys in gnu screen (Tnxs rvalles) 2011-01-26 23:31:15 +01:00
meta * Merge r_meta inside r_anal 2010-08-20 00:36:22 +02:00
parse * Fix some warnings thanks to toys/makewarn :D 2011-01-21 15:05:55 +01:00
print * Fix r_cmd_macro '(' command now works 2011-01-26 23:40:16 +01:00
reg * Build w32 python bindings in build.sh 2010-10-19 22:17:58 +02:00
search * Nicer inc method for visual key 2011-01-27 01:12:02 +01:00
sign * Cleanups in many TODO/READMEs 2010-08-26 12:18:30 +02:00
socket * Add missing dalvik.mk 2011-01-25 16:29:59 +01:00
syscall * Added 'drd' command to show only modified regs 2010-09-24 16:45:56 +02:00
sysproxy * Make r_cons independent from r_line 2009-04-07 11:28:22 +00:00
th * Some cosmetic fixes in 'pd' 2010-12-13 00:49:33 +01:00
util * Fix w32 mmap implementation for r_mmap api 2011-01-07 00:42:27 +01:00
vm * Fix make -j for paralel builds 2010-10-29 03:10:10 +02:00
config.h.head * Add support to ARM for the debugger 2010-02-03 14:34:00 +01:00
config.h.tail * Initial import of the 'configure-plugins' script 2010-01-13 23:42:49 +01:00
config.mk.head * Initial import of the 'configure-plugins' script 2010-01-13 23:42:49 +01:00
config.mk.tail * Fix static and nonpic build with no gmp 2010-11-10 10:45:47 +01:00
depgraph.pl * Export 'srwx' perms of sections in rabin2 -rS 2010-04-08 12:29:47 +02:00
libr.pc.acr * Merge r_meta inside r_anal 2010-08-20 00:36:22 +02:00
Makefile * Chop last '/' in r_fs_mount 2011-01-23 21:54:18 +01:00
README * Clean TODO files 2010-05-21 01:46:26 +02:00
rules.mk * Fix build of r_fs 2011-01-26 22:10:35 +01:00
stripsyms.sh * Apply whats's patch fixing r_search for stripstr 2009-10-12 17:41:52 +02:00
symgraph.pl * Do not show color prompt in windows 2010-09-24 19:04:33 +02:00
waitfordeps.sh * Chop last '/' in r_fs_mount 2011-01-23 21:54:18 +01: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