mirror of
https://github.com/radareorg/radare2.git
synced 2024-12-14 00:38:55 +00:00
9 lines
160 B
C
9 lines
160 B
C
#include <r_util.h>
|
|
|
|
int main() {
|
|
int out;
|
|
printf ("%s\n", r_sys_cmd_str("less","hello world\nhow are you\n", &out));
|
|
printf ("out=%d\n", out);
|
|
return 0;
|
|
}
|