Files

22 lines
465 B
C
Raw Permalink Normal View History

2000-01-19 12:30:19 +00:00
/*
* BIRD Internet Routing Daemon -- CLI Commands Which Don't Fit Anywhere Else
*
* (c) 2000 Martin Mares <[email protected]>
*
* Can be freely distributed and used under the terms of the GNU GPL.
*/
2012-03-16 12:47:12 +01:00
struct sym_show_data {
int type; /* Symbols type to show */
struct symbol *sym;
};
struct f_inst;
2000-01-19 12:30:19 +00:00
void cmd_show_status(void);
2012-03-16 12:47:12 +01:00
void cmd_show_symbols(struct sym_show_data *sym);
2010-06-02 22:20:40 +02:00
void cmd_show_memory(void);
struct f_line;
void cmd_eval(const struct f_line *expr);