mirror of
https://gitlab.nic.cz/labs/bird.git
synced 2024-11-08 20:28:43 +00:00
19 lines
391 B
C
19 lines
391 B
C
|
|
|
|
struct argument {
|
|
char *arg;
|
|
uint len;
|
|
};
|
|
|
|
struct arg_list {
|
|
struct argument *args;
|
|
int capacity;
|
|
int pt;
|
|
struct linpool *lp;
|
|
};
|
|
|
|
uint cmd_show_memory_cbor(byte *tbuf, uint capacity, struct linpool *lp);
|
|
uint cmd_show_status_cbor(byte *tbuf, uint capacity, struct linpool *lp);
|
|
uint cmd_show_symbols_cbor(byte *tbuf, uint capacity, struct arg_list *args, struct linpool *lp);
|
|
|