0
0
mirror of https://gitlab.nic.cz/labs/bird.git synced 2024-11-08 12:18:42 +00:00
bird/nest/cbor_cmds.h

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);