radare2/libr
pancake 3be83621cb * Initial implementation of -p flag to handle projects
- ~/.radare2/rdb
  - Added r_sys_mkdir()
* Remove the command length limitation in r_core_cmd_file
2010-03-31 00:03:59 +02:00
..
anal * Some fixes in code analysis 2010-03-26 17:01:25 +01:00
asm * Remove m68k disassembler because BSD4 is GPL incompatible 2010-03-26 17:19:24 +01:00
bin * Added support for cached IO 2010-03-30 17:37:15 +02:00
bp * Fix w32 build 2010-03-25 10:18:59 +01:00
cmd * Add some missing methods in some vapis for valaswig 2010-03-18 22:22:21 +01:00
config * Fix 'const char*' issue in valaswig bindings 2010-02-12 00:43:11 +01:00
cons * Initial implementation of -p flag to handle projects 2010-03-31 00:03:59 +02:00
core * Initial implementation of -p flag to handle projects 2010-03-31 00:03:59 +02:00
crypto * Rename MALLOC_STRUCT into R_NEW and deprecate it. 2010-03-12 13:35:10 +01:00
db * Rename MALLOC_STRUCT into R_NEW and deprecate it. 2010-03-12 13:35:10 +01:00
debug * Some sorting of TODOs 2010-03-25 21:14:28 +01:00
diff * Added linux-arm syscalls 2010-03-08 12:45:22 +01:00
flags * rabin2 2010-03-19 02:49:30 +01:00
hash * Fix build 2010-03-25 23:16:29 +01:00
include * Initial implementation of -p flag to handle projects 2010-03-31 00:03:59 +02:00
io * Implement 'wc' command to list, commit and reset cache changes 2010-03-30 23:12:19 +02:00
lang * Fix w32 build 2010-03-25 10:18:59 +01:00
lib * Fix w32 build 2010-03-25 10:18:59 +01:00
line * Some fixes in code analysis 2010-03-26 17:01:25 +01:00
meta * Fix w32 build 2010-03-25 10:18:59 +01:00
parse * Fix w32 build 2010-03-25 10:18:59 +01:00
pkgconfig * Build all pkgconfig files (fixes valaswig stuff) 2010-01-25 11:54:25 +01:00
print * Rename MALLOC_STRUCT into R_NEW and deprecate it. 2010-03-12 13:35:10 +01:00
reg * Fix w32 build 2010-03-25 10:18:59 +01:00
search * Remove deprecated r_meta.pc 2010-03-15 10:46:41 +01:00
sign * Apply some fixes of packaging bugs notified by debian 2010-03-15 17:15:48 +01:00
socket * Added support for cached IO 2010-03-30 17:37:15 +02:00
syscall * Added linux-arm syscalls 2010-03-08 12:45:22 +01:00
sysproxy * Make r_cons independent from r_line 2009-04-07 11:28:22 +00:00
th * Fix w32 build 2010-03-25 10:18:59 +01:00
util * Initial implementation of -p flag to handle projects 2010-03-31 00:03:59 +02:00
vm * Implement 'wc' command to list, commit and reset cache changes 2010-03-30 23:12:19 +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 * Do not link libr2.dylib in OSX 2010-02-21 21:34:10 +01: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 * Remove m68k disassembler because BSD4 is GPL incompatible 2010-03-26 17:19:24 +01:00
README * Initial working implementation of r_parse_assemble() 2009-08-14 02:19:54 +00:00
rpathstrip.sh * Some fixes in code analysis 2010-03-26 17:01:25 +01:00
rules.mk * Fix w32 build 2010-03-25 10:18:59 +01:00
stripsyms.sh * Apply whats's patch fixing r_search for stripstr 2009-10-12 17:41:52 +02:00
TODO * Properly manage Color_RESET from r_core 2010-02-28 23:57:55 +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