]> cloudbase.mooo.com Git - z180-stamp.git/blob - avr/cmd_help.c
Call subcommands from main command processor
[z180-stamp.git] / avr / cmd_help.c
1 /*
2 * (C) Copyright 2014 Leo C. <erbl259-lmu@yahoo.de>
3 *
4 * Copyright 2000-2009
5 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
6 *
7 * SPDX-License-Identifier: GPL-2.0
8 */
9
10 #include "common.h"
11 #include "command.h"
12
13 command_ret_t do_help(cmd_tbl_t *cmdtp, uint_fast8_t flag, int argc, char * const argv[])
14 {
15 return _do_help(cmd_tbl, cmdtp, flag, argc, argv);
16 }