Files
2023-12-01 14:43:24 +01:00

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