summaryrefslogtreecommitdiff
path: root/avr/cmd_help.c
blob: 4a52f5ebea0ae20962cb6b1a7e356833a783a8dd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/*
 * (C) Copyright 2014 Leo C. <erbl259-lmu@yahoo.de>
 *
 * Copyright 2000-2009
 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
 *
 * SPDX-License-Identifier:	GPL-2.0
 */

#include "common.h"
#include "command.h"

command_ret_t do_help(cmd_tbl_t *cmdtp, uint_fast8_t flag, int argc, char * const argv[])
{
	return _do_help(cmd_tbl, cmdtp, flag, argc, argv);
}