radare2/libr
2010-04-15 00:30:07 +02:00
..
anal * Initial refactoring work for 'pd' and 'pD' commands 2010-04-14 22:28:45 +02:00
asm * Mental note: %lld/%llx does not exist on windows 2010-04-14 13:02:23 +02:00
bin * merge 2010-04-14 14:11:38 +02:00
bp * Mental note: %lld/%llx does not exist on windows 2010-04-14 13:02:23 +02:00
cmd * Do not ask to save project when project file is "" 2010-04-07 11:07:59 +02:00
config * Mental note: %lld/%llx does not exist on windows 2010-04-14 13:02:23 +02:00
cons * Fix one-byte overflow in r_cons_memcat 2010-04-09 13:24:40 +02:00
core * Fix segfault in 'wa' (thanks ash for reporting!) 2010-04-15 00:29:42 +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 * Mental note: %lld/%llx does not exist on windows 2010-04-14 13:02:23 +02:00
diff * Mental note: %lld/%llx does not exist on windows 2010-04-14 13:02:23 +02:00
flags * Mental note: %lld/%llx does not exist on windows 2010-04-14 13:02:23 +02:00
hash * Initial refactoring work for 'pd' and 'pD' commands 2010-04-14 22:28:45 +02:00
include * Initial work on w32dbg IO, fork and attach still incomplete 2010-04-14 23:56:27 +02:00
io * Initial work on w32dbg IO, fork and attach still incomplete 2010-04-14 23:56:27 +02:00
lang * Mental note: %lld/%llx does not exist on windows 2010-04-14 13:02:23 +02:00
lib * Fix compilation under mingw32 2010-04-12 02:22:52 +02:00
line * Do not ask to save project when project file is "" 2010-04-07 11:07:59 +02:00
meta * Mental note: %lld/%llx does not exist on windows 2010-04-14 13:02:23 +02: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 * Initial refactoring work for 'pd' and 'pD' commands 2010-04-14 22:28:45 +02:00
reg * Mental note: %lld/%llx does not exist on windows 2010-04-14 13:02:23 +02:00
search * Mental note: %lld/%llx does not exist on windows 2010-04-14 13:02:23 +02:00
sign * Fix compilation under mingw32 2010-04-12 02:22:52 +02:00
socket * strnlen helper in format/elf/elf.c is now static inline 2010-04-14 13:28:56 +02:00
syscall * Fix compilation under mingw32 2010-04-12 02:22:52 +02: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 work on w32dbg IO, fork and attach still incomplete 2010-04-14 23:56:27 +02:00
vm * Mental note: %lld/%llx does not exist on windows 2010-04-14 13:02:23 +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 * Export 'srwx' perms of sections in rabin2 -rS 2010-04-08 12:29:47 +02:00
libr.pc.acr * Added r_reg pkgconfig file 2009-09-20 00:28:06 +02:00
Makefile * Initial refactoring work for 'pd' and 'pD' commands 2010-04-14 22:28:45 +02: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 * Initial split of r_search_keyword 2010-04-05 22:49:22 +02:00
stripsyms.sh * Apply whats's patch fixing r_search for stripstr 2009-10-12 17:41:52 +02:00
TODO * Added doodle results in main TODO file 2010-04-09 17:13:35 +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