1
0
mirror of https://github.com/rene-dev/stmbl.git synced 2024-12-24 09:32:10 +00:00
stmbl/shared/commands.h
2017-07-12 22:12:04 +02:00

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;