mirror of
https://github.com/rene-dev/stmbl.git
synced 2024-12-19 07:02:13 +00:00
13 lines
168 B
C
13 lines
168 B
C
#pragma once
|
|
#include <stdint.h>
|
|
|
|
#define COMMAND(c, p, d)
|
|
|
|
uint32_t call_cmd(char *s);
|
|
|
|
typedef struct {
|
|
char name[32];
|
|
char *doc;
|
|
void (*ptr)(char *);
|
|
} cmd_t;
|