mirror of
https://github.com/radareorg/radare2.git
synced 2025-01-20 20:55:32 +00:00
a6f48ded22
- CC-* removes all comments - Many bugfixes in comment handling code - comments are now turqoise and have no ';' * Added r_cons_column -- add support for columned text - Added r_cons_justify to align text to right - Added r_cons_memset as a helper - Vv menu displays options and list in left and disasm at right - Allow to rename functions - Added ':' prompt in Vv menu * Initial implementation for s/ command (search+seek) * Use core->num->value for 'p' command (number of bytes used) * Implement /i to search ignoring case * Help for e scr.fkey=? * Added r_core_editor() helper * Fix use-after-free in r_anal/meta
13 lines
189 B
C
13 lines
189 B
C
#include <r_util.h>
|
|
|
|
#define F "/etc/services"
|
|
|
|
int main () {
|
|
int len;
|
|
char *out= r_file_slurp (F, &len);
|
|
r_file_dump ("a", out, len);
|
|
system ("md5 "F);
|
|
system ("md5 a");
|
|
return 0;
|
|
}
|