/* * cmd_defs.h * vim: expandtab:ts=4:sts=4:sw=4 * * Copyright (C) 2012 - 2019 James Booth * Copyright (C) 2019 - 2026 Michael Vetter * * SPDX-License-Identifier: GPL-3.0-or-later WITH OpenSSL-exception */ #ifndef COMMAND_CMD_DEFS_H #define COMMAND_CMD_DEFS_H #include #include "ui/ui.h" void cmd_init(void); Command* cmd_get(const char* const command); GList* cmd_get_ordered(const char* const tag); gboolean cmd_valid_tag(const char* const str); void command_docgen(void); void command_mangen(void); GList* cmd_search_index_all(char* term); GList* cmd_search_index_any(char* term); #endif