mirror of
https://github.com/rene-dev/stmbl.git
synced 2024-12-24 09:32:10 +00:00
13 lines
166 B
C
13 lines
166 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;
|