* Move r_core_cmd_help features to grep.c:r_cons_cmd_help to avoid dependency on r_core from r_cons * Beautify r_cons_cmd_help & fix wp? & p? * Fix #8164 recursive help (and add partial support for ??* ???*) & NULL terminate fz? Sl? Sr? The support for ???* is partial because the current ad-hoc command parser is obscure and hard to extend.
8 lines
269 B
C
8 lines
269 B
C
/* radare - LGPLv3 - Copyright 2014 Jody Frankowski */
|
|
/* This file holds help messages relative functions */
|
|
|
|
#include <r_core.h>
|
|
|
|
R_API void r_core_cmd_help(const RCore *core, const char *help[]) {
|
|
r_cons_cmd_help (help, core->print->flags & R_PRINT_FLAGS_COLOR);
|
|
}
|