15 lines
453 B
C
15 lines
453 B
C
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
|
|
/***************************************************************************
|
|
* Copyright (C) 2010 by Øyvind Harboe *
|
|
***************************************************************************/
|
|
|
|
#ifndef OPENOCD_HELPER_UTIL_H
|
|
#define OPENOCD_HELPER_UTIL_H
|
|
|
|
struct command_context;
|
|
|
|
int util_init(struct command_context *cmd_ctx);
|
|
|
|
#endif /* OPENOCD_HELPER_UTIL_H */
|