2022-06-26 18:26:22 -05:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
|
|
|
2009-11-21 21:27:20 -06:00
|
|
|
/***************************************************************************
|
|
|
|
* Copyright (C) 2009 Zachary T Welch <zw@superlucidity.net> *
|
|
|
|
***************************************************************************/
|
|
|
|
|
|
|
|
#ifndef OPENOCD_HELLO_H
|
|
|
|
#define OPENOCD_HELLO_H
|
|
|
|
|
|
|
|
struct command_registration;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Export the registration for the hello command group, so it can be
|
|
|
|
* embedded in example drivers.
|
|
|
|
*/
|
|
|
|
extern const struct command_registration hello_command_handlers[];
|
|
|
|
|
2015-09-21 14:07:46 -05:00
|
|
|
#endif /* OPENOCD_HELLO_H */
|